taiyang-li commented on PR #6396: URL: https://github.com/apache/incubator-gluten/pull/6396#issuecomment-2224914517
failed ut can't be reproduced using spark-sql "Support filter clause for aggregate function uses SortAggregateExec" ``` set spark.sql.execution.useObjectHashAggregateExec = false; CREATE TABLE testData2 (a INT, b INT); INSERT INTO testData2 VALUES (1, 1), (1, 2), (2, 1), (2, 2), (3, 1), (3, 2); SELECT PERCENTILE(a, 1) FILTER (WHERE b > 1) FROM testData2 ``` -- 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]
