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







---------------------------(end of broadcast)---------------------------
TIP 8: explain analyze is your friend

Reply via email to