Remove unnecessary MATCH FULL specification in example.

Reported by Grzegorz Szpetkowski.
pull/1/head
Bruce Momjian 15 years ago
parent 5a8de2f2e7
commit c79003ea4f
  1. 2
      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>

Loading…
Cancel
Save