mirror of
https://github.com/postgres/postgres.git
synced 2025-06-13 07:41:39 +03:00
Allow granting SET and ALTER SYSTEM privileges on GUC parameters.
This patch allows "PGC_SUSET" parameters to be set by non-superusers if they have been explicitly granted the privilege to do so. The privilege to perform ALTER SYSTEM SET/RESET on a specific parameter can also be granted. Such privileges are cluster-wide, not per database. They are tracked in a new shared catalog, pg_parameter_acl. Granting and revoking these new privileges works as one would expect. One caveat is that PGC_USERSET GUCs are unaffected by the SET privilege --- one could wish that those were handled by a revocable grant to PUBLIC, but they are not, because we couldn't make it robust enough for GUCs defined by extensions. Mark Dilger, reviewed at various times by Andrew Dunstan, Robert Haas, Joshua Brindle, and myself Discussion: https://postgr.es/m/3D691E20-C1D5-4B80-8BA5-6BEB63AF3029@enterprisedb.com
This commit is contained in:
@ -940,6 +940,7 @@ EventTriggerSupportsObjectType(ObjectType obtype)
|
||||
case OBJECT_DATABASE:
|
||||
case OBJECT_TABLESPACE:
|
||||
case OBJECT_ROLE:
|
||||
case OBJECT_PARAMETER_ACL:
|
||||
/* no support for global objects */
|
||||
return false;
|
||||
case OBJECT_EVENT_TRIGGER:
|
||||
@ -1015,6 +1016,7 @@ EventTriggerSupportsObjectClass(ObjectClass objclass)
|
||||
case OCLASS_DATABASE:
|
||||
case OCLASS_TBLSPACE:
|
||||
case OCLASS_ROLE:
|
||||
case OCLASS_PARAMETER_ACL:
|
||||
/* no support for global objects */
|
||||
return false;
|
||||
case OCLASS_EVENT_TRIGGER:
|
||||
@ -2042,6 +2044,8 @@ stringify_grant_objtype(ObjectType objtype)
|
||||
return "LARGE OBJECT";
|
||||
case OBJECT_SCHEMA:
|
||||
return "SCHEMA";
|
||||
case OBJECT_PARAMETER_ACL:
|
||||
return "PARAMETER";
|
||||
case OBJECT_PROCEDURE:
|
||||
return "PROCEDURE";
|
||||
case OBJECT_ROUTINE:
|
||||
@ -2153,6 +2157,7 @@ stringify_adefprivs_objtype(ObjectType objtype)
|
||||
case OBJECT_OPCLASS:
|
||||
case OBJECT_OPERATOR:
|
||||
case OBJECT_OPFAMILY:
|
||||
case OBJECT_PARAMETER_ACL:
|
||||
case OBJECT_POLICY:
|
||||
case OBJECT_PUBLICATION:
|
||||
case OBJECT_PUBLICATION_NAMESPACE:
|
||||
|
Reference in New Issue
Block a user