Skip to content
Snippets Groups Projects
Commit c79003ea authored by Bruce Momjian's avatar Bruce Momjian
Browse files

Remove unnecessary MATCH FULL specification in example.

Reported by Grzegorz Szpetkowski.
parent 5a8de2f2
No related branches found
Tags
No related merge requests found
...@@ -1001,7 +1001,7 @@ ALTER TABLE ONLY distributors DROP CONSTRAINT zipchk; ...@@ -1001,7 +1001,7 @@ ALTER TABLE ONLY distributors DROP CONSTRAINT zipchk;
<para> <para>
To add a foreign key constraint to a table: To add a foreign key constraint to a table:
<programlisting> <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> </programlisting>
</para> </para>
......
0% Loading or .
You are about to add 0 people to the discussion. Proceed with caution.
Please register or to comment