apache / incubator-gluten

Gluten is a middle layer responsible for offloading JVM-based SQL engines' execution to native engines.
https://gluten.apache.org/
Apache License 2.0
1.18k stars 431 forks source link

[CH] CAST to string diff #7602

Open zhanglistar opened 1 week ago

zhanglistar commented 1 week ago

Backend

CH(Clickhouse)

Bug description

SQL: select cast(array('1','2', 'abc', '\'1\'') as string);

Vanila: [1, 2, abc, '1']

image

Gluten: ['1','2', 'abc', '\'1\''] Clickhouse:

image

Spark version

None

Spark configurations

No response

System information

No response

Relevant logs

No response

zhanglistar commented 1 week ago
image