Skip to content

Releases: AlexR2D2/duckdbex

v0.3.9

10 Feb 07:12
Compare
Choose a tag to compare

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

10 Nov 14:59
Compare
Choose a tag to compare
Added transaction management functions

v0.3.7

08 Nov 17:31
Compare
Choose a tag to compare
DuckDB 1.1.3, New options in DBConfig, Bugfixing

v0.3.6

15 Oct 09:26
Compare
Choose a tag to compare

v0.3.5

13 Oct 08:53
Compare
Choose a tag to compare
Added 'Appended' with schema parameter

v0.3.4

02 Oct 10:00
Compare
Choose a tag to compare

v0.3.3

10 Sep 10:01
Compare
Choose a tag to compare

v0.3.2

02 Aug 10:31
Compare
Choose a tag to compare

GitHub Actions CI/CD to build precompiled binaries

v0.3.1

24 Jun 17:16
6610938
Compare
Choose a tag to compare

Added array of fixed size into supported types.
for example: CREATE TABLE an_array(metrics FLOAT[3])

v0.3.0

05 Jun 18:50
Compare
Choose a tag to compare