diff --git a/src/test/regress/expected/multi_replicate_reference_table.out b/src/test/regress/expected/multi_replicate_reference_table.out index e239a8c78..23e777bd1 100644 --- a/src/test/regress/expected/multi_replicate_reference_table.out +++ b/src/test/regress/expected/multi_replicate_reference_table.out @@ -669,7 +669,7 @@ ORDER BY shardid, nodeport; (0 rows) -- verify constraints have been created on the new node -SELECT run_command_on_workers('select count(*) from pg_constraint where contype=''f'' AND conname like ''ref_table%'';'); +SELECT run_command_on_workers('select count(*) from pg_constraint where contype=''f'' AND conname similar to ''ref_table%\d'';'); run_command_on_workers --------------------------------------------------------------------- (localhost,57637,t,2) diff --git a/src/test/regress/multi_1_schedule b/src/test/regress/multi_1_schedule index 11e763400..a370c7733 100644 --- a/src/test/regress/multi_1_schedule +++ b/src/test/regress/multi_1_schedule @@ -48,8 +48,6 @@ test: multi_read_from_secondaries # ---------- # multi_citus_tools tests utility functions written for citus tools # ---------- -test: check_mx -test: turn_mx_off test: multi_citus_tools # ---------- @@ -57,7 +55,6 @@ test: multi_citus_tools # multi_remove_node_reference_table tests metadata changes after master_remove_node # ---------- test: multi_replicate_reference_table -test: turn_mx_on test: multi_remove_node_reference_table # ---------- diff --git a/src/test/regress/sql/multi_replicate_reference_table.sql b/src/test/regress/sql/multi_replicate_reference_table.sql index 497f38619..539976233 100644 --- a/src/test/regress/sql/multi_replicate_reference_table.sql +++ b/src/test/regress/sql/multi_replicate_reference_table.sql @@ -451,7 +451,7 @@ WHERE ORDER BY shardid, nodeport; -- verify constraints have been created on the new node -SELECT run_command_on_workers('select count(*) from pg_constraint where contype=''f'' AND conname like ''ref_table%'';'); +SELECT run_command_on_workers('select count(*) from pg_constraint where contype=''f'' AND conname similar to ''ref_table%\d'';'); DROP TABLE ref_table_1, ref_table_2, ref_table_3;