You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
Describe the bug https://issues.apache.org/jira/browse/SPARK-33723 fixed an issue where casting a string to a date with an invalid format would just return null before, but now throws an exception. We need to make sure that we can match it.
Steps/Code to reproduce bug
This was found while trying to run 3.2.0 tests.
"23:59:59.333666Z",
"T21:34:56.333666Z"
are invalid date formats and they started to throw exceptions. This has been "fixed" in the tests, but no tests were added to be sure that we also throw exceptions in those cases.
The text was updated successfully, but these errors were encountered:
Describe the bug
https://issues.apache.org/jira/browse/SPARK-33723 fixed an issue where casting a string to a date with an invalid format would just return null before, but now throws an exception. We need to make sure that we can match it.
Steps/Code to reproduce bug
This was found while trying to run 3.2.0 tests.
are invalid date formats and they started to throw exceptions. This has been "fixed" in the tests, but no tests were added to be sure that we also throw exceptions in those cases.
The text was updated successfully, but these errors were encountered: