warning missing - Mailing list pgsql-hackers

From Gaetano Mendola
Subject warning missing
Date
Msg-id 40D8B4B7.3020309@bigfoot.com
Whole thread Raw
Responses Re: warning missing
List 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








pgsql-hackers by date:

Previous
From: Tom Lane
Date:
Subject: Re: Casts question
Next
From: "Laurent Ballester"
Date:
Subject: initdb regression ?