Interface DecodedPatchedGeoArrowBatchExperimental

Rows of a patched batch with tombstoned rows removed.

interface DecodedPatchedGeoArrowBatch {
    metrics: {
        materializedRows: number;
        rows: number;
        tombstonedRows: number;
    };
    rows: readonly DecodedGeoArrowRow[];
    state: ColumnarPatchStateV1;
}

Properties

Properties

metrics: {
    materializedRows: number;
    rows: number;
    tombstonedRows: number;
}
rows: readonly DecodedGeoArrowRow[]