From 9649b182a1548ea6fbbdb0ebab4e9e5e2bfe815b Mon Sep 17 00:00:00 2001 From: Tom Lane Date: Wed, 2 Aug 2006 16:29:49 +0000 Subject: [PATCH] Fix documentation error: GRANT/REVOKE for roles only accept role names as grantees, not PUBLIC ... and you can't say GROUP either. Noted by Brian Hurt. --- doc/src/sgml/ref/grant.sgml | 11 ++++++++--- doc/src/sgml/ref/revoke.sgml | 7 ++++--- doc/src/sgml/user-manag.sgml | 6 ++++-- 3 files changed, 16 insertions(+), 8 deletions(-) diff --git a/doc/src/sgml/ref/grant.sgml b/doc/src/sgml/ref/grant.sgml index 9b1ed1aebae..d846cd07fde 100644 --- a/doc/src/sgml/ref/grant.sgml +++ b/doc/src/sgml/ref/grant.sgml @@ -1,5 +1,5 @@ @@ -50,8 +50,7 @@ GRANT { CREATE | ALL [ PRIVILEGES ] } ON TABLESPACE tablespacename [, ...] TO { username | GROUP groupname | PUBLIC } [, ...] [ WITH GRANT OPTION ] -GRANT role [, ...] - TO { username | GROUP groupname | PUBLIC } [, ...] [ WITH ADMIN OPTION ] +GRANT role [, ...] TO username [, ...] [ WITH ADMIN OPTION ] @@ -325,6 +324,12 @@ GRANT role [, ...] Roles having CREATEROLE privilege can grant or revoke membership in any role that is not a superuser. + + + Unlike the case with privileges, membership in a role cannot be granted + to PUBLIC. Note also that this form of the command does not + allow the noise word GROUP. + diff --git a/doc/src/sgml/ref/revoke.sgml b/doc/src/sgml/ref/revoke.sgml index bccb8010b5f..df38437436f 100644 --- a/doc/src/sgml/ref/revoke.sgml +++ b/doc/src/sgml/ref/revoke.sgml @@ -1,5 +1,5 @@ @@ -65,8 +65,7 @@ REVOKE [ GRANT OPTION FOR ] [ CASCADE | RESTRICT ] REVOKE [ ADMIN OPTION FOR ] - role [, ...] - FROM { username | GROUP groupname | PUBLIC } [, ...] + role [, ...] FROM username [, ...] [ CASCADE | RESTRICT ] @@ -119,6 +118,8 @@ REVOKE [ ADMIN OPTION FOR ] When revoking membership in a role, GRANT OPTION is instead called ADMIN OPTION, but the behavior is similar. + Note also that this form of the command does not + allow the noise word GROUP. diff --git a/doc/src/sgml/user-manag.sgml b/doc/src/sgml/user-manag.sgml index 41e60200919..c86837d1f7a 100644 --- a/doc/src/sgml/user-manag.sgml +++ b/doc/src/sgml/user-manag.sgml @@ -1,4 +1,4 @@ - + Database Roles and Privileges @@ -375,7 +375,9 @@ REVOKE group_role FROM role1 You can grant membership to other group roles, too (since there isn't really any distinction between group roles and non-group roles). The - only restriction is that you can't set up circular membership loops. + database will not let you set up circular membership loops. Also, + it is not permitted to grant membership in a role to + PUBLIC. -- 2.39.5