diff options
author | Robert Haas <rhaas@postgresql.org> | 2014-04-14 10:52:07 -0400 |
---|---|---|
committer | Robert Haas <rhaas@postgresql.org> | 2014-04-14 10:52:07 -0400 |
commit | f0aa6c06d4e114ecb7ed81a2168238bbcfd54878 (patch) | |
tree | 96b27658da1b2ac0732a0485674dab46d0669c27 /doc/src | |
parent | 0c953540d285a94684b0c0dc7a2c338cb1d65ef0 (diff) | |
download | postgresql-f0aa6c06d4e114ecb7ed81a2168238bbcfd54878.tar.gz postgresql-f0aa6c06d4e114ecb7ed81a2168238bbcfd54878.zip |
Correct description of constraint_name in ALTER TABLE documentation.
Apparently, the old text was written at a time when the only use of
constraint_name here was for a constraint to be dropped, but that's
no longer true.
Etsuro Fujita
Diffstat (limited to 'doc/src')
-rw-r--r-- | doc/src/sgml/ref/alter_table.sgml | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 19f2a2e76f1..e602ad34171 100644 --- a/doc/src/sgml/ref/alter_table.sgml +++ b/doc/src/sgml/ref/alter_table.sgml @@ -740,7 +740,7 @@ ALTER TABLE [ IF EXISTS ] <replaceable class="PARAMETER">name</replaceable> <term><replaceable class="PARAMETER">constraint_name</replaceable></term> <listitem> <para> - Name of an existing constraint to drop. + Name of a new or existing constraint. </para> </listitem> </varlistentry> |