Interface KeplerColumnInputExperimental

Column-oriented artifact input (Honua columnar batch or any typed-array set).

interface KeplerColumnInput {
    name: string;
    nullable?: boolean;
    type: string;
    values: ArrayLike<unknown>;
}

Properties

name: string
nullable?: boolean
type: string

Adapter-declared logical type name, for example float64 or utf8.

values: ArrayLike<unknown>

Column values in row order. Typed arrays are read in place; the bridge never mutates or retains the caller's buffers.