mirror of https://github.com/citusdata/citus.git
Fixes test errors
parent
890429e7fc
commit
5b910d5c36
|
@ -224,7 +224,7 @@ SET citus.enable_create_role_propagation TO ON;
|
|||
SET ROLE dist_role_1;
|
||||
GRANT non_dist_role_1 TO non_dist_role_2;
|
||||
SET citus.enable_create_role_propagation TO OFF;
|
||||
GRANT dist_role_1 TO dist_role_2;
|
||||
GRANT dist_role_1 TO dist_role_2 granted by postgres;
|
||||
RESET ROLE;
|
||||
SET citus.enable_create_role_propagation TO ON;
|
||||
GRANT dist_role_3 TO non_dist_role_3;
|
||||
|
@ -275,7 +275,7 @@ SELECT rolname FROM pg_authid WHERE rolname LIKE '%dist\_%' ORDER BY 1;
|
|||
SELECT roleid::regrole::text AS role, member::regrole::text, grantor::regrole::text, admin_option FROM pg_auth_members WHERE roleid::regrole::text LIKE '%dist\_%' ORDER BY 1, 2;
|
||||
role | member | grantor | admin_option
|
||||
---------------------------------------------------------------------
|
||||
dist_role_1 | dist_role_2 | dist_role_1 | f
|
||||
dist_role_1 | dist_role_2 | postgres | f
|
||||
non_dist_role_4 | dist_role_4 | postgres | f
|
||||
(2 rows)
|
||||
|
||||
|
|
|
@ -99,7 +99,7 @@ GRANT non_dist_role_1 TO non_dist_role_2;
|
|||
|
||||
SET citus.enable_create_role_propagation TO OFF;
|
||||
|
||||
GRANT dist_role_1 TO dist_role_2;
|
||||
GRANT dist_role_1 TO dist_role_2 granted by postgres;
|
||||
|
||||
RESET ROLE;
|
||||
|
||||
|
|
Loading…
Reference in New Issue