attribute of type 'serial not null'

Поиск
Список
Период
Сортировка
От Christof Petig
Тема attribute of type 'serial not null'
Дата
Msg-id 37EF7808.DB7E0186@wtal.de
обсуждение исходный текст
Список pgsql-bugs
Hi,

one might argue whether it is a bug that
  create table t ( k serial not null ) ;
is invalid while
  create table t ( k serial ) ;
is ok. But since this should not be illegal (a serial is not null by
definition) and it kills iX's SQL benchmark (iX is a german computer
magazine) I vote for ignoring the trailing not null.

(Of course you could use 'int4 not null' as your key's type, but you'd
lose 'serial's built in index facilities). No show stopper, just
annoying (since other databases seem to allow it).

Christof
PS: I would post test results (but the database crashed after inserting
130441 [out of 1 million] tuples). Still looking closer at it (had been
last week's CVS version).
PPS: The benchmark also creates an unique key on the 'serial' column, so
int4 would be legal as well.



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

Предыдущее
От: "Tim Newell"
Дата:
Сообщение: Bug in index creation
Следующее
От: mschout@gkg.net
Дата:
Сообщение: INDEX broken on NUMERIC type.