From 44947d5634a6c043e0c0d4706e177abcc70557aa Mon Sep 17 00:00:00 2001 From: Onder Kalaci Date: Wed, 10 Aug 2022 17:44:03 +0200 Subject: [PATCH] This is not supported in PG15 so fix earlier --- src/test/regress/sql/coordinator_evaluation_modify.sql | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/src/test/regress/sql/coordinator_evaluation_modify.sql b/src/test/regress/sql/coordinator_evaluation_modify.sql index a4c9f75b5..d4194a457 100644 --- a/src/test/regress/sql/coordinator_evaluation_modify.sql +++ b/src/test/regress/sql/coordinator_evaluation_modify.sql @@ -390,7 +390,7 @@ EXECUTE fast_path_router_with_two_params(('test', 2)::user_data, 14); EXECUTE fast_path_router_with_two_params(('test', 2)::user_data, 16); -PREPARE fast_path_router_with_only_function AS DELETE FROM user_info_data WHERE get_constant_stable() = 2AND user_id = 3 RETURNING user_id, u_data; +PREPARE fast_path_router_with_only_function AS DELETE FROM user_info_data WHERE get_constant_stable() = 2 AND user_id = 3 RETURNING user_id, u_data; INSERT INTO user_info_data (user_id, u_data) VALUES (3, ('test', 2)::user_data); EXECUTE fast_path_router_with_only_function; INSERT INTO user_info_data (user_id, u_data) VALUES (3, ('test', 2)::user_data);