Skip to content

Commit

Permalink
merge fix
Browse files Browse the repository at this point in the history
  • Loading branch information
kevinzwang committed Dec 17, 2024
1 parent b9865b8 commit 3a0b1a9
Showing 1 changed file with 3 additions and 3 deletions.
Original file line number Diff line number Diff line change
Expand Up @@ -2,8 +2,8 @@ use std::sync::Arc;

use common_error::DaftResult;
use common_treenode::{Transformed, TreeNode};
use daft_algebra::boolean::combine_conjunction;
use daft_core::join::JoinType;
use daft_dsl::optimization::conjuct;

use super::OptimizerRule;
use crate::{
Expand Down Expand Up @@ -119,7 +119,7 @@ impl OptimizerRule for FilterNullJoinKey {
};

let left_null_pred = if can_filter_left {
conjuct(
combine_conjunction(
null_equals_nulls_iter
.by_ref()
.zip(left_on)
Expand All @@ -131,7 +131,7 @@ impl OptimizerRule for FilterNullJoinKey {
};

let right_null_pred = if can_filter_right {
conjuct(
combine_conjunction(
null_equals_nulls_iter
.by_ref()
.zip(right_on)
Expand Down

0 comments on commit 3a0b1a9

Please sign in to comment.