From dc35f558e41620af918c03dcb05d562eb2b5dfe3 Mon Sep 17 00:00:00 2001 From: Yaron Gvili Date: Wed, 28 Jun 2023 11:19:35 -0400 Subject: [PATCH] GH-36331: [C++][CI] Sporadic errors in `arrow-acero-asof-join-node-test` --- cpp/src/arrow/acero/asof_join_node_test.cc | 1 + 1 file changed, 1 insertion(+) diff --git a/cpp/src/arrow/acero/asof_join_node_test.cc b/cpp/src/arrow/acero/asof_join_node_test.cc index c62d0c0b85f..96c00e6a4bd 100644 --- a/cpp/src/arrow/acero/asof_join_node_test.cc +++ b/cpp/src/arrow/acero/asof_join_node_test.cc @@ -1592,6 +1592,7 @@ T GetEnvValue(const std::string& var, T default_value) { } // namespace TEST(AsofJoinTest, BackpressureWithBatchesGen) { + GTEST_SKIP() << "Skipping - see GH-36331"; int num_batches = GetEnvValue("ARROW_BACKPRESSURE_DEMO_NUM_BATCHES", 20); int batch_size = GetEnvValue("ARROW_BACKPRESSURE_DEMO_BATCH_SIZE", 1); return TestBackpressure(MakeIntegerBatchGenForTest, num_batches, batch_size);