berkaysynnada commented on code in PR #9096:
URL: https://github.com/apache/arrow-datafusion/pull/9096#discussion_r1474480032
##########
datafusion/core/src/physical_optimizer/projection_pushdown.rs:
##########
@@ -916,7 +916,9 @@ fn update_expr(
.find_map(|(index, (projected_expr, alias))| {
projected_expr.as_any().downcast_ref::<Column>().and_then(
|projected_column| {
-
column.name().eq(projected_column.name()).then(|| {
+ (column.name().eq(projected_column.name())
Review Comment:
I am working on a new, more comprehensive and less error-prone projection
optimizer. I plan to open a PR after our internal review. Just so you know, all
these utils will be removed in the new version.
--
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]