aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorBruce Momjian <bruce@momjian.us>2002-09-20 03:39:15 +0000
committerBruce Momjian <bruce@momjian.us>2002-09-20 03:39:15 +0000
commit674818dce8cdce642727d6fb43e77063fca694b1 (patch)
tree66baec4bfda7bac531abfbd8f81cdf2bd169182d /doc/src
parentda395b56cd0844f73232961fe0823f4c224bc721 (diff)
downloadpostgresql-674818dce8cdce642727d6fb43e77063fca694b1.tar.gz
postgresql-674818dce8cdce642727d6fb43e77063fca694b1.zip
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
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/create_domain.sgml6
1 files changed, 2 insertions, 4 deletions
diff --git a/doc/src/sgml/ref/create_domain.sgml b/doc/src/sgml/ref/create_domain.sgml
index 6a8401a62b3..b7d5e606d3e 100644
--- a/doc/src/sgml/ref/create_domain.sgml
+++ b/doc/src/sgml/ref/create_domain.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.5 2002/04/23 02:07:15 tgl Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.6 2002/09/20 03:39:15 momjian Exp $
PostgreSQL documentation
-->
@@ -108,9 +108,7 @@ where <replaceable class="PARAMETER">constraint</replaceable> is:
<term><literal>NOT NULL</></term>
<listitem>
<para>
- Values of this domain are not allowed to be NULL. This is
- equivalent to the column constraint <literal>CHECK (<replaceable
- class="PARAMETER">column</replaceable> NOT NULL)</literal>.
+ Values of this domain are not allowed to be NULL.
</para>
</listitem>
</varlistentry>