Skip to content

Commit 6b7c966

Browse files
committed
chore: fix pgbouncer tests
1 parent e564965 commit 6b7c966

File tree

1 file changed

+8
-6
lines changed

1 file changed

+8
-6
lines changed

nix/tests/expected/pgbouncer.out

Lines changed: 8 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -8,9 +8,9 @@ join
88
pg_roles r on n.nspowner = r.oid
99
where
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
@@ -28,8 +28,8 @@ where
2828
n.nspname = 'pgbouncer'
2929
order 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
6060
JOIN schema_obj s ON s.oid = p.pronamespace
6161
CROSS JOIN LATERAL aclexplode(p.proacl) AS acl
6262
ORDER 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+

0 commit comments

Comments
 (0)