You signed in with another tab or window. Reload to refresh your session.You signed out in another tab or window. Reload to refresh your session.You switched accounts on another tab or window. Reload to refresh your session.Dismiss alert
to read Parquet files where I store string columns as org.apache.parquet.io.api.Binary. However, when trying to call DuckDBPreparedStament#getString I do get a DuckDBBlobResult.
The text was updated successfully, but these errors were encountered:
After lots of reading in the Parquet sections of the docs, I came across: https://duckdb.org/docs/configuration/overview.html via Google and found that I need to call SET binary_as_string = true to fix my problem.
This issue can be closed but it would be nice if any of the Parquet sections in the docs could catch up this well hidden (when you a searching Parquet related sections) configuration flag.
I'm using
to read Parquet files where I store string columns as
org.apache.parquet.io.api.Binary
. However, when trying to callDuckDBPreparedStament#getString
I do get aDuckDBBlobResult
.The text was updated successfully, but these errors were encountered: