[COMMITTERS] pgsql: Fix CREATE TABLE ... LIKE ... WITH OIDS.

2016-12-22 Thread Tom Lane
Fix CREATE TABLE ... LIKE ... WITH OIDS. Having a WITH OIDS specification should result in the creation of an OID column, but commit b943f502b broke that in the case that there were LIKE tables without OIDS. Commentary in that patch makes it look like this was intentional, but if so it was based

[COMMITTERS] pgsql: Fix CREATE TABLE ... LIKE ... WITH OIDS.

2016-12-22 Thread Tom Lane
Fix CREATE TABLE ... LIKE ... WITH OIDS. Having a WITH OIDS specification should result in the creation of an OID column, but commit b943f502b broke that in the case that there were LIKE tables without OIDS. Commentary in that patch makes it look like this was intentional, but if so it was based

[COMMITTERS] pgsql: Fix CREATE TABLE ...

2008-02-07 Thread Tom Lane
Log Message: --- Fix CREATE TABLE ... LIKE ... INCLUDING INDEXES to not cause unwanted tablespace permissions failures when copying an index that is in the database's default tablespace. A side-effect of the change is that explicitly specifying the default tablespace no longer triggers a p

[COMMITTERS] pgsql: Fix CREATE TABLE ...

2006-09-17 Thread Tom Lane
Log Message: --- Fix CREATE TABLE ... AS VALUES ... to work rather than Assert'ing; oversight in original implementation of VALUES. Also fix an oversight in recent addition of options to CREATE TABLE AS: they weren't getting propagated if the query was a set-operation such as UNION. Modif