From c79003ea4f2c40ac957457dbae24928ba255f280 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Sat, 10 Sep 2011 09:24:05 -0400 Subject: [PATCH] Remove unnecessary MATCH FULL specification in example. Reported by Grzegorz Szpetkowski. --- doc/src/sgml/ref/alter_table.sgml | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/doc/src/sgml/ref/alter_table.sgml b/doc/src/sgml/ref/alter_table.sgml index 0b1e0440d1..00a477ef88 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); -- 2.40.0