rdblue commented on code in PR #12593: URL: https://github.com/apache/iceberg/pull/12593#discussion_r2012803569
########## core/src/main/java/org/apache/iceberg/TableMetadataParser.java: ########## @@ -465,12 +463,10 @@ public static TableMetadata fromJson(String metadataLocation, JsonNode node) { currentSnapshotId = -1L; } - Boolean rowLineage = JsonUtil.getBoolOrNull(ROW_LINEAGE, node); long lastRowId; - if (rowLineage != null && rowLineage) { + if (formatVersion >= 3) { Review Comment: This is going to be replaced in the next commit anyway, so I'll leave it as-is. -- 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