File tree Expand file tree Collapse file tree 3 files changed +5
-5
lines changed
Expand file tree Collapse file tree 3 files changed +5
-5
lines changed Original file line number Diff line number Diff line change @@ -358,9 +358,9 @@ def connect_to_ducklake():
358358 con = duckdb.connect()
359359
360360 # Install required extensions
361- con.execute( " INSTALL ducklake; " )
362- con.execute( " INSTALL postgres; " )
363- con.execute( " INSTALL httpfs; " )
361+ con.install_extension( " ducklake" )
362+ con.install_extension( " postgres" )
363+ con.install_extension( " httpfs" )
364364
365365 # Configure S3/MinIO settings
366366 s3_config = {
Original file line number Diff line number Diff line change @@ -99,8 +99,8 @@ def main():
9999 con = duckdb .connect ()
100100
101101 # 1) install extensions
102- con .execute ( "INSTALL ducklake; " )
103- con .execute ( "INSTALL postgres;" )
102+ con .install_extension ( " ducklake" )
103+ con .install_extension ( " postgres" )
104104
105105 # 2) configure HTTPFS for MinIO
106106 for key , val in {
You can’t perform that action at this time.
0 commit comments