diff options
author | Peter Eisentraut <peter_e@gmx.net> | 2015-04-24 13:22:18 -0400 |
---|---|---|
committer | Peter Eisentraut <peter_e@gmx.net> | 2015-04-24 13:22:18 -0400 |
commit | d64a9c8c833c497a926208c7ca898e270ecc6990 (patch) | |
tree | aca699a5c63df018dc2805c5c9cada9e4d280c53 | |
parent | 9ba978c8cc80d6f9e78b2ceef7f94834317b46aa (diff) | |
download | postgresql-d64a9c8c833c497a926208c7ca898e270ecc6990.tar.gz postgresql-d64a9c8c833c497a926208c7ca898e270ecc6990.zip |
doc: Move ALTER TABLE IF EXISTS description to better place
It was previously mixed in with the description of ALTER TABLE
subcommands. Move it to the Parameters section, which is where it is on
other reference pages.
pointed out by Amit Langote
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 20 |
1 files changed, 10 insertions, 10 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 6a82730a4b4..ff032bc283d 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -122,16 +122,6 @@ ALTER TABLE ALL IN TABLESPACE <replaceable class="PARAMETER">name</replaceable> </varlistentry> <varlistentry> - <term><literal>IF EXISTS</literal></term> - <listitem> - <para> - Do not throw an error if the table does not exist. A notice is issued - in this case. - </para> - </listitem> - </varlistentry> - - <varlistentry> <term><literal>SET DATA TYPE</literal></term> <listitem> <para> @@ -727,6 +717,16 @@ ALTER TABLE ALL IN TABLESPACE <replaceable class="PARAMETER">name</replaceable> <variablelist> <varlistentry> + <term><literal>IF EXISTS</literal></term> + <listitem> + <para> + Do not throw an error if the table does not exist. A notice is issued + in this case. + </para> + </listitem> + </varlistentry> + + <varlistentry> <term><replaceable class="PARAMETER">name</replaceable></term> <listitem> <para> |