You are viewing a plain text version of this content. The canonical link for it is here.
Posted to github@arrow.apache.org by GitBox <gi...@apache.org> on 2022/01/26 03:02:45 UTC

[GitHub] [arrow-datafusion] xudong963 commented on a change in pull request #1674: feat: add join type for logical plan display

xudong963 commented on a change in pull request #1674:
URL: https://github.com/apache/arrow-datafusion/pull/1674#discussion_r792283577



##########
File path: datafusion/src/logical_plan/plan.rs
##########
@@ -934,16 +934,30 @@ impl LogicalPlan {
                     LogicalPlan::Join(Join {
                         on: ref keys,
                         join_constraint,
+                        join_type,
                         ..
                     }) => {
                         let join_expr: Vec<String> =
                             keys.iter().map(|(l, r)| format!("{} = {}", l, r)).collect();
+                        let join_type = match join_type {

Review comment:
       I think so.




-- 
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: github-unsubscribe@arrow.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org