From 5b5a9f9fb2823337728759997fddd53853fdc4a5 Mon Sep 17 00:00:00 2001 From: Raunak Bhagat Date: Tue, 17 Dec 2024 11:52:24 -0800 Subject: [PATCH] Remove trailing slash --- benchmarking/tpcds/ray_entrypoint.py | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/benchmarking/tpcds/ray_entrypoint.py b/benchmarking/tpcds/ray_entrypoint.py index 34f2511fa7..20656b37b9 100644 --- a/benchmarking/tpcds/ray_entrypoint.py +++ b/benchmarking/tpcds/ray_entrypoint.py @@ -36,7 +36,7 @@ def register_catalog(scale_factor: int) -> SQLCatalog: return SQLCatalog( tables={ table: daft.read_parquet( - f"s3://eventual-dev-benchmarking-fixtures/uncompressed/tpcds-dbgen/{scale_factor}/{table}.parquet/" + f"s3://eventual-dev-benchmarking-fixtures/uncompressed/tpcds-dbgen/{scale_factor}/{table}.parquet" ) for table in TABLE_NAMES }