Interface StreamingColumnarIndexResult<TypeIDType>

The output of a columnar streaming index build: the index in its SoA column form (no object phase — see columnar_index.ts), plus the header and window diagnostics.

interface StreamingColumnarIndexResult<TypeIDType> {
    columns: StepIndexColumns<TypeIDType>;
    header: StepHeader;
    result: ParseResult;
    stats: StreamingIndexStats;
}

Type Parameters

  • TypeIDType

Properties

header: StepHeader
result: ParseResult