-
Hi! Does anyone know how to set duckdb params on ibis duckdb backend when quering remote parquet files with partitions which has some schema issues like below? When using duckdb query setting 'union_by_name=True' does solve the issue below. |
Beta Was this translation helpful? Give feedback.
Replies: 1 comment 1 reply
-
Hey @teemuja -- keyword arguments passed to the |
Beta Was this translation helpful? Give feedback.
Hey @teemuja -- keyword arguments passed to the
read_*
functions are passed through to DuckDB, so you would docon.read_parquet("path/to/online/blobs", union_by_name=True)