Skip to content

Commit

Permalink
fix: panic in hash join (#130)
Browse files Browse the repository at this point in the history
  • Loading branch information
waralexrom authored Dec 22, 2023
1 parent 2dfe4e1 commit 7e46576
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion datafusion/src/physical_plan/hash_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -802,7 +802,7 @@ macro_rules! equal_rows_elem {
let left_array = $l.as_any().downcast_ref::<$array_type>().unwrap();
let right_array = $r.as_any().downcast_ref::<$array_type>().unwrap();

match (left_array.is_null($left), left_array.is_null($right)) {
match (left_array.is_null($left), right_array.is_null($right)) {
(false, false) => left_array.value($left) == right_array.value($right),
_ => false,
}
Expand Down

0 comments on commit 7e46576

Please sign in to comment.