feiniaofeiafei commented on PR #65245: URL: https://github.com/apache/doris/pull/65245#issuecomment-5065946482
The issue mentioned in this PR—where the two SQL statements select g, collect_list(distinct a), collect_list(distinct b) from t group by g and select g, array_agg(distinct a), array_agg(distinct b) from t group by g could not be executed—has been resolved after the merge of https://github.com/apache/doris/pull/65664. This PR implements a different approach to enable execution, using CTE (Common Table Expression) splitting to achieve the desired functionality. -- 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]
