projects
/
postgresql.git
/ commitdiff
commit
grep
author
committer
pickaxe
?
search:
re
summary
|
shortlog
|
log
|
commit
| commitdiff |
tree
raw
|
patch
| inline |
side by side
(parent:
f1c1685
)
This patch fixes a minor inaccuracy in the documentation: NOT NULL is
author
Bruce Momjian
Mon, 2 Sep 2002 06:20:53 +0000
(06:20 +0000)
committer
Bruce Momjian
Mon, 2 Sep 2002 06:20:53 +0000
(06:20 +0000)
not synonymous with CHECK (xxx IS NOT NULL) -- for example, consider
ALTER TABLE ADD PRIMARY KEY, which checks for 'NOT NULL', not a check
constraint.
Neil Conway
doc/src/sgml/ref/create_table.sgml
patch
|
blob
|
blame
|
history
diff --git
a/doc/src/sgml/ref/create_table.sgml
b/doc/src/sgml/ref/create_table.sgml
index 5ef7a5d6e70518da72c93682636e0550efda21ff..9e9525775c7173ab87853a76c5aa4b4e8bc7c62f 100644
(file)
--- a/
doc/src/sgml/ref/create_table.sgml
+++ b/
doc/src/sgml/ref/create_table.sgml
@@
-1,5
+1,5
@@
@@
-247,9
+247,7
@@
and
table_constraint
is:
NOT NULL>
- The column is not allowed to contain NULL values. This is
- equivalent to the column constraint
CHECK (
- class="PARAMETER">column NOT NULL).
+ The column is not allowed to contain NULL values.