Re: [HACKERS] Missing error condition in CREATE TABLE

2003-10-06 Thread Tom Lane
Christopher Kings-Lynne <[EMAIL PROTECTED]> writes: > 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... I'm not convinced. You might as w

[HACKERS] Missing error condition in CREATE TABLE

2003-10-06 Thread Christopher Kings-Lynne
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) with