From 5ac02241c2865168b1db964373203f5fffbeb1cf Mon Sep 17 00:00:00 2001 From: Jan Nidzwetzki Date: Wed, 13 Mar 2024 16:21:34 +0100 Subject: [PATCH] Move cagg_invalidation to solo tests The cagg_invalidation test stops the background workers and performs tests with invalidations. However, they the test was running in a parallel group, and background workers could be activated by other tests, leading to flaky test behavior. This PR moves the cagg_invalidation tests to the solo tests. --- tsl/test/sql/CMakeLists.txt | 1 + 1 file changed, 1 insertion(+) diff --git a/tsl/test/sql/CMakeLists.txt b/tsl/test/sql/CMakeLists.txt index 0a7bc907966..19a6b1bed2a 100644 --- a/tsl/test/sql/CMakeLists.txt +++ b/tsl/test/sql/CMakeLists.txt @@ -121,6 +121,7 @@ set(SOLO_TESTS cagg_bgw cagg_ddl-${PG_VERSION_MAJOR} cagg_dump + cagg_invalidation move reorder telemetry_stats-${PG_VERSION_MAJOR})