mirror of
https://github.com/postgres/postgres.git
synced 2025-05-25 00:04:05 -04:00
doc: Note exceptions for SET ROLE's effect on privilege checks.
The documentation for SET ROLE states that superusers who switch to a non-superuser role lose their superuser privileges. While this is true for most commands, there are exceptions such as SET ROLE and SET SESSION AUTHORIZATION, which continue to use the current session user and the authenticated user, respectively. Furthermore, the description of this command already describes its effect, so it is arguably unnecessary to include this special case. This commit removes the note about the superuser case and adds a sentence about the aforementioned exceptions to the description. Co-authored-by: Yurii Rashkovskii Reviewed-by: Shubham Khanna, Robert Haas, Michael Paquier Discussion: https://postgr.es/m/CA%2BRLCQysHtME0znk2KUMJN343ksboSRQSU-hCnOjesX6VK300Q%40mail.gmail.com
This commit is contained in:
parent
e0df80828a
commit
953cf49e16
@ -37,7 +37,10 @@ RESET ROLE
|
||||
written as either an identifier or a string literal.
|
||||
After <command>SET ROLE</command>, permissions checking for SQL commands
|
||||
is carried out as though the named role were the one that had logged
|
||||
in originally.
|
||||
in originally. Note that <command>SET ROLE</command> and
|
||||
<command>SET SESSION AUTHORIZATION</command> are exceptions; permissions
|
||||
checks for those continue to use the current session user and the initial
|
||||
session user (the <firstterm>authenticated user</firstterm>), respectively.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
@ -88,11 +91,6 @@ RESET ROLE
|
||||
exercised either with or without <literal>SET ROLE</literal>.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
Note that when a superuser chooses to <command>SET ROLE</command> to a
|
||||
non-superuser role, they lose their superuser privileges.
|
||||
</para>
|
||||
|
||||
<para>
|
||||
<command>SET ROLE</command> has effects comparable to
|
||||
<link linkend="sql-set-session-authorization"><command>SET SESSION AUTHORIZATION</command></link>, but the privilege
|
||||
|
Loading…
x
Reference in New Issue
Block a user