diff options
author | Bruce Momjian <bruce@momjian.us> | 2003-02-13 05:32:42 +0000 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2003-02-13 05:32:42 +0000 |
commit | 0845b6f3265cc93e7700f98cb29e9a3a789aeed3 (patch) | |
tree | b4386682a3e70b9cb36f27e2e966ccfa9027ca1f | |
parent | 9ccaaf676ff17f1102542adb1ff05e3a9c873712 (diff) | |
download | postgresql-0845b6f3265cc93e7700f98cb29e9a3a789aeed3.tar.gz postgresql-0845b6f3265cc93e7700f98cb29e9a3a789aeed3.zip |
> > They work the same as table constraints with in-line declaration (no
> > comma).
>
> OK. But the documentation implies there is a comma, so it should probably
> get chenged then.
Yes, it should. (attached)
[ Backpatched to 7.3.X too.]
Rod Taylor
-rw-r--r-- | doc/src/sgml/ref/create_domain.sgml | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/doc/src/sgml/ref/create_domain.sgml b/doc/src/sgml/ref/create_domain.sgml index 01d5870a8b9..fcb6253e2a8 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.10 2003/01/19 00:13:29 momjian Exp $ +$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_domain.sgml,v 1.11 2003/02/13 05:32:42 momjian Exp $ PostgreSQL documentation --> @@ -25,7 +25,7 @@ PostgreSQL documentation <synopsis> CREATE DOMAIN <replaceable class="parameter">domainname</replaceable> [AS] <replaceable class="parameter">data_type</replaceable> [ DEFAULT <replaceable>default_expr</> ] - [ <replaceable class="PARAMETER">constraint</replaceable> [, ... ] ] + [ <replaceable class="PARAMETER">constraint</replaceable> [ ... ] ] where <replaceable class="PARAMETER">constraint</replaceable> is: |