From: | Michael Paquier <michael(at)paquier(dot)xyz> |
---|---|
To: | pgsql-committers(at)lists(dot)postgresql(dot)org |
Subject: | pgsql: Add pg_get_acl() to get the ACL for a database object |
Date: | 2024-07-04 08:09:25 |
Message-ID: | E1sPHWu-000GPc-0z@gemulon.postgresql.org |
Views: | Raw Message | Whole Thread | Download mbox | Resend email |
Thread: | |
Lists: | pgsql-committers pgsql-hackers |
Add pg_get_acl() to get the ACL for a database object
This function returns the ACL for a database object, specified by
catalog OID and object OID. This is useful to be able to
retrieve the ACL associated to an object specified with a
(class_id,objid) couple, similarly to the other functions for object
identification, when joined with pg_depend or pg_shdepend.
Original idea by Álvaro Herrera.
Bump catalog version.
Author: Joel Jacobson
Reviewed-by: Isaac Morland, Michael Paquier, Ranier Vilela
Discussion: https://postgr.es/m/80b16434-b9b1-4c3d-8f28-569f21c2c102@app.fastmail.com
Branch
------
master
Details
-------
https://git.postgresql.org/pg/commitdiff/4564f1cebd437d93590027c9ff46ef60bc3286ae
Modified Files
--------------
doc/src/sgml/func.sgml | 41 +++++++++++++++++++++++++++
src/backend/catalog/objectaddress.c | 48 ++++++++++++++++++++++++++++++++
src/include/catalog/catversion.h | 2 +-
src/include/catalog/pg_proc.dat | 5 ++++
src/test/regress/expected/privileges.out | 29 +++++++++++++++++++
src/test/regress/sql/privileges.sql | 6 ++++
6 files changed, 130 insertions(+), 1 deletion(-)
From | Date | Subject | |
---|---|---|---|
Next Message | Daniel Gustafsson | 2024-07-04 10:08:30 | pgsql: doc: Specify when ssl_prefer_server_ciphers was added |
Previous Message | Amit Langote | 2024-07-04 07:37:10 | pgsql: SQL/JSON: Fix some obsolete comments. |
From | Date | Subject | |
---|---|---|---|
Next Message | Daniel Gustafsson | 2024-07-04 08:17:49 | Re: Additional minor pg_dump cleanups |
Previous Message | Hayato Kuroda (Fujitsu) | 2024-07-04 08:04:47 | RE: Slow catchup of 2PC (twophase) transactions on replica in LR |