taiyang-li opened a new issue, #9061: URL: https://github.com/apache/incubator-gluten/issues/9061
### Backend CH (ClickHouse) ### Bug description ``` 0: jdbc:hive2://localhost:10000/> CREATE EXTERNAL TABLE test_json ( . . . . . . . . . . . . . . . . > a INT, . . . . . . . . . . . . . . . . > b STRING, . . . . . . . . . . . . . . . . > c STRING . . . . . . . . . . . . . . . . > ) . . . . . . . . . . . . . . . . > -- ROW FORMAT SERDE 'org.apache.hive.serde2.JsonSerDe' . . . . . . . . . . . . . . . . > -- ROW FORMAT SERDE 'org.apache.hive.hcatalog.data.JsonSerDe' . . . . . . . . . . . . . . . . > ROW FORMAT SERDE'org.openx.data.jsonserde.JsonSerDe' . . . . . . . . . . . . . . . . > LOCATION 'file:///data1/liyang/cppproject/spark/spark-3.3.2-bin-hadoop3/test_json'; +---------+ | Result | +---------+ +---------+ No rows selected (0.25 seconds) 0: jdbc:hive2://localhost:10000/> 0: jdbc:hive2://localhost:10000/> select * from test_json; +------+----------------+--------+ | a | b | c | +------+----------------+--------+ | 100 | ["1","2","3"] | 10000 | +------+----------------+--------+ 1 row selected (0.18 seconds) 0: jdbc:hive2://localhost:10000/> 0: jdbc:hive2://localhost:10000/> set spark.gluten.enabled = true; +-----------------------+--------+ | key | value | +-----------------------+--------+ | spark.gluten.enabled | true | +-----------------------+--------+ 1 row selected (0.04 seconds) 0: jdbc:hive2://localhost:10000/> select * from test_json; +------+----------+--------+ | a | b | c | +------+----------+--------+ | 100 | [1,2,3] | 10000 | +------+----------+--------+ 1 row selected (0.13 seconds) 0: jdbc:hive2://localhost:10000/> 0: jdbc:hive2://localhost:10000/> ``` ### 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]
