Skip to content

Commit

Permalink
Fix test
Browse files Browse the repository at this point in the history
  • Loading branch information
viirya committed Jan 31, 2024
1 parent 159c693 commit d9e40af
Showing 1 changed file with 2 additions and 1 deletion.
3 changes: 2 additions & 1 deletion datafusion/physical-plan/src/joins/sort_merge_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1600,7 +1600,7 @@ mod tests {
join_type: JoinType,
) -> Result<SortMergeJoinExec> {
let sort_options = vec![SortOptions::default(); on.len()];
SortMergeJoinExec::try_new(left, right, on, join_type, sort_options, false)
SortMergeJoinExec::try_new(left, right, on, None, join_type, sort_options, false)
}

fn join_with_options(
Expand All @@ -1615,6 +1615,7 @@ mod tests {
left,
right,
on,
None,
join_type,
sort_options,
null_equals_null,
Expand Down

0 comments on commit d9e40af

Please sign in to comment.