Interface GeoparquetResolvedQueryInput<T>Experimental

interface GeoparquetResolvedQueryInput<T> {
    effectiveSchema?: readonly SourceProfileField[];
    geometry?: GeometryColumnPlan;
    operation: "query" | "queryAggregate" | "queryAll";
    query: Query<T>;
    sourceId: string;
    sources: readonly string[];
}

Type Parameters

  • T = Record<string, unknown>

Properties

effectiveSchema?: readonly SourceProfileField[]

Effective DuckDB output schema bound to the originating plan (#627). Required, and validated before any relation scan, when this source was constructed with resultEncoding: "lossless-json".

operation: "query" | "queryAggregate" | "queryAll"
query: Query<T>
sourceId: string

Validated logical id from the opaque handle, used only for degradation diagnostics.

sources: readonly string[]