Re: [HACKERS] Serial and NULL values

Поиск
Список
Период
Сортировка
От Tom Lane
Тема Re: [HACKERS] Serial and NULL values
Дата
Msg-id 3695.941240684@sss.pgh.pa.us
обсуждение исходный текст
Ответ на Serial and NULL values  (Bruce Momjian <maillist@candle.pha.pa.us>)
Ответы Re: [HACKERS] Serial and NULL values
Список pgsql-hackers
Bruce Momjian <maillist@candle.pha.pa.us> writes:
>     test=> create table test (x int, y serial);
>     CREATE
>     test=> insert into test  values (100, null);
>     ERROR:  ExecAppend: Fail to add null value in not null attribute y

gram.y thinks SERIAL is defined to mean NOT NULL:
           | ColId SERIAL ColPrimaryKey               {                   ColumnDef *n = makeNode(ColumnDef);
       n->colname = $1;                   n->typename = makeNode(TypeName);                   n->typename->name =
xlateSqlType("integer");                  n->raw_default = NULL;                   n->cooked_default = NULL;
 
=================>  n->is_not_null = TRUE;                   n->is_sequence = TRUE;                   n->constraints =
$3;
                   $$ = (Node *)n;               }

Offhand I don't see any fundamental reason why serial columns should
be restricted to be nonnull, but evidently someone did at some point.
        regards, tom lane


В списке pgsql-hackers по дате отправления:

Предыдущее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] MATLAB PostgreSQL interface
Следующее
От: Bruce Momjian
Дата:
Сообщение: Re: [HACKERS] Serial and NULL values