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
in version 41.0.0 an interval such as .5 months was parsed correctly
In version 42.0.0 (not yet released at the time of this writing) it fails with an error: NotYetImplemented("Unsupported Interval Expression with value ".5 months")
---- parse::tests::test_parse_interval stdout ----
thread 'parse::tests::test_parse_interval' panicked at 'called `Result::unwrap()` on an `Err` value: NotYetImplemented("Unsupported Interval Expression with value \".5 months\"")', arrow-cast/src/parse.rs:1808:51
stack backtrace:
Expected behavior
Both new cases should pass correctly
Additional context
Found while testing this upgrade in DataFusion
The text was updated successfully, but these errors were encountered:
thread 'parse::tests::test_parse_interval' panicked at 'called `Result::unwrap()` on an `Err` value: NotYetImplemented("Unsupported Interval Expression with value \".5 months\"")', arrow-cast/src/parse.rs:1808:51
stack backtrace:
Describe the bug
in version 41.0.0 an interval such as
.5 months
was parsed correctlyIn version 42.0.0 (not yet released at the time of this writing) it fails with an error:
NotYetImplemented("Unsupported Interval Expression with value ".5 months")
To Reproduce
Try to parse
.5
Here is a unit test:
The second case fails like this:
Expected behavior
Both new cases should pass correctly
Additional context
Found while testing this upgrade in DataFusion
The text was updated successfully, but these errors were encountered: