aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2001-02-10 16:39:07 +0000
committerBruce Momjian <bruce@momjian.us>2001-02-10 16:39:07 +0000
commita5dbde8b0a16239d9da51c34e7c506c329e2da66 (patch)
tree8ab8b2c587b9f73b1bbf7a872aba04506aaf3a6a
parentdb98204a8a31766cfad4502e1c0de7526f84028b (diff)
downloadpostgresql-a5dbde8b0a16239d9da51c34e7c506c329e2da66.tar.gz
postgresql-a5dbde8b0a16239d9da51c34e7c506c329e2da66.zip
Add mention of CONSTRAINT in ADD CONSTRAINT section.
-rw-r--r--doc/src/sgml/ref/alter_table.sgml6
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 280c7039a13..9efe953081d 100644
--- a/doc/src/sgml/ref/alter_table.sgml
+++ b/doc/src/sgml/ref/alter_table.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.19 2001/01/13 23:58:55 petere Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/alter_table.sgml,v 1.20 2001/02/10 16:39:07 momjian Exp $
Postgres documentation
-->
@@ -35,7 +35,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable> [ * ]
ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
RENAME TO <replaceable class="PARAMETER">newtable</replaceable>
ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
- ADD <replaceable class="PARAMETER">table constraint definition</replaceable>
+ ADD CONSTRAINT<replaceable class="PARAMETER">table constraint definition</replaceable>
ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
OWNER TO <replaceable class="PARAMETER">new owner</replaceable>
</synopsis>
@@ -167,7 +167,7 @@ ALTER TABLE <replaceable class="PARAMETER">table</replaceable>
the affected table. Thus, the table or column will
remain of the same type and size after this command is
executed.
- The ADD <replaceable class="PARAMETER">table constraint definition</replaceable> clause
+ The ADD CONSTRAINT<replaceable class="PARAMETER">table constraint definition</replaceable> clause
adds a new constraint to the table using the same syntax as <xref
linkend="SQL-CREATETABLE" endterm="SQL-CREATETABLE-title">.
The OWNER clause chnages the owner of the table to the user <replaceable class="PARAMETER">