Skip to content

Commit 2bc0c23

Browse files
committed
chore: remove the gitkeep file that was blocking pg mount
1 parent fcff347 commit 2bc0c23

File tree

3 files changed

+5
-5
lines changed

3 files changed

+5
-5
lines changed

README.md

Lines changed: 3 additions & 3 deletions
Original file line numberDiff line numberDiff 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 = {

data/pgdata/.gitkeep

Whitespace-only changes.

ducklake-init/entrypoint.py

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff 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 {

0 commit comments

Comments
 (0)