zhli1142015 opened a new issue, #9291:
URL: https://github.com/apache/incubator-gluten/issues/9291
### Backend
VL (Velox)
### Bug description
Result mismatch while casting out of range values from
int to tinyint
try_cast(128 as tinyint): Velox -> -128, Spark -> null
int to smallint
try(cast 128 as smallint): Velox -> 0, Spark -> null
bigint to int
try_cast(9223372036854775807 as int): Velox -> -1, Spark -> null
9223372036854775808 -> int
Velox -> -9223372036854775808, Spark -> null
string representation of a floating point -> int
try_cast('1.23' as int): Velox -> 1, Spark -> null
### 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]