warning missing

From: Gaetano Mendola <mendola(at)bigfoot(dot)com>
To: "pgsql-hackers(at)postgresql(dot)org" <pgsql-hackers(at)postgresql(dot)org>
Subject: warning missing
Date: 2004-06-22 22:37:43
Message-ID: 40D8B4B7.3020309@bigfoot.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
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

Responses

Browse pgsql-hackers by date

  From Date Subject
Next Message Laurent Ballester 2004-06-22 22:41:20 initdb regression ?
Previous Message Tom Lane 2004-06-22 13:46:44 Re: Casts question