summaryrefslogtreecommitdiff
path: root/doc/src/sgml
diff options
context:
space:
mode:
authorTom Lane2017-09-20 15:10:42 +0000
committerTom Lane2017-09-20 15:10:42 +0000
commit6f5e7a87406f2a52c270b34f257f1c41d631b575 (patch)
treeff0874d7adf722ced4939e5be2130e1727c4e90b /doc/src/sgml
parent8aa520045e1427f6f2ee0881e6d551546787da55 (diff)
Fix erroneous documentation about noise word GROUP.
GRANT, REVOKE, and some allied commands allow the noise word GROUP before a role name (cf. grantee production in gram.y). This option does not exist elsewhere, but it had nonetheless snuck into the documentation for ALTER ROLE, ALTER USER, and CREATE SCHEMA. Seems to be a copy-and-pasteo in commit 31eae6028, which did expand the syntax choices here, but not in that way. Back-patch to 9.5 where that came in. Discussion: https://postgr.es/m/20170916123750.8885.66941@wrigleys.postgresql.org
Diffstat (limited to 'doc/src/sgml')
-rw-r--r--doc/src/sgml/ref/alter_role.sgml2
-rw-r--r--doc/src/sgml/ref/alter_user.sgml2
-rw-r--r--doc/src/sgml/ref/create_schema.sgml2
3 files changed, 3 insertions, 3 deletions
diff --git a/doc/src/sgml/ref/alter_role.sgml b/doc/src/sgml/ref/alter_role.sgml
index 7638817b830..7b368b53770 100644
--- a/doc/src/sgml/ref/alter_role.sgml
+++ b/doc/src/sgml/ref/alter_role.sgml
@@ -46,7 +46,7 @@ ALTER ROLE { <replaceable class="PARAMETER">role_specification</replaceable> | A
<phrase>where <replaceable class="PARAMETER">role_specification</replaceable> can be:</phrase>
- [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable>
+ <replaceable class="PARAMETER">role_name</replaceable>
| CURRENT_USER
| SESSION_USER
</synopsis>
diff --git a/doc/src/sgml/ref/alter_user.sgml b/doc/src/sgml/ref/alter_user.sgml
index 95637ccc844..9ddb01c2432 100644
--- a/doc/src/sgml/ref/alter_user.sgml
+++ b/doc/src/sgml/ref/alter_user.sgml
@@ -46,7 +46,7 @@ ALTER USER { <replaceable class="PARAMETER">role_specification</replaceable> | A
<phrase>where <replaceable class="PARAMETER">role_specification</replaceable> can be:</phrase>
- [ GROUP ] <replaceable class="PARAMETER">role_name</replaceable>
+ <replaceable class="PARAMETER">role_name</replaceable>
| CURRENT_USER
| SESSION_USER
</synopsis>
diff --git a/doc/src/sgml/ref/create_schema.sgml b/doc/src/sgml/ref/create_schema.sgml
index 79305f15dd0..e41012602a6 100644
--- a/doc/src/sgml/ref/create_schema.sgml
+++ b/doc/src/sgml/ref/create_schema.sgml
@@ -28,7 +28,7 @@ CREATE SCHEMA IF NOT EXISTS AUTHORIZATION <replaceable class="PARAMETER">role_sp
<phrase>where <replaceable class="PARAMETER">role_specification</replaceable> can be:</phrase>
- [ GROUP ] <replaceable class="PARAMETER">user_name</replaceable>
+ <replaceable class="PARAMETER">user_name</replaceable>
| CURRENT_USER
| SESSION_USER
</synopsis>