Interface DuckDbCompiledQueryV1Experimental

Inspectable DuckDB SELECT over read_parquet(...) produced without I/O.

interface DuckDbCompiledQueryV1 {
    bboxApproximated?: boolean;
    compiler: "duckdb-sql-v1";
    geometryColumn?: string;
    geometryEncoding?: DuckDbGeometryEncoding;
    sources: readonly string[];
    sql: string;
}

Properties

bboxApproximated?: boolean

True when a non-envelope spatial filter was reduced to its bounding box.

compiler
geometryColumn?: string
geometryEncoding?: DuckDbGeometryEncoding
sources: readonly string[]

Parquet file URL(s) / glob(s) the SQL reads.

sql: string

Deterministic, injection-safe DuckDB SQL text.