duckdb/duckdb-rs

Bundle `icu` extension at compile time

rebasedming opened this issue · 0 comments

According to the DuckDB docs, the icu extension is an autoloaded core extension. But when using this library bundled, I need to INSTALL and LOAD the icu extension. An easy way to confirm this is to run the following query:

SELECT CAST((NOW() + INTERVAL '-40 day');

This will fail without the icu extension manually installed/loaded.