Skip to content
Prev Previous commit
Next Next commit
fix: Fix NullEquality conflicts
  • Loading branch information
jonathanc-n committed Jun 18, 2025
commit 732fa2187396749b4abc40b034b4d60db396b403
6 changes: 3 additions & 3 deletions datafusion/physical-plan/src/joins/hash_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -3512,7 +3512,7 @@ mod tests {
Arc::clone(&right),
on.clone(),
&JoinType::RightMark,
false,
NullEquality::NullEqualsNothing,
task_ctx,
)
.await?;
Expand Down Expand Up @@ -3556,7 +3556,7 @@ mod tests {
Arc::clone(&right),
on.clone(),
&JoinType::RightMark,
false,
NullEquality::NullEqualsNothing,
task_ctx,
)
.await?;
Expand Down Expand Up @@ -3696,7 +3696,7 @@ mod tests {
&join_hash_map,
&[left_keys_values],
&[right_keys_values],
false,
NullEquality::NullEqualsNothing,
&hashes_buffer,
8192,
(0, None),
Expand Down