Interface CreateColumnarPatchInputExperimental

Input accepted by createColumnarPatch.

interface CreateColumnarPatchInput {
    cursor: ColumnarPatchCursorV1;
    geometryKind: GeoArrowGeometryKind;
    maxOperations?: number;
    operations: readonly ColumnarPatchOperationV1[];
    schemaId: string;
}

Properties

geometryKind: GeoArrowGeometryKind

Must equal the target batch's geometry kind; a mismatch is geometry drift.

maxOperations?: number

Ceiling on operations in one patch. Defaults to 65,536.

operations: readonly ColumnarPatchOperationV1[]
schemaId: string

Must equal the target batch's schema id; a mismatch is schema drift.