From 81efc826081b7889753c449cf29dd72f75690047 Mon Sep 17 00:00:00 2001 From: Bruce Momjian Date: Mon, 2 Sep 2002 06:20:53 +0000 Subject: [PATCH] This patch fixes a minor inaccuracy in the documentation: NOT NULL is 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 | 6 ++---- 1 file changed, 2 insertions(+), 4 deletions(-) diff --git a/doc/src/sgml/ref/create_table.sgml b/doc/src/sgml/ref/create_table.sgml index 5ef7a5d6e7..9e9525775c 100644 --- 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 (column NOT NULL). + The column is not allowed to contain NULL values.