danielcweeks commented on code in PR #12672: URL: https://github.com/apache/iceberg/pull/12672#discussion_r2049732360
########## core/src/main/java/org/apache/iceberg/ContentFileParser.java: ########## @@ -164,6 +165,7 @@ static ContentFile<?> fromJson(JsonNode jsonNode, PartitionSpec spec) { List<Long> splitOffsets = JsonUtil.getLongListOrNull(SPLIT_OFFSETS, jsonNode); int[] equalityFieldIds = JsonUtil.getIntArrayOrNull(EQUALITY_IDS, jsonNode); Integer sortOrderId = JsonUtil.getIntOrNull(SORT_ORDER_ID, jsonNode); + Long firstRowId = JsonUtil.getLongOrNull(FIRST_ROW_ID, jsonNode); Review Comment: Are we missing the corresponding `toJson` here? -- 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