diff options
author | Tom Lane <tgl@sss.pgh.pa.us> | 2004-07-12 05:38:11 +0000 |
---|---|---|
committer | Tom Lane <tgl@sss.pgh.pa.us> | 2004-07-12 05:38:11 +0000 |
commit | c14a43f657c33189582ca1a7a60ab419dc6164a5 (patch) | |
tree | 2c6f950a4d84c59bbd5add36564b6358f25f938c /src/backend/nodes/copyfuncs.c | |
parent | c5ff895c4884a9946a7f0bb74a2ae7b2aac34da8 (diff) |
Remove TABLESPACE option of CREATE SEQUENCE; sequences will now always
live in database or schema's default tablespace, as per today's discussion.
Also, remove some unused keywords from the grammar (PATH, PENDANT,
VERSION), and fix ALSO, which was added as a keyword but not added
to the keyword classification lists, thus making it worse-than-reserved.
Diffstat (limited to 'src/backend/nodes/copyfuncs.c')
-rw-r--r-- | src/backend/nodes/copyfuncs.c | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/backend/nodes/copyfuncs.c b/src/backend/nodes/copyfuncs.c index 17adc9cf5fd..8c550f49118 100644 --- a/src/backend/nodes/copyfuncs.c +++ b/src/backend/nodes/copyfuncs.c @@ -15,7 +15,7 @@ * Portions Copyright (c) 1994, Regents of the University of California * * IDENTIFICATION - * $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.287 2004/06/25 21:55:54 tgl Exp $ + * $PostgreSQL: pgsql/src/backend/nodes/copyfuncs.c,v 1.288 2004/07/12 05:37:21 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -2152,7 +2152,6 @@ _copyCreateSeqStmt(CreateSeqStmt *from) COPY_NODE_FIELD(sequence); COPY_NODE_FIELD(options); - COPY_STRING_FIELD(tablespacename); return newnode; } |