zml1206 opened a new issue, #7494: URL: https://github.com/apache/incubator-gluten/issues/7494
### Backend VL (Velox) ### Bug description [data.tar.gz](https://github.com/user-attachments/files/17348830/data.tar.gz) spark.read.parquet("w632a06d6965c488880a6b83/part-00000-9337fa9d-323d-486d-9ddc-56a463777685-c000.snappy.parquet") .createOrReplaceTempView("t") spark.sql("select `ds`, sum(`展现量`) from t where tag='APP' group by `ds`").show expect ``` +--------+-----------+ | ds|sum(展现量)| +--------+-----------+ |20240122| 24046909| |20240725| 11847575| |20231216| 14745955| |20230103| 1743473| |20230209| 630480| |20230629| 515268| |20230731| 6074803| |20231025| 2573087| |20230905| 1600598| |20231202| 10263639| |20240206| 10681716| |20230220| 367174| |20230414| 338712| |20240102| 17403737| |20240525| 11799454| |20240621| 13233079| |20240528| 12507434| |20240611| 12626858| |20230704| 789805| |20230713| 1788599| +--------+-----------+ ``` actual ``` +--------+----------------+ | ds| sum(展现量)| +--------+----------------+ |20240122| 24046909| |20240725|1256514688496509| |20231216| 139616696582029| |20230103|1256507932931215| |20230209|1256507932931215| |20230629| 977289350340202| |20230731| 977294835313775| |20231025| 837678153156346| |20230905| 698066955972490| |20231202|1256509203522936| |20240206|1256507932931215| |20230220|1256509203522936| |20230414|1116906032497631| |20240102| 17403737| |20240525| 698066955972490| |20240621| 837678153156346| |20240528| 837678153155578| |20240611| 977288079746945| |20230704| 977281324181651| |20230713|1116898006339080| +--------+----------------+ ``` I tested three versions. The 08-28 version is normal, but the master and 10-09 versions are abnormal. ### Spark version Spark-3.4.x ### Spark configurations _No response_ ### System information _No response_ ### Relevant logs _No response_ -- 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]
