danielcweeks commented on code in PR #12094: URL: https://github.com/apache/iceberg/pull/12094#discussion_r1933030915
########## core/src/test/java/org/apache/iceberg/rest/responses/TestLoadTableResponse.java: ########## @@ -147,6 +147,23 @@ public void testRoundTripSerdeWithV2TableMetadata() throws Exception { assertRoundTripSerializesEquallyFrom(json, resp); } + @Test + public void testRoundTripSerdeWithV3TableMetadata() throws Exception { + String tableMetadataJson = readTableMetadataInputFile("TableMetadataV3ValidMinimal.json"); + TableMetadata v3Metadata = + TableMetadataParser.fromJson(TEST_METADATA_LOCATION, tableMetadataJson); + // Convert the TableMetadata JSON from the file to an object and then back to JSON so that + // missing fields Review Comment: Yeah, this was borrowed from above and looks like an auto-formatter issue. Fixed. -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: issues-unsubscr...@iceberg.apache.org For additional commands, e-mail: issues-h...@iceberg.apache.org