From 4c639ff804fe90f21c95eab53e542f938ea7cee0 Mon Sep 17 00:00:00 2001 From: comphead Date: Thu, 18 Jul 2024 09:01:32 -0700 Subject: [PATCH] Enable LeftAnti filtered fuzz tests. Add git reference --- datafusion/core/tests/fuzz_cases/join_fuzz.rs | 2 ++ 1 file changed, 2 insertions(+) diff --git a/datafusion/core/tests/fuzz_cases/join_fuzz.rs b/datafusion/core/tests/fuzz_cases/join_fuzz.rs index 257a652bc385..604c1f93e55e 100644 --- a/datafusion/core/tests/fuzz_cases/join_fuzz.rs +++ b/datafusion/core/tests/fuzz_cases/join_fuzz.rs @@ -226,6 +226,7 @@ async fn test_semi_join_1k() { #[tokio::test] async fn test_semi_join_1k_filtered() { // NLJ vs HJ gives wrong result + // Tracked in https://github.com/apache/datafusion/issues/11537 JoinFuzzTestCase::new( make_staggered_batches(1000), make_staggered_batches(1000), @@ -251,6 +252,7 @@ async fn test_anti_join_1k() { #[tokio::test] async fn test_anti_join_1k_filtered() { // NLJ vs HJ gives wrong result + // Tracked in https://github.com/apache/datafusion/issues/11537 JoinFuzzTestCase::new( make_staggered_batches(1000), make_staggered_batches(1000),