From: | jeffdafoe(at)gmail(dot)com |
---|---|
To: | pgsql-bugs(at)postgresql(dot)org |
Subject: | BUG #14474: Issue with temp table creation and OIDs |
Date: | 2016-12-22 14:53:04 |
Message-ID: | 20161222145304.25620.47445@wrigleys.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-bugs |
The following bug has been logged on the website:
Bug reference: 14474
Logged by: Jeff Dafoe
Email address: jeffdafoe(at)gmail(dot)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)
From | Date | Subject | |
---|---|---|---|
Next Message | Tom Lane | 2016-12-22 15:42:01 | Re: Can't build uuid-ossp extension from source |
Previous Message | steven.winfield | 2016-12-22 11:13:45 | BUG #14473: Parallel query aborts with too many connections |