Open ScottMeads opened 1 year ago
You haven't missed anything, the support for complex types in the DuckDB JDBC driver is still a work in progress.
I've done some work, https://github.com/duckdb/duckdb/pull/7000, to auto-stringify types that aren't explicitly handled, including extension types, which should improve things
In the meantime, you can explicitly cast the GEOGRAPHY type to a string by doing
SELECT geo_column::varchar FROM table
I might be missing something simple, but couldn't find anything online. When calling
ST_MAKEPOINT
I receive the error below:I'm using DuckDB 0.7.0, compiling on an M1 Mac.