Skip to content

Commit 1fe603c

Browse files
committed
Fix ATTACH in test
1 parent 80b5c26 commit 1fe603c

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

tests/core/engine_adapter/test_duckdb.py

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -115,7 +115,7 @@ def test_ducklake_partitioning(adapter: EngineAdapter, duck_conn, tmp_path):
115115

116116
duck_conn.install_extension("ducklake")
117117
duck_conn.load_extension("ducklake")
118-
duck_conn.execute(f"ATTACH 'ducklake:{catalog}';")
118+
duck_conn.execute(f"ATTACH 'ducklake:{catalog}.ducklake' AS {catalog};")
119119

120120
# no partitions on catalog creation
121121
partition_info = duck_conn.execute(

0 commit comments

Comments
 (0)