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 8
8
pg_roles r on n.nspowner = r.oid
9
9
where
10
10
n.nspname = 'pgbouncer';
11
- schema_name | owner
12
- -------------+----------------
13
- pgbouncer | supabase_admin
11
+ schema_name | owner
12
+ -------------+-----------
13
+ pgbouncer | pgbouncer
14
14
(1 row)
15
15
16
16
-- pgbouncer schema functions with owners
28
28
n.nspname = 'pgbouncer'
29
29
order by
30
30
p.proname;
31
- schema_name | function_name | owner
32
- -------------+---------------+---------------------
31
+ schema_name | function_name | owner
32
+ -------------+---------------+----------------
33
33
pgbouncer | get_auth | supabase_admin
34
34
(1 row)
35
35
@@ -60,8 +60,10 @@ FROM pg_proc p
60
60
JOIN schema_obj s ON s.oid = p.pronamespace
61
61
CROSS JOIN LATERAL aclexplode(p.proacl) AS acl
62
62
ORDER BY object_name, grantee, privilege_type;
63
- schema | object_name | grantee | privilege_type
63
+ schema | object_name | grantee | privilege_type
64
64
-----------+-------------+----------------+----------------
65
65
pgbouncer | get_auth | pgbouncer | EXECUTE
66
66
pgbouncer | get_auth | postgres | EXECUTE
67
67
pgbouncer | get_auth | supabase_admin | EXECUTE
68
+ (3 rows)
69
+
You can’t perform that action at this time.
0 commit comments