Skip to content

duckdb 1.5.5

Latest

Choose a tag to compare

@github-actions github-actions released this 28 Jul 01:06
· 224 commits to main since this release

Features

  • Update to DuckDB v1.5.5, see https://github.com/duckdb/duckdb/releases/tag/v1.5.5 for details.

  • Disable extensions on libc++ Linux builds, with startup message and load error (#1107, #2414).

  • Rework how extensions and secrets choose their on-disk location, replacing the
    package-library extension cache attempted across 1.5.4.1 through 1.5.4.3.
    Both now share a single "home" root, resolved fresh for every duckdb() driver.
    An interactive prompt in duckdb() and messages in non-interactive sessions guide the process.
    See ?duckdb_storage for details. (#2396, #2398).

Bug fixes

  • Support OR and IN predicates pushed down to registered Arrow tables (#2410).

  • Error instead of crashing when calling duckdb_fetch_arrow() on an Arrow result that has been consumed with duckdb_fetch_record_batch() (#2406).

  • Fix edge case in computation of r_base::min/r_base::max/r_base::sum aggregates (#2404, #2405).

  • Honor the na.rm argument of r_base aggregates in SQL queries (#2407).

Documentation

  • Document database-instance caching and driver reuse (#2399).