Skip to content

Commit

Permalink
fix(duckdb): force use of unnest when querying extensions
Browse files Browse the repository at this point in the history
  • Loading branch information
cpcloud committed Jun 13, 2024
1 parent 31adf16 commit f62275b
Showing 1 changed file with 1 addition and 1 deletion.
2 changes: 1 addition & 1 deletion ibis/backends/duckdb/__init__.py
Original file line number Diff line number Diff line change
Expand Up @@ -493,7 +493,7 @@ def _load_extensions(
) -> None:
f = self.compiler.f
query = (
sg.select(f.unnest(f.list_append(C.aliases, C.extension_name)))
sg.select(f.anon.unnest(f.list_append(C.aliases, C.extension_name)))
.from_(f.duckdb_extensions())
.where(sg.and_(C.installed, C.loaded))
)
Expand Down

0 comments on commit f62275b

Please sign in to comment.