diff options
author | Bruce Momjian <bruce@momjian.us> | 2023-11-03 09:51:52 -0400 |
---|---|---|
committer | Bruce Momjian <bruce@momjian.us> | 2023-11-03 09:51:52 -0400 |
commit | 272db03bb9d5fbf55cfe39776973dae72cb4bec7 (patch) | |
tree | cac5fa837a095132b7c8ea57278401b73b5ce2d0 | |
parent | 6e1cca5113487bb9ef4daa1bb2833c6333466410 (diff) | |
download | postgresql-272db03bb9d5fbf55cfe39776973dae72cb4bec7.tar.gz postgresql-272db03bb9d5fbf55cfe39776973dae72cb4bec7.zip |
doc: ALTER DEFAULT PRIVILEGES does not affect inherited roles
Reported-by: Jordi GutiƩrrez Hermoso
Discussion: https://postgr.es/m/72652d72e1816bfc3c05d40f9e0e0373d07823c8.camel@octave.org
Co-authored-by: Laurenz Albe
Backpatch-through: 11
-rw-r--r-- | doc/src/sgml/ref/alter_default_privileges.sgml | 6 |
1 files changed, 5 insertions, 1 deletions
diff --git a/doc/src/sgml/ref/alter_default_privileges.sgml b/doc/src/sgml/ref/alter_default_privileges.sgml index 4a4878c4380..a2849c8c770 100644 --- a/doc/src/sgml/ref/alter_default_privileges.sgml +++ b/doc/src/sgml/ref/alter_default_privileges.sgml @@ -137,7 +137,11 @@ REVOKE [ GRANT OPTION FOR ] <listitem> <para> The name of an existing role of which the current role is a member. - If <literal>FOR ROLE</literal> is omitted, the current role is assumed. + Default access privileges are not inherited, so member roles + must use <command>SET ROLE</command> to access these privileges, + or <command>ALTER DEFAULT PRIVILEGES</command> must be run for + each member role. If <literal>FOR ROLE</literal> is omitted, + the current role is assumed. </para> </listitem> </varlistentry> |