mirror of https://github.com/citusdata/citus.git
Update test related to DDL on worker
With release-13.0 it's not allowed to execute GRANT on COLUMNS on the worker node anymore, updated tests accordingly.pull/7918/head
parent
bdb4474319
commit
36c2c1634e
|
@ -359,6 +359,8 @@ ORDER BY 1, 2;
|
||||||
\c - - - :worker_1_port
|
\c - - - :worker_1_port
|
||||||
SET search_path TO grant_on_table;
|
SET search_path TO grant_on_table;
|
||||||
GRANT SELECT (a, b) ON ref_table TO grant_user_0;
|
GRANT SELECT (a, b) ON ref_table TO grant_user_0;
|
||||||
|
ERROR: operation is not allowed on this node
|
||||||
|
HINT: Connect to the coordinator and run it again.
|
||||||
-- check on coordinator and workers
|
-- check on coordinator and workers
|
||||||
\c - - - :master_port
|
\c - - - :master_port
|
||||||
SET search_path TO grant_on_table;
|
SET search_path TO grant_on_table;
|
||||||
|
|
Loading…
Reference in New Issue