mirror of
https://github.com/postgres/postgres.git
synced 2025-11-06 07:49:08 +03:00
Rename session_auth_is_superuser to current_role_is_superuser.
This variable might've been accurately named when it was added inea886339b8, but the name hasn't been accurate since at least the introduction of SET ROLE ine5d6b91220. The corresponding documentation was fixed ineedb068c0a. This commit renames the variable accordingly. Suggested-by: Joseph Koshakow Discussion: https://postgr.es/m/CAAvxfHc-HHzONQ2oXdvhFF9ayRnidPwK%2BfVBhRzaBWYYLVQL-g%40mail.gmail.com
This commit is contained in:
@@ -511,7 +511,7 @@ bool check_function_bodies = true;
|
||||
* details.
|
||||
*/
|
||||
bool default_with_oids = false;
|
||||
bool session_auth_is_superuser;
|
||||
bool current_role_is_superuser;
|
||||
|
||||
int log_min_error_statement = ERROR;
|
||||
int log_min_messages = WARNING;
|
||||
@@ -1037,13 +1037,16 @@ struct config_bool ConfigureNamesBool[] =
|
||||
NULL, NULL, NULL
|
||||
},
|
||||
{
|
||||
/* Not for general use --- used by SET SESSION AUTHORIZATION */
|
||||
/*
|
||||
* Not for general use --- used by SET SESSION AUTHORIZATION and SET
|
||||
* ROLE
|
||||
*/
|
||||
{"is_superuser", PGC_INTERNAL, UNGROUPED,
|
||||
gettext_noop("Shows whether the current user is a superuser."),
|
||||
NULL,
|
||||
GUC_REPORT | GUC_NO_SHOW_ALL | GUC_NO_RESET_ALL | GUC_NOT_IN_SAMPLE | GUC_DISALLOW_IN_FILE
|
||||
},
|
||||
&session_auth_is_superuser,
|
||||
¤t_role_is_superuser,
|
||||
false,
|
||||
NULL, NULL, NULL
|
||||
},
|
||||
|
||||
Reference in New Issue
Block a user