From: Robert Haas Date: Thu, 21 May 2015 15:16:33 +0000 (-0400) Subject: Correct two mistakes in the ALTER FOREIGN TABLE reference page. X-Git-Tag: REL9_5_ALPHA1~178 X-Git-Url: http://git.ipfire.org/?a=commitdiff_plain;h=160a9aaabf400106232e7e6fce0966ee5fdf84e2;p=thirdparty%2Fpostgresql.git Correct two mistakes in the ALTER FOREIGN TABLE reference page. Etsuro Fujita --- diff --git a/doc/src/sgml/ref/alter_foreign_table.sgml b/doc/src/sgml/ref/alter_foreign_table.sgml index ace0040a9b7..4329d43a1ed 100644 --- a/doc/src/sgml/ref/alter_foreign_table.sgml +++ b/doc/src/sgml/ref/alter_foreign_table.sgml @@ -169,7 +169,7 @@ ALTER FOREIGN TABLE [ IF EXISTS ] name - ADD table_constraint [ NOT VALID ] + ADD table_constraint [ NOT VALID ] This form adds a new constraint to a foreign table, using the same @@ -541,7 +541,7 @@ ALTER FOREIGN TABLE distributors ALTER COLUMN street SET NOT NULL; To change options of a foreign table: -ALTER FOREIGN TABLE myschema.distributors OPTIONS (ADD opt1 'value', SET opt2, 'value2', DROP opt3 'value3'); +ALTER FOREIGN TABLE myschema.distributors OPTIONS (ADD opt1 'value', SET opt2 'value2', DROP opt3 'value3');