From 1e9b4be9d0f77f0e66554571d19a8ffd11ea1757 Mon Sep 17 00:00:00 2001 From: Alexander Droste Date: Wed, 18 Feb 2026 08:00:17 +0000 Subject: [PATCH] fix: install and load httpfs in setup phase Signed-off-by: Alexander Droste --- benchmarks/duckdb-bench/src/lib.rs | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/benchmarks/duckdb-bench/src/lib.rs b/benchmarks/duckdb-bench/src/lib.rs index f6da732aef4..d43959ae126 100644 --- a/benchmarks/duckdb-bench/src/lib.rs +++ b/benchmarks/duckdb-bench/src/lib.rs @@ -81,6 +81,10 @@ impl DuckClient { let connection = db.connect()?; vortex_duckdb::register_table_functions(&connection)?; + // Install and load httpfs so DuckDB can access remote files (S3, GCS, HTTP). + connection.query("INSTALL httpfs;")?; + connection.query("LOAD httpfs;")?; + // Enable Parquet metadata cache for all benchmark runs. // // `parquet_metadata_cache` is an extension-specific option that's