Missing error condition in CREATE TABLE

Поиск
Список
Период
Сортировка
От Christopher Kings-Lynne
Тема Missing error condition in CREATE TABLE
Дата
Msg-id 3F81161C.6080603@familyhealth.com.au
обсуждение исходный текст
Ответы Re: Missing error condition in CREATE TABLE  (Tom Lane <tgl@sss.pgh.pa.us>)
Список pgsql-hackers
Hi,

Shouldn't this be a WARNING or an ERROR?  Trying to create a table 
WITHOUT OIDS that inherits from a table WITH OIDS silently ignores the 
WITHOUT OIDS specification.  It think that should be a warning...

test=# create table a (a int4);
CREATE TABLE
test=# create table c () inherits (a) without oids;
CREATE TABLE
test=# select relhasoids from pg_class where relname='c'; relhasoids
------------ t
(1 row)


Chris




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

Предыдущее
От: Christopher Kings-Lynne
Дата:
Сообщение: Re: extra_float_digits question
Следующее
От: Tom Lane
Дата:
Сообщение: Re: [COMMITTERS] pgsql-server/src/backend/catalog aclchk.c