Skip to content

Commit

Permalink
Fix: Sort Merge Join Left Semi crashes
Browse files Browse the repository at this point in the history
  • Loading branch information
comphead committed May 17, 2024
1 parent c129846 commit 22c61fc
Showing 1 changed file with 0 additions and 5 deletions.
5 changes: 0 additions & 5 deletions datafusion/physical-plan/src/joins/sort_merge_join.rs
Original file line number Diff line number Diff line change
Expand Up @@ -1023,11 +1023,6 @@ impl SMJStream {
if matches!(self.join_type, JoinType::Full) {
join_buffered = !self.buffered_joined;
};

if matches!(self.join_type, JoinType::LeftAnti) {
join_streamed = !self.streamed_joined;
join_buffered = true;
};
}
}
if !join_streamed && !join_buffered {
Expand Down

0 comments on commit 22c61fc

Please sign in to comment.