Interface GeoParquetRemoteQueryPlanStepV2Experimental

interface GeoParquetRemoteQueryPlanStepV2 {
    bounds: QueryPlanBoundsV1;
    compiled: DuckDbCompiledQueryV2;
    engine: "remote";
    fidelity: QueryPlanFidelity;
    id: string;
    losses: readonly QueryPlanFidelityLoss[];
    operation: "query" | "queryAggregate" | "queryAll";
    provenance: QueryPlanStepProvenanceV1;
    pushdown: "partial" | "full";
    query: CanonicalQuery;
    reason: string;
    requests: number;
}

Properties

engine
id: string
losses: readonly QueryPlanFidelityLoss[]
operation: "query" | "queryAggregate" | "queryAll"
pushdown: "partial" | "full"
reason: string
requests: number