Skip to content

Commit 89443bf

Browse files
authored
Reduce test run time (#10390)
1 parent dac2a7e commit 89443bf

File tree

1 file changed

+6
-6
lines changed

1 file changed

+6
-6
lines changed

datafusion/core/tests/fuzz_cases/join_fuzz.rs

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -79,20 +79,20 @@ async fn test_full_join_1k() {
7979
}
8080

8181
#[tokio::test]
82-
async fn test_semi_join_10k() {
82+
async fn test_semi_join_1k() {
8383
run_join_test(
84-
make_staggered_batches(10000),
85-
make_staggered_batches(10000),
84+
make_staggered_batches(1000),
85+
make_staggered_batches(1000),
8686
JoinType::LeftSemi,
8787
)
8888
.await
8989
}
9090

9191
#[tokio::test]
92-
async fn test_anti_join_10k() {
92+
async fn test_anti_join_1k() {
9393
run_join_test(
94-
make_staggered_batches(10000),
95-
make_staggered_batches(10000),
94+
make_staggered_batches(1000),
95+
make_staggered_batches(1000),
9696
JoinType::LeftAnti,
9797
)
9898
.await

0 commit comments

Comments
 (0)