ALTER TABLE can NOT use set (OIDS=true)

Поиск
Список
Период
Сортировка
От 自己
Тема ALTER TABLE can NOT use set (OIDS=true)
Дата
Msg-id cbbab09.6f14.154c7c5069d.Coremail.zoulx1982@163.com
обсуждение исходный текст
Ответ на Re: BUG #14148: postgres does not support GST timezone  (Ziyun Audrey Wang <ziyun.wang@ericsson.com>)
Ответы Re: ALTER TABLE can NOT use set (OIDS=true)  ("David G. Johnston" <david.g.johnston@gmail.com>)
Список pgsql-bugs
Hi,
    I create a table, and then i want to add oid column, but only can use "set with oids", not use "set (oids = true)"
    while create table support both. Is this a problem?

    Here is is my testcase, thank you.
postgres=# create table x(a int) with(oids = false);
CREATE TABLE
postgres=# alter table x set(fillfactor = 90);
ALTER TABLE
postgres=# alter table x set (oids = true);
ERROR:  unrecognized parameter "oids"
postgres=#
postgres=# alter table x set with oids;
ALTER TABLE
postgres=#


 

В списке pgsql-bugs по дате отправления:

Предыдущее
От: Ziyun Audrey Wang
Дата:
Сообщение: Re: BUG #14148: postgres does not support GST timezone
Следующее
От: turon.david@seznam.cz
Дата:
Сообщение: BUG #14149: when use LATERAL functions with IMMUTABLE called multiple times