jeffdafoe(at)gmail(dot)com writes:
> 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.
I think this must be the fault of commit b943f502b --- it's overriding
test_tmp's WITH on the basis of what it found in LIKE tables. Will fix,
thanks for the report!
regards, tom lane