arrow_array::array

Type Alias Date64Array

Source
pub type Date64Array = PrimitiveArray<Date64Type>;
Expand description

A PrimitiveArray of milliseconds since UNIX epoch stored as i64

This type is similar to the chrono::NaiveDate type and can hold values such as 2018-11-13

Aliased Type§

struct Date64Array {
    data_type: DataType,
    values: ScalarBuffer<i64>,
    nulls: Option<NullBuffer>,
}

Fields§

§data_type: DataType§values: ScalarBuffer<i64>

Values data

§nulls: Option<NullBuffer>