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/include | |
parent | c5ff895c4884a9946a7f0bb74a2ae7b2aac34da8 (diff) | |
download | postgresql-c14a43f657c33189582ca1a7a60ab419dc6164a5.tar.gz postgresql-c14a43f657c33189582ca1a7a60ab419dc6164a5.zip |
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/include')
-rw-r--r-- | src/include/nodes/parsenodes.h | 3 |
1 files changed, 1 insertions, 2 deletions
diff --git a/src/include/nodes/parsenodes.h b/src/include/nodes/parsenodes.h index 3745972bd50..47b09b42a79 100644 --- a/src/include/nodes/parsenodes.h +++ b/src/include/nodes/parsenodes.h @@ -7,7 +7,7 @@ * Portions Copyright (c) 1996-2003, PostgreSQL Global Development Group * Portions Copyright (c) 1994, Regents of the University of California * - * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.261 2004/07/11 23:13:58 tgl Exp $ + * $PostgreSQL: pgsql/src/include/nodes/parsenodes.h,v 1.262 2004/07/12 05:38:11 tgl Exp $ * *------------------------------------------------------------------------- */ @@ -1165,7 +1165,6 @@ typedef struct CreateSeqStmt NodeTag type; RangeVar *sequence; /* the sequence to create */ List *options; - char *tablespacename; /* tablespace, or NULL for default */ } CreateSeqStmt; typedef struct AlterSeqStmt |