We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
There was an error while loading. Please reload this page.
1 parent 755a5e6 commit cf9c152Copy full SHA for cf9c152
paimon-iceberg/src/test/java/org/apache/paimon/iceberg/IcebergMetadataTest.java
@@ -523,9 +523,7 @@ void testReadMetadataWithSnapshotSummary() throws Exception {
523
// Verify change fields
524
assertThat(snapshot.summary().getSummary().get("added-data-files")).isEqualTo("1");
525
assertThat(snapshot.summary().getSummary().get("added-records")).isEqualTo("10");
526
-
527
- // Note: added-files-size is verified in the Iceberg native table test above
528
- // as it's computed by Iceberg, not Paimon
+ assertThat(snapshot.summary().getSummary().get("added-files-size")).isEqualTo("100");
529
}
530
531
/** Helper method to create a basic Iceberg table with simple schema. */
0 commit comments