Implement Spark-compatible CAST from String to Timestamp #328
Labels
enhancement
New feature or request
good first issue
Good for newcomers
help wanted
Extra attention is needed
What is the problem the feature request solves?
We currently delegate to DataFusion when casting from string to timestamp and there are some differences in behavior compared to Spark.
Examples of differences:
2020
2020-01-01 00:00:00.0
null
2020-01
2020-01-01 00:00:00.0
null
2020-01-01
2020-01-01 00:00:00.0
2019-12-31 16:00:00.0
2020-01-01T12
2020-01-01 12:00:00.0
null
2020-01-01T12:34
2020-01-01 12:34:00.0
null
2020-01-01T12:34:56
2020-01-01 12:34:56.0
2020-01-01 04:34:56.0
2020-01-01T12:34:56.123456
2020-01-01 12:34:56.123456
2020-01-01 04:34:56.123456
T2
2024-04-25 02:00:00.0
null
Describe the potential solution
No response
Additional context
No response
The text was updated successfully, but these errors were encountered: