irenjj commented on code in PR #15253: URL: https://github.com/apache/datafusion/pull/15253#discussion_r2001153997
########## datafusion/physical-plan/src/aggregates/mod.rs: ########## @@ -801,6 +803,16 @@ impl DisplayAs for AggregateExec { } } DisplayFormatType::TreeRender => { + let format_expr_with_alias = + |(e, alias): &(Arc<dyn PhysicalExpr>, String)| -> String { + let expr_sql = fmt_sql(e.as_ref()).to_string(); Review Comment: We have to construct a string to compare with alias. -- 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-unsubscr...@datafusion.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: github-unsubscr...@datafusion.apache.org For additional commands, e-mail: github-h...@datafusion.apache.org