-
Notifications
You must be signed in to change notification settings - Fork 17
New issue
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
Latest commit gives an catalog error (while running phoenix-analytics) #39
Comments
DuckDB dev team move some core functions to core_functions extension. You need to install this extension {:ok, db} = Duckdbex.open("analytics.duckdb")
{:ok, conn} = Duckdbex.connection(db)
{: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;") I think you need to forward this issue to phoenix-analytics, so that they install this extension automatically for your. |
Thanks a lot for the quick response! |
For the record, I tried that, but at lest on my Mac it says that it can't find the extension. And also setting to |
@dantodor by the way is your Mac on Intel chipset? |
M2, MacBook Pro |
OK, my mistake. I was using duckdb 1.1.3 and issuing the load and install commands. After upgrading, it works. |
while running phoenix-analytics , which depends on duckdbex, I get following error since commit 2eacc62
The text was updated successfully, but these errors were encountered: