JasonLi-cn commented on code in PR #11469: URL: https://github.com/apache/datafusion/pull/11469#discussion_r1679085120
########## datafusion/sql/src/select.rs: ########## @@ -297,6 +298,9 @@ impl<'a, S: ContextProvider> SqlToRel<'a, S> { input: LogicalPlan, select_exprs: Vec<Expr>, ) -> Result<LogicalPlan> { + // Try process group by unnest + let input = self.try_process_aggregate_unnest(input)?; Review Comment: I agree with you. We need to verify this logic in the future -- 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