We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
The Arrow Spec contains an Interval type (spec link).
Interval
The primary usecase of this type is date/time arithmetic "now() - 1 month", or "2023-03-01 + 3 hours", etc
The Rust implementation has some support for this type (see https://docs.rs/arrow/35.0.0/arrow/?search=Interval).
This ticket tracks additional support for this type
https://docs.rs/arrow/35.0.0/arrow/datatypes/enum.IntervalUnit.html
This ticket is meant to supercede #527
Features:
Utf8
LargeUtf8
YearDay
MonthDayNano
Timestamp
+
-
Duration
Related to DataFusion apache/datafusion#5753
The text was updated successfully, but these errors were encountered:
INTERVAL
INTERVAL ...
I moved all outstanding items to apache/datafusion#5753 and so will close this ticket
Sorry, something went wrong.
No branches or pull requests
The Arrow Spec contains an
Interval
type (spec link).The primary usecase of this type is date/time arithmetic "now() - 1 month", or "2023-03-01 + 3 hours", etc
The Rust implementation has some support for this type (see https://docs.rs/arrow/35.0.0/arrow/?search=Interval).
This ticket tracks additional support for this type
https://docs.rs/arrow/35.0.0/arrow/datatypes/enum.IntervalUnit.html
This ticket is meant to supercede #527
Features:
Utf8
andLargeUtf8
-->Interval
#3762YearDay
-->MonthDayNano
, etc) #3959Timestamp
+
/-
Interval
types #3963Timestamp
fromTimestamp
should produce aDuration
(notTimestamp
) #3964Related to DataFusion apache/datafusion#5753
The text was updated successfully, but these errors were encountered: