Skip to content

Commit d3cacac

Browse files
authored
Fix slow join test (#16796)
1 parent 63dd4e2 commit d3cacac

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

datafusion/physical-plan/src/joins/nested_loop_join.rs

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -1818,7 +1818,7 @@ pub(crate) mod tests {
18181818
join_type: JoinType,
18191819
#[values(1, 100, 1000)] left_batch_size: usize,
18201820
#[values(1, 100, 1000)] right_batch_size: usize,
1821-
#[values(2, 10000)] batch_size: usize,
1821+
#[values(1001, 10000)] batch_size: usize,
18221822
) -> Result<()> {
18231823
let left_columns = generate_columns(3, 1000);
18241824
let left = build_table(

0 commit comments

Comments
 (0)