Skip to content

Commit 603f060

Browse files
committed
Properly enable OOC-processing for DuckDB
1 parent e5624ba commit 603f060

File tree

1 file changed

+3
-1
lines changed

1 file changed

+3
-1
lines changed

tests/tpch/test_duckdb.py

Lines changed: 3 additions & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -9,7 +9,7 @@
99

1010

1111
@pytest.fixture
12-
def connection(local, restart):
12+
def connection(local, restart, tmp_path):
1313
def _():
1414
con = duckdb.connect()
1515

@@ -20,6 +20,8 @@ def _():
2020
con.load_extension("httpfs")
2121
con.sql(
2222
f"""
23+
SET temp_directory='{tmp_path}';
24+
2325
SET s3_region='us-east-2';
2426
SET s3_access_key_id='{creds.access_key}';
2527
SET s3_secret_access_key='{creds.secret_key}';

0 commit comments

Comments
 (0)