mirror of
https://github.com/postgres/postgres.git
synced 2025-12-19 17:02:53 +03:00
doc: CREATE FOREIGN TABLE now allows CHECK ( ... ) NO INHERIT
Etsuro Fujita
This commit is contained in:
@@ -32,13 +32,13 @@ CREATE FOREIGN TABLE [ IF NOT EXISTS ] <replaceable class="PARAMETER">table_name
|
|||||||
[ CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> ]
|
[ CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> ]
|
||||||
{ NOT NULL |
|
{ NOT NULL |
|
||||||
NULL |
|
NULL |
|
||||||
CHECK ( <replaceable class="PARAMETER">expression</replaceable> ) |
|
CHECK ( <replaceable class="PARAMETER">expression</replaceable> ) [ NO INHERIT ] |
|
||||||
DEFAULT <replaceable>default_expr</replaceable> }
|
DEFAULT <replaceable>default_expr</replaceable> }
|
||||||
|
|
||||||
<phrase>and <replaceable class="PARAMETER">table_constraint</replaceable> is:</phrase>
|
<phrase>and <replaceable class="PARAMETER">table_constraint</replaceable> is:</phrase>
|
||||||
|
|
||||||
[ CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> ]
|
[ CONSTRAINT <replaceable class="PARAMETER">constraint_name</replaceable> ]
|
||||||
CHECK ( <replaceable class="PARAMETER">expression</replaceable> )
|
CHECK ( <replaceable class="PARAMETER">expression</replaceable> ) [ NO INHERIT ]
|
||||||
</synopsis>
|
</synopsis>
|
||||||
</refsynopsisdiv>
|
</refsynopsisdiv>
|
||||||
|
|
||||||
|
|||||||
Reference in New Issue
Block a user