Skip to content
Merged
Changes from all commits
Commits
File filter

Filter by extension

Filter by extension

Conversations
Failed to load comments.
Loading
Jump to
Jump to file
Failed to load files.
Loading
Diff view
Diff view
4 changes: 2 additions & 2 deletions smoosense-py/smoosense/utils/duckdb_connections.py
Original file line number Diff line number Diff line change
Expand Up @@ -22,7 +22,7 @@ def maker() -> DuckDBPyConnection:
# Now install and load the extension
con.execute("INSTALL httpfs")
con.execute("LOAD httpfs")
con.execute("INSTALL lance FROM community")
con.execute("INSTALL lance")
con.execute("LOAD lance")
return con

Expand Down Expand Up @@ -58,7 +58,7 @@ def maker() -> DuckDBPyConnection:
# Now install and load the extension
con.execute("INSTALL httpfs")
con.execute("LOAD httpfs")
con.execute("INSTALL lance FROM community")
con.execute("INSTALL lance")
con.execute("LOAD lance")
# Configure DuckDB S3 settings
con.execute(f"SET s3_region='{region}'")
Expand Down
Loading