warning missing

Gaetano Mendola <mendola@bigfoot.com>

From: Gaetano Mendola <mendola@bigfoot.com>
To: "pgsql-hackers@postgresql.org" <pgsql-hackers@postgresql.org>
Date: 2004-06-22T22:37:43Z
Lists: pgsql-hackers
I think a warning is missing if I create a table without OIDS that
inherits from a table with oids:

kalman=# create table test ( a integer );
CREATE TABLE
kalman=# create table test_2 ( b integer ) inherits (test) without oids;
CREATE TABLE
kalman=# select oid from test_2;
  oid
-----
(0 rows)


don't you think a warning shall to be raised here ?


Regards
Gaetano Mendola