Re: syntax error with v12 - Mailing list pgsql-general

From Adrian Klaver
Subject Re: syntax error with v12
Date
Msg-id 44caf85c-3aca-2d4c-68d0-2156efa5121b@aklaver.com
Whole thread Raw
In response to syntax error with v12  (Ivan Kabaivanov <ivan.kabaivanov@gmail.com>)
List pgsql-general
On 10/10/19 5:51 AM, Ivan Kabaivanov wrote:
> Hi, everyone.
> 
> First time poster here.
> 
> This snippet (from ovirt-engine-dwh) used to work fine with 
> postgresql-11.x, but emits a syntax error with postgresql-12.0:
> 
> CREATETABLEhistory_configuration
> (
> var_name VARCHAR(50) NOTNULL,
> var_value VARCHAR(255),
> var_datetime TIMESTAMPWITHTIME ZONE,
> CONSTRAINT PK_history_configuration PRIMARY KEY(var_name)
> ) WITHOIDS;
> 
> psql:/usr/share/ovirt-engine-dwh/dbscripts/create_tables.sql:7: ERROR: 
>   syntax error at or near "OIDS"
> LINE 7: ) WITH OIDS;
> 
> Is what I provided sufficient to troubleshoot the issue?  Let me know 
> what else must be necessary for me to add.

https://www.postgresql.org/docs/12/release-12.html#id-1.11.6.5.3

"

Remove the special behavior of oid columns (Andres Freund, John Naylor)

Previously, a normally-invisible oid column could be specified during 
table creation using WITH OIDS; that ability has been removed. Columns 
can still be explicitly declared as type oid. Operations on tables that 
have columns created using WITH OIDS will need adjustment.

The system catalogs that previously had hidden oid columns now have 
ordinary oid columns. Hence, SELECT * will now output those columns, 
whereas previously they would be displayed only if selected explicitly.
"

> 
> Thanks,
> IvanK.


-- 
Adrian Klaver
adrian.klaver@aklaver.com



pgsql-general by date:

Previous
From: Ivan Kabaivanov
Date:
Subject: Re: syntax error with v12
Next
From: Alastair McKinley
Date:
Subject: Re: websearch_to_tsquery() and apostrophe inside double quotes