mirror of https://github.com/citusdata/citus.git
Fix typos in tests that fail on PG15
parent
44947d5634
commit
294400b2eb
|
@ -1239,7 +1239,7 @@ NOTICE: executing the command locally: DELETE FROM coordinator_evaluation_combi
|
|||
16 | (test,2)
|
||||
(1 row)
|
||||
|
||||
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);
|
||||
NOTICE: executing the command locally: INSERT INTO coordinator_evaluation_combinations_modify.user_info_data_1180001 (user_id, u_data) VALUES (3, ROW('test'::text, 2)::coordinator_evaluation_combinations_modify.user_data)
|
||||
EXECUTE fast_path_router_with_only_function;
|
||||
|
@ -1767,7 +1767,7 @@ NOTICE: executing the command locally: DELETE FROM coordinator_evaluation_combi
|
|||
16 | (test,2)
|
||||
(1 row)
|
||||
|
||||
PREPARE router_with_only_function AS DELETE FROM user_info_data WHERE get_constant_stable() = 2AND user_id = 3 RETURNING user_id, u_data;
|
||||
PREPARE 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);
|
||||
NOTICE: executing the command locally: INSERT INTO coordinator_evaluation_combinations_modify.user_info_data_1180001 (user_id, u_data) VALUES (3, ROW('test'::text, 2)::coordinator_evaluation_combinations_modify.user_data)
|
||||
EXECUTE router_with_only_function;
|
||||
|
|
|
@ -526,7 +526,7 @@ EXECUTE router_with_two_params(('test', 2)::user_data, 14);
|
|||
EXECUTE router_with_two_params(('test', 2)::user_data, 16);
|
||||
|
||||
|
||||
PREPARE router_with_only_function AS DELETE FROM user_info_data WHERE get_constant_stable() = 2AND user_id = 3 RETURNING user_id, u_data;
|
||||
PREPARE 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 router_with_only_function;
|
||||
INSERT INTO user_info_data (user_id, u_data) VALUES (3, ('test', 2)::user_data);
|
||||
|
|
Loading…
Reference in New Issue