Skip to content

Releases: AlexR2D2/duckdbex

v0.3.13

08 Jul 17:04
Compare
Choose a tag to compare

v0.3.12

01 Jul 07:59
Compare
Choose a tag to compare

v0.3.11

08 Apr 13:40
Compare
Choose a tag to compare

v0.3.10

06 Mar 10:42
Compare
Choose a tag to compare

DuckDB 1.2.1 bugfix release

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