comphead commented on code in PR #13053:
URL: https://github.com/apache/datafusion/pull/13053#discussion_r1811330586
##########
datafusion/physical-plan/src/joins/sort_merge_join.rs:
##########
@@ -1512,7 +1517,10 @@ impl SMJStream {
};
// Push the filtered batch which contains rows passing
join filter to the output
- if matches!(self.join_type, JoinType::Left |
JoinType::LeftSemi) {
+ if matches!(
+ self.join_type,
+ JoinType::Left | JoinType::LeftSemi | JoinType::Right
Review Comment:
At the end of the day all types of filtered joins will be moved.
I'm planning to cover this week RightSemi, LeftAnti, RightAnti and Full,
lets see how it goes
--
This is an automated message from the Apache Git Service.
To respond to the message, please log on to GitHub and use the
URL above to go to the specific comment.
To unsubscribe, e-mail: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]