aboutsummaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2011-09-10 09:24:05 -0400
committerBruce Momjian <bruce@momjian.us>2011-09-10 09:24:46 -0400
commitc79003ea4f2c40ac957457dbae24928ba255f280 (patch)
tree15afbb6aee1e22806cf2d30377fab908c7a8e3a1
parent5a8de2f2e7fd5d2265f30206743ba2dd51bff222 (diff)
downloadpostgresql-c79003ea4f2c40ac957457dbae24928ba255f280.tar.gz
postgresql-c79003ea4f2c40ac957457dbae24928ba255f280.zip
Remove unnecessary MATCH FULL specification in example.
Reported by Grzegorz Szpetkowski.
-rw-r--r--doc/src/sgml/ref/alter_table.sgml2
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 0b1e0440d10..00a477ef885 100644
--- a/doc/src/sgml/ref/alter_table.sgml
+++ b/doc/src/sgml/ref/alter_table.sgml
@@ -1001,7 +1001,7 @@ ALTER TABLE ONLY distributors DROP CONSTRAINT zipchk;
<para>
To add a foreign key constraint to a table:
<programlisting>
-ALTER TABLE distributors ADD CONSTRAINT distfk FOREIGN KEY (address) REFERENCES addresses (address) MATCH FULL;
+ALTER TABLE distributors ADD CONSTRAINT distfk FOREIGN KEY (address) REFERENCES addresses (address);
</programlisting>
</para>