File tree Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Expand file tree Collapse file tree 1 file changed +8
-6
lines changed Original file line number Diff line number Diff line change 88 pg_roles r on n.nspowner = r.oid
99where
1010 n.nspname = 'pgbouncer';
11- schema_name | owner
12- -------------+----------------
13- pgbouncer | supabase_admin
11+ schema_name | owner
12+ -------------+-----------
13+ pgbouncer | pgbouncer
1414(1 row)
1515
1616-- pgbouncer schema functions with owners
2828 n.nspname = 'pgbouncer'
2929order by
3030 p.proname;
31- schema_name | function_name | owner
32- -------------+---------------+---------------------
31+ schema_name | function_name | owner
32+ -------------+---------------+----------------
3333 pgbouncer | get_auth | supabase_admin
3434(1 row)
3535
@@ -60,8 +60,10 @@ FROM pg_proc p
6060JOIN schema_obj s ON s.oid = p.pronamespace
6161CROSS JOIN LATERAL aclexplode(p.proacl) AS acl
6262ORDER BY object_name, grantee, privilege_type;
63- schema | object_name | grantee | privilege_type
63+ schema | object_name | grantee | privilege_type
6464-----------+-------------+----------------+----------------
6565 pgbouncer | get_auth | pgbouncer | EXECUTE
6666 pgbouncer | get_auth | postgres | EXECUTE
6767 pgbouncer | get_auth | supabase_admin | EXECUTE
68+ (3 rows)
69+
You can’t perform that action at this time.
0 commit comments