My table structure is :
CREATE TABLE IF NOT EXISTS spatial_data ( id VARCHAR, name VARCHAR, geometry GEOMETRY )
When I created the DuckDBAppender, the following error occurred:
message: unsupported C API type: 40
I would like to know if this is caused by the GEOMETRY in the table. What types are currently supported by the DuckDBAppender? Is there a list of relevant supports? If it is not supported, will that mean I cannot perform batch data insertion through the DuckDBAppender method?
By the way, the version of duckdb_jdbc that I am currently using is 1.5.2.0
My table structure is :
CREATE TABLE IF NOT EXISTS spatial_data ( id VARCHAR, name VARCHAR, geometry GEOMETRY )When I created the DuckDBAppender, the following error occurred:
message: unsupported C API type: 40
I would like to know if this is caused by the GEOMETRY in the table. What types are currently supported by the DuckDBAppender? Is there a list of relevant supports? If it is not supported, will that mean I cannot perform batch data insertion through the DuckDBAppender method?
By the way, the version of duckdb_jdbc that I am currently using is 1.5.2.0