This is an automated email from the ASF dual-hosted git repository. yjhjstz pushed a commit to branch main in repository https://gitbox.apache.org/repos/asf/cloudberry.git
commit e8c2b52cfb89f7db5ce4a60ee6f3a6b773c6c302 Author: David Kimura <[email protected]> AuthorDate: Tue Nov 8 11:53:40 2022 -0800 Workaround flaky test "dispatch" (#14429) Test case "dispatch started failing on PLANNER CI after commit a7ca9e27. Using github Issue #14428 for tracking. It seems somehow triggered by the test added in bfv_partition in aforementioned commit. --- src/test/regress/expected/bfv_partition.out | 1 + src/test/regress/sql/bfv_partition.sql | 1 + 2 files changed, 2 insertions(+) diff --git a/src/test/regress/expected/bfv_partition.out b/src/test/regress/expected/bfv_partition.out index ea4f0a2589..0e6191d471 100644 --- a/src/test/regress/expected/bfv_partition.out +++ b/src/test/regress/expected/bfv_partition.out @@ -3107,6 +3107,7 @@ WITH cte AS ( ---- (0 rows) +DROP TABLE a_partition_table_used_in_cte_test; -- CLEANUP -- start_ignore drop schema if exists bfv_partition cascade; diff --git a/src/test/regress/sql/bfv_partition.sql b/src/test/regress/sql/bfv_partition.sql index 604bec7a82..bf705af128 100644 --- a/src/test/regress/sql/bfv_partition.sql +++ b/src/test/regress/sql/bfv_partition.sql @@ -1682,6 +1682,7 @@ ANALYZE a_partition_table_used_in_cte_test; WITH cte AS ( SELECT * FROM a_partition_table_used_in_cte_test WHERE c1 < 2 ) SELECT * FROM cte WHERE c1 = 1; +DROP TABLE a_partition_table_used_in_cte_test; -- CLEANUP -- start_ignore --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
