From b3fed39b9cef08f29848f91cfb176a53a604f26b Mon Sep 17 00:00:00 2001 From: Xuanwo Date: Wed, 25 Mar 2026 12:13:27 +0800 Subject: [PATCH] Use core lance install --- smoosense-py/smoosense/utils/duckdb_connections.py | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) diff --git a/smoosense-py/smoosense/utils/duckdb_connections.py b/smoosense-py/smoosense/utils/duckdb_connections.py index e0665e8..74fbed0 100644 --- a/smoosense-py/smoosense/utils/duckdb_connections.py +++ b/smoosense-py/smoosense/utils/duckdb_connections.py @@ -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 @@ -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}'")