projects
/
users
/
kgrittn
/
postgres.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
5a8de2f
)
Remove unnecessary MATCH FULL specification in example.
author
Bruce Momjian
<bruce@momjian.us>
Sat, 10 Sep 2011 13:24:05 +0000
(09:24 -0400)
committer
Bruce Momjian
<bruce@momjian.us>
Sat, 10 Sep 2011 13:24:46 +0000
(09:24 -0400)
Reported by Grzegorz Szpetkowski.
doc/src/sgml/ref/alter_table.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/ref/alter_table.sgml
b/doc/src/sgml/ref/alter_table.sgml
index 0b1e0440d10654510b18ec950c893f2bc24746b0..00a477ef885d9338d23830aa057776f1c1830019 100644
(file)
--- 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>