ccat3z opened a new issue, #7109:
URL: https://github.com/apache/incubator-gluten/issues/7109
### Backend
VL (Velox)
### Bug description
Timestamps that great then 32767 years without but do not overflow will be
outside of range.
``` scala
Seq(
(1723240800675l)
).toDF("time")
spark.sql("""
select from_unixtime(event_timestamp, 'HH') from test
""")
// vanilla: 56577-04-30 00:11:15
// gluten: Timestamp is outside of supported range of [-32767-01-01,
32767-12-31]
```
It may be because `std::chrono::time_point` is used in time conversion,
which has range limitations.
### 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]