From ecc37b902805dc83deb4fd25dd203fe782659360 Mon Sep 17 00:00:00 2001 From: Jelte Fennema Date: Thu, 13 Oct 2022 09:33:37 +0200 Subject: [PATCH] Fix flakyness in multi_partitioning (#6427) In CI multi_partitioning sometimes fails with this error: ```diff SELECT citus_remove_node('localhost', :master_port); - citus_remove_node ---------------------------------------------------------------------- - -(1 row) - +ERROR: tuple concurrently deleted -- d) invalid tables for helper UDFs ``` Source: https://app.circleci.com/pipelines/github/citusdata/citus/27993/workflows/685e5b20-c923-43e5-8a0d-b932ef4c4914/jobs/839466 This PR avoids this concurrency issue by not running the multi_partitioning test in parallel with other tests. --- src/test/regress/multi_1_schedule | 3 ++- 1 file changed, 2 insertions(+), 1 deletion(-) diff --git a/src/test/regress/multi_1_schedule b/src/test/regress/multi_1_schedule index 2d77023dd..d221ea004 100644 --- a/src/test/regress/multi_1_schedule +++ b/src/test/regress/multi_1_schedule @@ -85,7 +85,8 @@ test: ensure_no_intermediate_data_leak # Tests for partitioning support # ---------- test: multi_partitioning_utils replicated_partitioned_table -test: multi_partitioning partitioning_issue_3970 +test: multi_partitioning +test: partitioning_issue_3970 test: drop_partitioned_table test: multi_fix_partition_shard_index_names test: partition_wise_join