sahilshingate01 commented on issue #19684: URL: https://github.com/apache/datafusion/issues/19684#issuecomment-3721591357
I can fix this DataFusion bug where physical plan explain output hides the actual expressions behind `__common_expr_<n>` aliases. The solution is to modify the `AggregateExec` display formatter to show both the alias and its underlying expression (like `sum(column1) as __common_expr_1`), similar to how group by expressions are displayed. I can create a PR for this - it's a small change to the explain output formatting logic that will make query plans much more readable. -- 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] --------------------------------------------------------------------- To unsubscribe, e-mail: [email protected] For additional commands, e-mail: [email protected]
