edmondop commented on code in PR #8243:
URL: https://github.com/apache/arrow-datafusion/pull/8243#discussion_r1396667635
##########
datafusion/optimizer/src/push_down_filter.rs:
##########
@@ -493,13 +493,13 @@ fn push_down_all_join(
let left = match conjunction(left_push) {
Some(predicate) => {
- LogicalPlan::Filter(Filter::try_new(predicate,
Arc::new(left.clone()))?)
+ LogicalPlan::Filter(Filter::try_new(predicate,
Arc::new(left.clone()),20)?)
}
None => left.clone(),
};
let right = match conjunction(right_push) {
Some(predicate) => {
- LogicalPlan::Filter(Filter::try_new(predicate,
Arc::new(right.clone()))?)
+ LogicalPlan::Filter(Filter::try_new(predicate,
Arc::new(right.clone()),20)?)
Review Comment:
Unclear how to handle this case
--
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]