Releases: AlexR2D2/duckdbex
Releases · AlexR2D2/duckdbex
v0.3.9
- DuckDB 1.2.0 release. Please, read the Announcing DuckDB 1.2.0
- Fixed the isinf/isnan build error on Linux
DuckDB.query(sql)
without parameters can execute multiple SQL statements at onсe.
DuckDB dev team move some core functions to core_functions extension. After installing this release your probably will get the error:
Catalog Error: Scalar Function with name <some function name> is not in the catalog, but it exists in the core_functions extension.
Please try installing and loading the core_functions extension by running:
INSTALL core_functions;
LOAD core_functions;
Alternatively, consider enabling auto-install and auto-load by running:
SET autoinstall_known_extensions=1;
SET autoload_known_extensions=1;
If so then you need to install this extension:
{:ok, _} = Duckdbex.query(conn, "INSTALL core_functions;")
{:ok, _} = Duckdbex.query(conn, "LOAD core_functions;")
Alternatively, consider enabling auto-install and auto-load by running:
{:ok, _} = Duckdbex.query(conn, "SET autoinstall_known_extensions=1;")
{:ok, _} = Duckdbex.query(conn, "SET autoload_known_extensions=1;")
v0.3.8
Added transaction management functions
v0.3.7
DuckDB 1.1.3, New options in DBConfig, Bugfixing
v0.3.6
v0.3.5
Added 'Appended' with schema parameter
v0.3.4
v0.3.3
v0.3.2
GitHub Actions CI/CD to build precompiled binaries
v0.3.1
Added array of fixed size into supported types.
for example: CREATE TABLE an_array(metrics FLOAT[3])