arrow_array::array

Type Alias TimestampMicrosecondArray

Source
pub type TimestampMicrosecondArray = PrimitiveArray<TimestampMicrosecondType>;
Expand description

A PrimitiveArray of microseconds since UNIX epoch stored as i64

See examples for TimestampSecondArray

Aliased Type§

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

Fields§

§data_type: DataType§values: ScalarBuffer<i64>

Values data

§nulls: Option<NullBuffer>