lyy-pineapple commented on issue #6574: URL: https://github.com/apache/incubator-gluten/issues/6574#issuecomment-2249250641
> I have tried the similar sql with spark 3.5.1, and I didn't met the problem. Would you please give the detail build info like below? > > ``` > Backend: Velox > Backend Branch: HEAD > Backend Revision: fb3eda9f85de36de59f842f65270bc6749e9bc51 > Backend Revision Time: 2024-07-19 00:14:09 +0000 > GCC Version: Apple clang version 15.0.0 (clang-1500.3.9.4) > Gluten Branch: master > Gluten Build Time: 2024-07-24T06:57:12Z > Gluten Repo URL: https://github.com/jackylee-ch/gluten.git > Gluten Revision: 2e47b580a8eff8615b152d16285448eceec71094 > Gluten Revision Time: 2024-07-23 13:15:17 +0800 > Gluten Version: 1.2.0-SNAPSHOT > Hadoop Version: 3.3.4 > Java Version: 17 > Scala Version: 2.12.15 > Spark Version: 3.5.1 > ``` The main branch of Velox supports the slice function with bigint parameters. I'm not sure if other array functions have this issue. It can be reproduced in branch 1.1. sql: ``` with t as ( select /\*+ repartition(2) \*/ a FROM values (array('a', 'b', 'c', 'd')), (array('a', 'b', 'c', 'd')) ,array('a', 'b', 'c', 'd') test(a) ) SELECT explode(slice(a, 2, 2)) from t ``` -- 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]
