taiyang-li opened a new issue, #4956:
URL: https://github.com/apache/incubator-gluten/issues/4956
### Backend
CH (ClickHouse)
### Bug description
```
0: jdbc:hive2://localhost:10000/> set spark.gluten.enabled = true;
+-----------------------+--------+
| key | value |
+-----------------------+--------+
| spark.gluten.enabled | true |
+-----------------------+--------+
1 row selected (0.094 seconds)
0: jdbc:hive2://localhost:10000/> select cast(concat(' ', cast(id as
string)) as bigint) from range(10)
. . . . . . . . . . . . . . . . > ;
+------------------------------------------------+
| CAST(concat( , CAST(id AS STRING)) AS BIGINT) |
+------------------------------------------------+
| NULL |
| NULL |
| NULL |
| NULL |
| NULL |
| NULL |
| NULL |
| NULL |
| NULL |
| NULL |
+------------------------------------------------+
10 rows selected (0.117 seconds)
0: jdbc:hive2://localhost:10000/> set spark.gluten.enabled = false;
+-----------------------+--------+
| key | value |
+-----------------------+--------+
| spark.gluten.enabled | false |
+-----------------------+--------+
1 row selected (0.046 seconds)
0: jdbc:hive2://localhost:10000/> select cast(concat(' ', cast(id as
string)) as bigint) from range(10)
. . . . . . . . . . . . . . . . > ;
+------------------------------------------------+
| CAST(concat( , CAST(id AS STRING)) AS BIGINT) |
+------------------------------------------------+
| 0 |
| 1 |
| 2 |
| 3 |
| 4 |
| 5 |
| 6 |
| 7 |
| 8 |
| 9 |
+------------------------------------------------+
10 rows selected (0.144 seconds)
0: jdbc:hive2://localhost:10000/>
```
### Spark version
None
### 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]