projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f6d208d
)
doc: CREATE FOREIGN TABLE now allows CHECK ( ... ) NO INHERIT
author
Robert Haas
Fri, 15 May 2015 18:38:27 +0000
(14:38 -0400)
committer
Robert Haas
Fri, 15 May 2015 18:42:15 +0000
(14:42 -0400)
Etsuro Fujita
doc/src/sgml/ref/create_foreign_table.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/ref/create_foreign_table.sgml
b/doc/src/sgml/ref/create_foreign_table.sgml
index abadd83fc386cc969f70919c6a3b48e39f820ad3..413b033cb57fe0b149bc6768fad4e7810ae35f45 100644
(file)
--- 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 ]
table_name
[ CONSTRAINT
constraint_name
]
{ NOT NULL |
NULL |
- CHECK (
expression
) |
+ CHECK (
expression
)
[ NO INHERIT ]
|
DEFAULT
default_expr
}
and
table_constraint
is:
[ CONSTRAINT
constraint_name
]
-CHECK (
expression
)
+CHECK (
expression
)
[ NO INHERIT ]