Interface DirectGeoParquetHandleExperimental

interface DirectGeoParquetHandle {
    transferBytes?: number;
    close?(): void | Promise<void>;
    describe(signal?: AbortSignal): unknown;
    queryColumnar(query: unknown): ColumnarBatchV1 | Promise<ColumnarBatchV1>;
}

Properties

transferBytes?: number

Exact HTTP payload bytes admitted by the opener. They are charged only to the session operation that initiated this cached handle.

Methods