warning missing

Поиск
Список
Период
Сортировка
От Gaetano Mendola
Тема warning missing
Дата
Msg-id 40D8B4B7.3020309@bigfoot.com
обсуждение исходный текст
Ответы Re: warning missing  (Tom Lane <tgl@sss.pgh.pa.us>)
Список 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 по дате отправления:

Предыдущее
От: Tom Lane
Дата:
Сообщение: Re: Casts question
Следующее
От: "Laurent Ballester"
Дата:
Сообщение: initdb regression ?