After changing the default privileges for a Postgres database object, how can you view them?
For example, if you grant all role_name privileges to all tables created in the schema_name :
ALTER DEFAULT PRIVILEGES IN SCHEMA schema_name GRANT ALL ON TABLES TO role_name;
sql postgresql privileges
Clint pachl
source share