Skip to content

Interval is out of spec #187

Description

@alamb

Note: migrated from original JIRA: https://issues.apache.org/jira/browse/ARROW-11645

The DataType interval is currently implemented as a i32 or i64. However, that is incorrect and does not follow the spec.
{code:java}
// DAY_TIME - Indicates the number of elapsed days and milliseconds,
// stored as 2 contiguous 32-bit integers (8-bytes in total). Support
// of this IntervalUnit is not required for full arrow compatibility.
{code}
See [https://github.com/apache/arrow/blob/master/format/Schema.fbs]

E.g. I think that IntervalDayTimeType should be a struct(i32,i32) with a C representation or something, which is how it is defined in the spec.

This would also make it easier to read from and write to, as we do not need to transmute or bitmask the values to get the correct values.

Activity

Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment

Metadata

Metadata

Assignees

No one assigned

    Labels

    arrowChanges to the arrow crate

    Type

    No type

    Projects

    No projects

      Milestone

      No milestone

      Relationships

      None yet

      Development

      No branches or pull requests

      Issue actions