Advertisement ยท 728 ร— 90

Posts by Max Gabrielsson

Preview
Release v1.3.1 ยท duckdb/duckdb-rs Had to re-issue the release since the CD job failed. Sorry about that! What's Changed Multiple upgrade.sh improvements by @mlafeldt in #514 Fix a bunch of problems reported by Clippy by @mlafeldt ...

duckdb-rs 1.3.1 is the first release I was involved in. Expect many more to come! ๐Ÿค˜

We also plan to implement changes that will allow us to publish new crate versions without waiting for the next DuckDB release.

github.com/duckdb/duckd...

9 months ago 7 3 1 0

Ive touched on this a couple times, but in short I think it would be very hard to put raster processing into duckdb and maintain acceptable performance/memory usage. Huge blobs (rasters) and vectorized execution does not go well together. E.g. a single duckdb vector with 512x512x4 tiles is 2GB RAM.

1 year ago 2 0 1 0
Preview
PEP 513 โ€“ A Platform Tag for Portable Linux Built Distributions | peps.python.org This PEP proposes the creation of a new platform tag for Python package built distributions, such as wheels, called manylinux1_{x86_64,i686} with external dependencies limited to a standardized, restr...

As for the linux issues, thats a more general problem with all sorts of binary distributions on linux, which is why we're following pythons footsteps and using the many-linux system images when compiling. There's more details e.g. here peps.python.org/pep-0513/

1 year ago 1 0 0 0

AFAIK the extension side of the C-API doesn't require any c++ code to function, you could theoretically just program against the header without any linking with all the api callbacks passed as function pointers at runtime. That's why we're generally trying to (slowly) invest more in the C-API.

1 year ago 3 0 2 0
Preview
Add support for reading/writing `.xlsx` files by Maxxen ยท Pull Request #3 ยท duckdb/duckdb_excel This PR adds support for reading and writing .xlsx files through COPY TO/FROM ... FORMAT (XLSX), a new read_xlsx() table function as well as a .xlsx file replacement scan. The XLSX file parsing is ...

Full excel support also dropped in DuckDB 3 days ago (not through GDAL) ๐Ÿ‘€

1 year ago 9 3 1 1