This is an automated email from the ASF dual-hosted git repository.
michaelsmith pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/impala.git
The following commit(s) were added to refs/heads/master by this push:
new 6649b92cb IMPALA-14635: We should not check for exact file sizes in
iceberg-metadata-tables.test
6649b92cb is described below
commit 6649b92cb2fe1d90b537af19b9fb76afcc473fbf
Author: Zoltan Borok-Nagy <[email protected]>
AuthorDate: Thu Dec 18 11:42:32 2025 +0100
IMPALA-14635: We should not check for exact file sizes in
iceberg-metadata-tables.test
The Impala version string is written into the Parquet footer. This
means in our tests we shouldn't check for exact file sizes of tables
written during data loading/testing.
Change-Id: I589ade5f81879ede54ff41466b77b5db3349a14f
Reviewed-on: http://gerrit.cloudera.org:8080/23802
Reviewed-by: Impala Public Jenkins <[email protected]>
Reviewed-by: Riza Suminto <[email protected]>
Tested-by: Impala Public Jenkins <[email protected]>
---
.../functional-query/queries/QueryTest/iceberg-metadata-tables.test | 2 +-
1 file changed, 1 insertion(+), 1 deletion(-)
diff --git
a/testdata/workloads/functional-query/queries/QueryTest/iceberg-metadata-tables.test
b/testdata/workloads/functional-query/queries/QueryTest/iceberg-metadata-tables.test
index 438f11e35..9b6033668 100644
---
a/testdata/workloads/functional-query/queries/QueryTest/iceberg-metadata-tables.test
+++
b/testdata/workloads/functional-query/queries/QueryTest/iceberg-metadata-tables.test
@@ -101,7 +101,7 @@ INT,STRING,BIGINT,INT,BIGINT,INT,INT,INT,INT,INT,INT,STRING
---- QUERY
select * from functional_parquet.iceberg_query_metadata.`partitions`;
---- RESULTS
-3,3,1053,1,1,0,0,regex:.*,regex:\d+
+3,3,regex:\d+,1,1,0,0,regex:.*,regex:\d+
---- TYPES
BIGINT, INT, BIGINT, BIGINT, INT, BIGINT, INT, TIMESTAMP, BIGINT
====