Skip to content
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

Simplify extension loading in dbt-duckdb #180

Merged
merged 1 commit into from
Jun 12, 2023
Merged

Conversation

jwills
Copy link
Collaborator

@jwills jwills commented Jun 12, 2023

Fixes #179

In the old code, we would re-load any DuckDB extensions that we needed for the config in the connection that we used for each dbt thread. This was generally fine in that loading an already-loaded DuckDB extension is idempotent-- except when it wasn't, due to some sort of bug (as in #179).

The good news though is that this extension reloading is unnecessary now, and since we're pinning ourselves to post 0.5.0 versions of DuckDB, we can also switch to using the more python install_extension and load_extension methods on the DuckDB connection in order to load the extensions once per run, instead of on each thread.

@jwills jwills merged commit 6a97b1d into master Jun 12, 2023
@jwills jwills deleted the jwills_simplify_loading branch June 12, 2023 16:22
Sign up for free to join this conversation on GitHub. Already have an account? Sign in to comment
Labels
None yet
Projects
None yet
Development

Successfully merging this pull request may close these issues.

Catalog Error postgres_scanner: postgres_scan already exists
1 participant