ALTER TABLE can NOT use set (OIDS=true) - Mailing list pgsql-bugs

From 自己
Subject ALTER TABLE can NOT use set (OIDS=true)
Date
Msg-id cbbab09.6f14.154c7c5069d.Coremail.zoulx1982@163.com
Whole thread Raw
In response to Re: BUG #14148: postgres does not support GST timezone  (Ziyun Audrey Wang <ziyun.wang@ericsson.com>)
Responses Re: ALTER TABLE can NOT use set (OIDS=true)
List 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 by date:

Previous
From: Ziyun Audrey Wang
Date:
Subject: Re: BUG #14148: postgres does not support GST timezone
Next
From: turon.david@seznam.cz
Date:
Subject: BUG #14149: when use LATERAL functions with IMMUTABLE called multiple times