aboutsummaryrefslogtreecommitdiff
path: root/doc/src
diff options
context:
space:
mode:
authorTom Lane <tgl@sss.pgh.pa.us>2001-07-12 18:03:00 +0000
committerTom Lane <tgl@sss.pgh.pa.us>2001-07-12 18:03:00 +0000
commit3284758a17b23a7d475171b21f72dec7134e89be (patch)
treefa600a9cf6057ed34255c6592796bfaf3ab09827 /doc/src
parent5c4d1398a64b5573b653205e19650914e078f168 (diff)
downloadpostgresql-3284758a17b23a7d475171b21f72dec7134e89be.tar.gz
postgresql-3284758a17b23a7d475171b21f72dec7134e89be.zip
Remove grammar restrictions on order of optional clauses in CREATE GROUP.
From Vince Vielhaber.
Diffstat (limited to 'doc/src')
-rw-r--r--doc/src/sgml/ref/create_group.sgml12
1 files changed, 7 insertions, 5 deletions
diff --git a/doc/src/sgml/ref/create_group.sgml b/doc/src/sgml/ref/create_group.sgml
index a512d2ff12a..97c5700b62a 100644
--- a/doc/src/sgml/ref/create_group.sgml
+++ b/doc/src/sgml/ref/create_group.sgml
@@ -1,5 +1,5 @@
<!--
-$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_group.sgml,v 1.2 2000/03/27 17:14:42 thomas Exp $
+$Header: /cvsroot/pgsql/doc/src/sgml/ref/create_group.sgml,v 1.3 2001/07/12 18:02:58 tgl Exp $
Postgres documentation
-->
@@ -23,10 +23,12 @@ Postgres documentation
<date>2000-01-14</date>
</refsynopsisdivinfo>
<synopsis>
-CREATE GROUP <replaceable class="PARAMETER">name</replaceable>
- [ WITH
- [ SYSID <replaceable class="PARAMETER">gid</replaceable> ]
- [ USER <replaceable class="PARAMETER">username</replaceable> [, ...] ] ]
+CREATE GROUP <replaceable class="PARAMETER">name</replaceable> [ [ WITH ] <replaceable class="PARAMETER">option</replaceable> [ ... ] ]
+
+where <replaceable class="PARAMETER">option</replaceable> can be:
+
+ SYSID <replaceable class="PARAMETER">gid</replaceable>
+ | USER <replaceable class="PARAMETER">username</replaceable> [, ...]
</synopsis>
<refsect2 id="R2-SQL-CREATEGROUP-1">