Max Gabrielsson
Max Gabrielsson
## Environment data `dotnet --info` output: ``` .NET SDK (reflecting any global.json): Version: 6.0.300 Commit: 8473146e7d Runtime Environment: OS Name: ubuntu OS Version: 22.04 OS Platform: Linux RID: ubuntu.22.04-x64 Base...
Draft PR for #4302 I still feel very unsure of what I'm doing, and I know there's all sorts of crimes going on in `vector_cast.cpp`, but I got a basic...
Originally discovered in https://github.com/duckdb/duckdb/issues/4152 On a persisted database create this table: `CREATE TABLE t0 (c0 VARCHAR(0) COLLATE AF);` Then after the restart, will give the error: ``` Error: unable to...
### Description Hey! Im trying to use SkiaSharp in combination with `true`, but I get the following error(s): ``` wasm-ld : error : --shared-memory is disallowed by libskia.SkOpts.o because it...
This PR adds a new `JsonValue` class to represent/parse/print json objects. JSON is everywhere, and its pretty useful to be able to have a small json utility built into DuckDB...
This PR reworks the way indexes are bound. We now lazily bind all indexes (even the built in ART index type) when first accessed instead of initializing/loading them when loading...
While I'm hesitant to implement a full blown `GEOGRAPHY` type, I do think that having a couple of spatial functions using geodetic algorithms operating on a sphere would be a...
Ideally we implement an R*-TREE, but we should research what the current best bulk-loading algorithm is, since we basically only do bulk-loads by indexing vectors at a time. A first...
We currently rely on GEOS for writing and reading WKT, which requires an unnecessary copy and allocation step to convert back and forth between DuckDB and GEOS geometries. We should...
Now that the build setup doesn't suck again (at least so far so good) we should allow people building from source to choose whether or not they want to statically...