Skip to content

Commit 368bf20

Browse files
committed
fix: use inner join
1 parent 2ce63b0 commit 368bf20

File tree

2 files changed

+2
-2
lines changed

2 files changed

+2
-2
lines changed

nix/tests/sql/z_15_roles.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -5,7 +5,7 @@ select
55
m.admin_option
66
from
77
pg_roles r
8-
left join
8+
join
99
pg_auth_members m on r.oid = m.member
1010
left join
1111
pg_roles g on m.roleid = g.oid

nix/tests/sql/z_17_roles.sql

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -28,7 +28,7 @@ select
2828
m.admin_option
2929
from
3030
pg_roles r
31-
left join
31+
join
3232
pg_auth_members m on r.oid = m.member
3333
left join
3434
pg_roles g on m.roleid = g.oid

0 commit comments

Comments
 (0)