Interface ColumnarResultTemporalBindingExperimental

Attribute a batch's timestamp column is emitted as.

The attribute value is the Arrow timestamp as a bigint in unit, never a Date and never epoch milliseconds, so microsecond and nanosecond batches round-trip exactly. A null timestamp becomes an explicit null attribute.

interface ColumnarResultTemporalBinding {
    attribute: string;
    timezone?: string;
    unit: GeoArrowTimestampUnit;
}

Properties

attribute: string
timezone?: string