From d25fac698655b5e7cb1ed1194dff5e1588efaab7 Mon Sep 17 00:00:00 2001 From: Yuya Ebihara Date: Sun, 7 Jun 2026 19:20:19 +0900 Subject: [PATCH] Fix misleading file extension for partition statistics --- tests/table/test_init.py | 6 +++--- 1 file changed, 3 insertions(+), 3 deletions(-) diff --git a/tests/table/test_init.py b/tests/table/test_init.py index 0c4ea258f3..d03556a5e9 100644 --- a/tests/table/test_init.py +++ b/tests/table/test_init.py @@ -1599,7 +1599,7 @@ def test_set_partition_statistics_update(table_v2_with_statistics: Table) -> Non partition_statistics_file = PartitionStatisticsFile( snapshot_id=snapshot_id, - statistics_path="s3://bucket/warehouse/stats.puffin", + statistics_path="s3://bucket/warehouse/stats.parquet", file_size_in_bytes=124, ) @@ -1619,7 +1619,7 @@ def test_set_partition_statistics_update(table_v2_with_statistics: Table) -> Non expected = """ { "snapshot-id": 3055729675574597004, - "statistics-path": "s3://bucket/warehouse/stats.puffin", + "statistics-path": "s3://bucket/warehouse/stats.parquet", "file-size-in-bytes": 124 }""" @@ -1637,7 +1637,7 @@ def test_remove_partition_statistics_update(table_v2_with_statistics: Table) -> partition_statistics_file = PartitionStatisticsFile( snapshot_id=snapshot_id, - statistics_path="s3://bucket/warehouse/stats.puffin", + statistics_path="s3://bucket/warehouse/stats.parquet", file_size_in_bytes=124, )