alamb commented on code in PR #5307:
URL: https://github.com/apache/arrow-datafusion/pull/5307#discussion_r1112961967
##########
datafusion/expr/src/logical_plan/builder.rs:
##########
@@ -431,7 +497,9 @@ impl LogicalPlanBuilder {
.map(|f| Expr::Column(f.qualified_column()))
.collect();
- let plan = Self::add_missing_columns(self.plan, &missing_cols)?;
+ let is_distinct = false;
+ let plan = Self::add_missing_columns(self.plan, &missing_cols,
is_distinct)?;
+ println!("Result plan is\n{plan:#?}");
Review Comment:
yes -- great catch.
--
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]