Skip to content

Commit

Permalink
partial impl
Browse files Browse the repository at this point in the history
  • Loading branch information
korowa committed Oct 10, 2023
1 parent 261b900 commit 7ca5706
Show file tree
Hide file tree
Showing 7 changed files with 324 additions and 31 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -365,6 +365,7 @@ fn adjust_input_keys_ordering(
left.clone(),
right.clone(),
new_conditions.0,
None,
*join_type,
new_conditions.1,
*null_equals_null,
Expand Down Expand Up @@ -714,6 +715,7 @@ pub(crate) fn reorder_join_keys_to_inputs(
left,
right,
on,
filter: None,
join_type,
sort_options,
null_equals_null,
Expand Down Expand Up @@ -744,6 +746,7 @@ pub(crate) fn reorder_join_keys_to_inputs(
left.clone(),
right.clone(),
new_join_on,
None,
*join_type,
new_sort_options,
*null_equals_null,
Expand Down Expand Up @@ -2004,6 +2007,7 @@ mod tests {
left,
right,
join_on.clone(),
None,
*join_type,
vec![SortOptions::default(); join_on.len()],
false,
Expand Down
1 change: 1 addition & 0 deletions datafusion/core/src/physical_optimizer/test_utils.rs
Original file line number Diff line number Diff line change
Expand Up @@ -167,6 +167,7 @@ pub fn sort_merge_join_exec(
left,
right,
join_on.clone(),
None,
*join_type,
vec![SortOptions::default(); join_on.len()],
false,
Expand Down
Loading

0 comments on commit 7ca5706

Please sign in to comment.