Interface GeoparquetSourceHandleExperimental

Typed escape hatch returned by Source.protocol("geoparquet"). Exposes the DuckDB describe() metadata (REQ-003) and a raw-SQL run for advanced use.

interface GeoparquetSourceHandle {
    runtime: GeoparquetRuntime;
    sources: readonly string[];
    describe(): Promise<GeoparquetDescription>;
    executeResolvedQuery<T>(input: GeoparquetResolvedQueryInput<T>): Promise<Result<T>>;
    sql(query: string): Promise<DuckRow[]>;
}

Properties

sources: readonly string[]

Methods