Skip to content

Commit

Permalink
:w:erge branch 'filter_null_join_keys' of github.com:Dandandan/arrow-…
Browse files Browse the repository at this point in the history
…datafusion into filter_null_join_keys
  • Loading branch information
Dandandan committed Sep 7, 2024
2 parents b45a74f + 03784e2 commit ba73e8a
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/optimizer/src/filter_null_join_keys.rs
Original file line number Diff line number Diff line change
Expand Up @@ -50,7 +50,7 @@ impl OptimizerRule for FilterNullJoinKeys {
return Ok(Transformed::no(plan));
}
match plan {
LogicalPlan::Join(mut join) if !join.on.is_empty() && !join.null_equals_null() => {
LogicalPlan::Join(mut join) if !join.on.is_empty() && !join.null_equals_null => {
let (left_preserved, right_preserved) =
on_lr_is_preserved(join.join_type);

Expand Down

0 comments on commit ba73e8a

Please sign in to comment.