comphead commented on code in PR #12082: URL: https://github.com/apache/datafusion/pull/12082#discussion_r1723573863
########## datafusion/core/tests/fuzz_cases/join_fuzz.rs: ########## @@ -250,20 +248,22 @@ async fn test_anti_join_1k() { } #[tokio::test] -#[ignore] +//#[ignore] // flaky test giving 1 rows difference sometimes // https://github.com/apache/datafusion/issues/11555 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), - JoinType::LeftAnti, - Some(Box::new(col_lt_col_filter)), - ) - .run_test(&[JoinTestType::HjSmj], false) - .await + for i in 0..1000 { Review Comment: if I run this test 1000 times there is a possibility that test gonna fail. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org