rdblue commented on code in PR #5450:
URL: https://github.com/apache/iceberg/pull/5450#discussion_r948426210
##########
core/src/main/java/org/apache/iceberg/MetadataUpdateParser.java:
##########
@@ -252,6 +254,10 @@ public static MetadataUpdate fromJson(JsonNode jsonNode) {
return readAddSortOrder(jsonNode);
case SET_DEFAULT_SORT_ORDER:
return readSetDefaultSortOrder(jsonNode);
+ case SET_STATISTICS:
+ return readSetStatistics(jsonNode);
+ case REMOVE_STATISTICS:
+ return readRemoveStatistics(jsonNode);
Review Comment:
Looks like writing these is not yet supported?
I think this needs the write path and round-trip serialization tests.
--
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: [email protected]
For queries about this service, please contact Infrastructure at:
[email protected]
---------------------------------------------------------------------
To unsubscribe, e-mail: [email protected]
For additional commands, e-mail: [email protected]