Max Gabrielsson

Results 301 comments of Max Gabrielsson

Note to self: - Don't build shell on windows as the sqlite symbols conflict - GDAL requires cpp17 headers that's not available on our CI

@rcoup Not really, we bumped to latest GEOS separately before DuckDB v1.1.1(I think..). We can't really move forward with latest GDAL because the c++17 requirement is not compatible with our...

> The manylinux2014 toolchain has a newer GCC (v10) from Redhat such that it supports C++17, and there's newer GCC (v9/10/11/13) available from the Ubuntu team [for 18.04](https://launchpad.net/%7Eubuntu-toolchain-r/+archive/ubuntu/test?field.series_filter=bionic). So should...

Hi! Thanks for opening this issue! Unfortunately duckdb does not support encodings other than utf-8, and even though st_read uses GDAL under the hood, i think the issue is that...

So spatial has its own experimental shape file reader, `st_readshp` where you should be able to pass an extra `encoding := 'blob'` optional argument which will read any string fields...

Hello! This is currently expected, we only turn the join into an I.E. join if there is a single spatial predicate as the join condition. However, it would theoretically be...

Great find haha! Yes and no.. I added basic support for parameterizing types in order to support specifying the CRS for the GEOMETRY in the spatial extension, but im not...

Now, I think the bigger problem with tagging the type with the CRS is, what do you actually use as the modifier? In PostGIS there is a `SPATIAL_REF_SYS` table that...