From: Bruce Momjian Date: Fri, 20 Sep 2002 03:39:15 +0000 (+0000) Subject: This patch corrects a minor mis-statement in the CREATE DOMAIN docs, X-Git-Tag: REL7_3~453 X-Git-Url: https://granicus.if.org/sourcecode?a=commitdiff_plain;h=674818dce8cdce642727d6fb43e77063fca694b1;p=postgresql This patch corrects a minor mis-statement in the CREATE DOMAIN docs, pointed out by Chris KL on -hackers a little while ago -- NOT NULL != CHECK xxx IS NOT NULL. Neil Conway --- diff --git a/doc/src/sgml/ref/create_domain.sgml b/doc/src/sgml/ref/create_domain.sgml index 6a8401a62b..b7d5e606d3 100644 --- a/doc/src/sgml/ref/create_domain.sgml +++ b/doc/src/sgml/ref/create_domain.sgml @@ -1,5 +1,5 @@ @@ -108,9 +108,7 @@ where constraint is: NOT NULL - Values of this domain are not allowed to be NULL. This is - equivalent to the column constraint CHECK (column NOT NULL). + Values of this domain are not allowed to be NULL.