From: Bruce Momjian Date: Sat, 10 Sep 2011 13:24:05 +0000 (-0400) Subject: Remove unnecessary MATCH FULL specification in example. X-Git-Tag: REL9_2_BETA1~1105 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=c79003ea4f2c40ac957457dbae24928ba255f280;p=thirdparty%2Fpostgresql.git Remove unnecessary MATCH FULL specification in example. Reported by Grzegorz Szpetkowski. --- 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; To add a foreign key constraint to a table: -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);