andygrove commented on code in PR #2649:
URL: https://github.com/apache/arrow-datafusion/pull/2649#discussion_r884921884
##########
datafusion/proto/src/logical_plan.rs:
##########
@@ -605,6 +605,11 @@ impl AsLogicalPlan for LogicalPlanNode {
join.join_constraint
))
})?;
+ let filter: Option<Expr> = join
+ .filter
+ .as_ref()
+ .map(|expr| parse_expr(expr, ctx))
+ .map_or(Ok(None), |v| v.map(Some))?;
Review Comment:
I copied the code over from Ballista and am not too familiar with what is
going on here. @korowa would you mind updating this in a follow on PR?
--
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]