diff --git a/testdata/workloads/functional-query/queries/QueryTest/iceberg-compute-stats.test b/testdata/workloads/functional-query/queries/QueryTest/iceberg-compute-stats.test index e07d4f976..111dcdeab 100644 --- a/testdata/workloads/functional-query/queries/QueryTest/iceberg-compute-stats.test +++ b/testdata/workloads/functional-query/queries/QueryTest/iceberg-compute-stats.test @@ -21,7 +21,10 @@ show table stats ice_alltypes ---- LABELS #ROWS, #Files, Size, Bytes Cached, Cache Replication, Format, Incremental stats, Location ---- RESULTS: VERIFY_IS_EQUAL -2,1,'2.33KB','NOT CACHED','NOT CACHED','PARQUET','false','$NAMENODE/test-warehouse/$DATABASE.db/ice_alltypes' +# The file size is on the boundary between 2.32KB and 2.33KB. The build version is written +# into the file, and "x.y.z-RELEASE" is one byte shorter than "x.y.z-SNAPSHOT". In release +# builds the file size is 2.32KB, in snapshot builds it is 2.33KB. +2,1,regex:'2.3[23]KB','NOT CACHED','NOT CACHED','PARQUET','false','$NAMENODE/test-warehouse/$DATABASE.db/ice_alltypes' ---- TYPES BIGINT,BIGINT,STRING,STRING,STRING,STRING,STRING,STRING ====