From 36c2c1634ea7bd728ff0001c4c7765f0cf13359f Mon Sep 17 00:00:00 2001 From: =?UTF-8?q?C=C3=A9dric=20Villemain?= Date: Mon, 10 Mar 2025 18:16:10 +0100 Subject: [PATCH] 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. --- src/test/regress/expected/grant_on_table_propagation.out | 2 ++ 1 file changed, 2 insertions(+) diff --git a/src/test/regress/expected/grant_on_table_propagation.out b/src/test/regress/expected/grant_on_table_propagation.out index b3418f252..dafc5d2e7 100644 --- a/src/test/regress/expected/grant_on_table_propagation.out +++ b/src/test/regress/expected/grant_on_table_propagation.out @@ -359,6 +359,8 @@ ORDER BY 1, 2; \c - - - :worker_1_port SET search_path TO grant_on_table; 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 \c - - - :master_port SET search_path TO grant_on_table;