Re: [HACKERS] Minor improvement to create_foreign_table.sgml

2015-05-18 Thread Etsuro Fujita

On 2015/05/16 3:46, Robert Haas wrote:

On Thu, May 14, 2015 at 4:07 AM, Etsuro Fujita
fujita.ets...@lab.ntt.co.jp wrote:

The attached patch adds missing NO INHERIT to the CHECK clause in the
synopsis section in the reference page on CREATE FOREIGN TABLE.


Good catch.  Committed.


Thanks for picking this up!

Best regards,
Etsuro Fujita


--
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


Re: [HACKERS] Minor improvement to create_foreign_table.sgml

2015-05-15 Thread Robert Haas
On Thu, May 14, 2015 at 4:07 AM, Etsuro Fujita
fujita.ets...@lab.ntt.co.jp wrote:
 The attached patch adds missing NO INHERIT to the CHECK clause in the
 synopsis section in the reference page on CREATE FOREIGN TABLE.

Good catch.  Committed.

-- 
Robert Haas
EnterpriseDB: http://www.enterprisedb.com
The Enterprise PostgreSQL Company


-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers


[HACKERS] Minor improvement to create_foreign_table.sgml

2015-05-14 Thread Etsuro Fujita
Hi,

The attached patch adds missing NO INHERIT to the CHECK clause in the
synopsis section in the reference page on CREATE FOREIGN TABLE.

Best regards,
Etsuro Fujita
diff --git a/doc/src/sgml/ref/create_foreign_table.sgml b/doc/src/sgml/ref/create_foreign_table.sgml
index abadd83..413b033 100644
--- a/doc/src/sgml/ref/create_foreign_table.sgml
+++ b/doc/src/sgml/ref/create_foreign_table.sgml
@@ -32,13 +32,13 @@ CREATE FOREIGN TABLE [ IF NOT EXISTS ] replaceable class=PARAMETERtable_name
 [ CONSTRAINT replaceable class=PARAMETERconstraint_name/replaceable ]
 { NOT NULL |
   NULL |
-  CHECK ( replaceable class=PARAMETERexpression/replaceable ) |
+  CHECK ( replaceable class=PARAMETERexpression/replaceable ) [ NO INHERIT ] |
   DEFAULT replaceabledefault_expr/replaceable }
 
 phraseand replaceable class=PARAMETERtable_constraint/replaceable is:/phrase
 
 [ CONSTRAINT replaceable class=PARAMETERconstraint_name/replaceable ]
-CHECK ( replaceable class=PARAMETERexpression/replaceable )
+CHECK ( replaceable class=PARAMETERexpression/replaceable ) [ NO INHERIT ]
 /synopsis
  /refsynopsisdiv
 

-- 
Sent via pgsql-hackers mailing list (pgsql-hackers@postgresql.org)
To make changes to your subscription:
http://www.postgresql.org/mailpref/pgsql-hackers