arrow_array::array

Type Alias Date32Array

Source
pub type Date32Array = PrimitiveArray<Date32Type>;
Expand description

A PrimitiveArray of days since UNIX epoch stored as i32

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

Aliased Type§

struct Date32Array {
    data_type: DataType,
    values: ScalarBuffer<i32>,
    nulls: Option<NullBuffer>,
}

Fields§

§data_type: DataType§values: ScalarBuffer<i32>

Values data

§nulls: Option<NullBuffer>