[BUGS] BUG #14474: Issue with temp table creation and OIDs - Mailing list pgsql-bugs

From jeffdafoe@gmail.com
Subject [BUGS] BUG #14474: Issue with temp table creation and OIDs
Date
Msg-id 20161222145304.25620.47445@wrigleys.postgresql.org
Whole thread Raw
Responses Re: [BUGS] BUG #14474: Issue with temp table creation and OIDs
List pgsql-bugs
The following bug has been logged on the website:

Bug reference:      14474
Logged by:          Jeff Dafoe
Email address:      jeffdafoe@gmail.com
PostgreSQL version: 9.6.1
Operating system:   Linux
Description:

We're in the process of upgrading from PG 9.3 to 9.6 .  We've found that the
following works in 9.3 but does not work in 9.6 .  It's not a big issue for
us, this is the simplest representation of the issue, we were able to work
around it in our actual case.  I thought it best to report it in case others
encountered the issue.

create table test (id bigint) WITH (OIDS=FALSE);
create temporary table test_tmp (like test) WITH (OIDS=TRUE);
select oid, id from test_tmp;

In 9.3 this works, in 9.6 this generates a 'ERROR:  column "oid" does not
exist' on the select statement.

Thanks,
Jeff (using PG since 6.5)




--
Sent via pgsql-bugs mailing list (pgsql-bugs@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-bugs

pgsql-bugs by date:

Previous
From: steven.winfield@cantabcapital.com
Date:
Subject: [BUGS] BUG #14473: Parallel query aborts with too many connections
Next
From: Tom Lane
Date:
Subject: Re: [BUGS] Can't build uuid-ossp extension from source