zhztheplayer opened a new issue, #10366: URL: https://github.com/apache/incubator-gluten/issues/10366
### Backend VL (Velox) ### Bug description ### Bug description Found in Gluten + Velox when running [ClickBench](https://benchmark.clickhouse.com) Q31. This is reproduce-able with the default Gluten / Spark configurations. No specific options are required to set. The minimal SQL to reproduce: ```sql SELECT SearchEngineID, SUM(IsRefresh) FROM hits WHERE SearchPhrase <> '' AND (SearchEngineID in (1, 2, 4)) AND ClientIP = -807147100 GROUP BY SearchEngineID ``` Data: `hits.parquet` from https://github.com/ClickHouse/ClickBench/?tab=readme-ov-file#data-loading Spark answer: ``` +--------------+--------------+ |SearchEngineID|sum(IsRefresh)| +--------------+--------------+ | 1| 1| | 2| 35| | 4| 3| +--------------+--------------+ ``` Gluten (Velox) answer: ``` +--------------+--------------+ |SearchEngineID|sum(IsRefresh)| +--------------+--------------+ | 4| 1| | 2| 37| | 1| 1| +--------------+--------------+ ``` ### Gluten version _No response_ ### Spark version None ### Spark configurations _No response_ ### System information _No response_ ### Relevant logs ```bash ``` -- 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]
