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 /doc/src | |
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 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/create_sequence.sgml | 16 |
1 files changed, 1 insertions, 15 deletions
diff --git a/doc/src/sgml/ref/create_sequence.sgml b/doc/src/sgml/ref/create_sequence.sgml index de9fa57ee14..d380d32a729 100644 --- a/doc/src/sgml/ref/create_sequence.sgml +++ b/doc/src/sgml/ref/create_sequence.sgml @@ -1,5 +1,5 @@ <!-- -$PostgreSQL: pgsql/doc/src/sgml/ref/create_sequence.sgml,v 1.40 2004/06/18 06:13:05 tgl Exp $ +$PostgreSQL: pgsql/doc/src/sgml/ref/create_sequence.sgml,v 1.41 2004/07/12 05:36:56 tgl Exp $ PostgreSQL documentation --> @@ -23,7 +23,6 @@ PostgreSQL documentation CREATE [ TEMPORARY | TEMP ] SEQUENCE <replaceable class="parameter">name</replaceable> [ INCREMENT [ BY ] <replaceable class="parameter">increment</replaceable> ] [ MINVALUE <replaceable class="parameter">minvalue</replaceable> | NO MINVALUE ] [ MAXVALUE <replaceable class="parameter">maxvalue</replaceable> | NO MAXVALUE ] [ START [ WITH ] <replaceable class="parameter">start</replaceable> ] [ CACHE <replaceable class="parameter">cache</replaceable> ] [ [ NO ] CYCLE ] - [ TABLESPACE <replaceable class="parameter">tablespace</replaceable> ] </synopsis> </refsynopsisdiv> @@ -194,19 +193,6 @@ SELECT * FROM <replaceable>name</replaceable>; </para> </listitem> </varlistentry> - - <varlistentry> - <term><replaceable class="parameter">tablespace</replaceable></term> - <listitem> - <para> - The optional clause <literal>TABLESPACE</> <replaceable - class="parameter">tablespace</replaceable> specifies - the tablespace in which to create the sequence. If this clause - is not supplied, the tablespace of the sequence's schema will be used. - </para> - </listitem> - </varlistentry> - </variablelist> </refsect1> |