diff options
author | Fujii Masao <fujii@postgresql.org> | 2015-05-22 21:42:15 +0900 |
---|---|---|
committer | Fujii Masao <fujii@postgresql.org> | 2015-05-22 21:42:15 +0900 |
commit | 6d1733fa90a3f8037c7c815ed6ab4d97c295e525 (patch) | |
tree | 127c7404a154687e73391aeeb1ce2c285b5d8040 | |
parent | 7cbee7c0a1db668c60c020a3fd1e3234daa562a9 (diff) | |
download | postgresql-6d1733fa90a3f8037c7c815ed6ab4d97c295e525.tar.gz postgresql-6d1733fa90a3f8037c7c815ed6ab4d97c295e525.zip |
Minor enhancement of readability of ALTER TABLE syntax in the doc.
FabrÃzio Mello
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 6 |
1 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index ff032bc283d..207fec1758e 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -66,7 +66,7 @@ ALTER TABLE ALL IN TABLESPACE <replaceable class="PARAMETER">name</replaceable> SET WITH OIDS SET WITHOUT OIDS SET TABLESPACE <replaceable class="PARAMETER">new_tablespace</replaceable> - SET {LOGGED | UNLOGGED} + SET { LOGGED | UNLOGGED } SET ( <replaceable class="PARAMETER">storage_parameter</replaceable> = <replaceable class="PARAMETER">value</replaceable> [, ... ] ) RESET ( <replaceable class="PARAMETER">storage_parameter</replaceable> [, ... ] ) INHERIT <replaceable class="PARAMETER">parent_table</replaceable> @@ -74,7 +74,7 @@ ALTER TABLE ALL IN TABLESPACE <replaceable class="PARAMETER">name</replaceable> OF <replaceable class="PARAMETER">type_name</replaceable> NOT OF OWNER TO { <replaceable class="PARAMETER">new_owner</replaceable> | CURRENT_USER | SESSION_USER } - REPLICA IDENTITY {DEFAULT | USING INDEX <replaceable class="PARAMETER">index_name</replaceable> | FULL | NOTHING} + REPLICA IDENTITY { DEFAULT | USING INDEX <replaceable class="PARAMETER">index_name</replaceable> | FULL | NOTHING } <phrase>and <replaceable class="PARAMETER">table_constraint_using_index</replaceable> is:</phrase> @@ -516,7 +516,7 @@ ALTER TABLE ALL IN TABLESPACE <replaceable class="PARAMETER">name</replaceable> </varlistentry> <varlistentry> - <term><literal>SET {LOGGED | UNLOGGED}</literal></term> + <term><literal>SET { LOGGED | UNLOGGED }</literal></term> <listitem> <para> This form changes the table from unlogged to logged or vice-versa |