diff options
author | Neil Conway <neilc@samurai.com> | 2004-01-10 23:28:45 +0000 |
---|---|---|
committer | Neil Conway <neilc@samurai.com> | 2004-01-10 23:28:45 +0000 |
commit | 98dcf085e35e393bdd6740e6a8f8684b27ac2039 (patch) | |
tree | d09c442bd3c5125b18e47e890b99463f08b6ffe6 /src/backend/commands/typecmds.c | |
parent | cf4c925dd420a969351d83d584366c167ae54d25 (diff) | |
download | postgresql-98dcf085e35e393bdd6740e6a8f8684b27ac2039.tar.gz postgresql-98dcf085e35e393bdd6740e6a8f8684b27ac2039.zip |
Implement "WITH / WITHOID OIDS" clause for CREATE TABLE AS. This is
intended to allow application authors to insulate themselves from
changes to the default value of 'default_with_oids' in future releases
of PostgreSQL.
This patch also fixes a bug in the earlier implementation of the
'default_with_oids' GUC variable: code in gram.y should not examine
the value of GUC variables directly due to synchronization issues.
Diffstat (limited to 'src/backend/commands/typecmds.c')
-rw-r--r-- | src/backend/commands/typecmds.c | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/backend/commands/typecmds.c b/src/backend/commands/typecmds.c index c8321213b39..530fb1f573c 100644 --- a/src/backend/commands/typecmds.c +++ b/src/backend/commands/typecmds.c @@ -8,7 +8,7 @@ * * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/commands/typecmds.c,v 1.51 2003/11/29 19:51:47 pgsql Exp $ + * $PostgreSQL: pgsql/src/backend/commands/typecmds.c,v 1.52 2004/01/10 23:28:44 neilc Exp $ * * DESCRIPTION * The "DefineFoo" routines take the parse tree and pick out the @@ -1066,7 +1066,7 @@ DefineCompositeType(const RangeVar *typevar, List *coldeflist) createStmt->tableElts = coldeflist; createStmt->inhRelations = NIL; createStmt->constraints = NIL; - createStmt->hasoids = false; + createStmt->hasoids = MUST_NOT_HAVE_OIDS; createStmt->oncommit = ONCOMMIT_NOOP; /* |