This is an automated email from the ASF dual-hosted git repository.

alamb pushed a commit to branch main
in repository https://gitbox.apache.org/repos/asf/datafusion.git


The following commit(s) were added to refs/heads/main by this push:
     new 89443bff20 Reduce test run time (#10390)
89443bff20 is described below

commit 89443bff20015ef6c7646ca32754ece8c4093910
Author: Mustafa Akur <[email protected]>
AuthorDate: Mon May 6 20:14:43 2024 +0300

    Reduce test run time (#10390)
---
 datafusion/core/tests/fuzz_cases/join_fuzz.rs | 12 ++++++------
 1 file changed, 6 insertions(+), 6 deletions(-)

diff --git a/datafusion/core/tests/fuzz_cases/join_fuzz.rs 
b/datafusion/core/tests/fuzz_cases/join_fuzz.rs
index fbfa0ffc19..824f1eec4a 100644
--- a/datafusion/core/tests/fuzz_cases/join_fuzz.rs
+++ b/datafusion/core/tests/fuzz_cases/join_fuzz.rs
@@ -79,20 +79,20 @@ async fn test_full_join_1k() {
 }
 
 #[tokio::test]
-async fn test_semi_join_10k() {
+async fn test_semi_join_1k() {
     run_join_test(
-        make_staggered_batches(10000),
-        make_staggered_batches(10000),
+        make_staggered_batches(1000),
+        make_staggered_batches(1000),
         JoinType::LeftSemi,
     )
     .await
 }
 
 #[tokio::test]
-async fn test_anti_join_10k() {
+async fn test_anti_join_1k() {
     run_join_test(
-        make_staggered_batches(10000),
-        make_staggered_batches(10000),
+        make_staggered_batches(1000),
+        make_staggered_batches(1000),
         JoinType::LeftAnti,
     )
     .await


---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]

Reply via email to