there's a paragraph in the ALTER TABLE reference page that reads:
authorBruce Momjian <[email protected]>
Thu, 8 Dec 2005 21:35:41 +0000 (21:35 +0000)
committerBruce Momjian <[email protected]>
Thu, 8 Dec 2005 21:35:41 +0000 (21:35 +0000)
DROP CONSTRAINT

    This form drops constraints on a table. Currently, constraints on tables
    are not required to have unique names, so there may be more than one
    constraint matching the specified name. All matching constraints will be
    dropped.

To my knowledge, it is no longer possible to create constraints with the
same name for the same relation. When you create a constraint and specify
the same name explictly, an error is raised. Implicit constraint creation
won't choose an existing name either and up to now you could not rename a
constraint. Renaming works with the patch I sent in a few hours ago but this
patch as well won't allow constraints with identical names on the same
relation.

The attached patch thus removes the note in the docs.

Joachim Wieland

doc/src/sgml/ref/alter_table.sgml

index aeea7172010f9d663fe51ee1197dffd21f5e7b1e..85eb8ad5d0fb5d0df9f147e9a280404596fe4295 100644 (file)
@@ -183,10 +183,7 @@ where <replaceable class="PARAMETER">action</replaceable> is one of:
     <term><literal>DROP CONSTRAINT</literal></term>
     <listitem>
      <para>
-      This form drops constraints on a table.
-      Currently, constraints on tables are not required to have unique
-      names, so there may be more than one constraint matching the specified
-      name.  All matching constraints will be dropped.
+      This form drops the specified constraint on a table.
      </para>
     </listitem>
    </varlistentry>