stevenzwu commented on code in PR #6934: URL: https://github.com/apache/iceberg/pull/6934#discussion_r1185489679
########## core/src/main/java/org/apache/iceberg/util/JsonUtil.java: ########## @@ -173,6 +176,18 @@ public static String getStringOrNull(String property, JsonNode node) { return getString(property, node); } + public static ByteBuffer getByteBufferOrNull(String property, JsonNode node) { + if (!node.has(property) || node.get(property).isNull()) { + return null; + } + + JsonNode pNode = node.get(property); + Preconditions.checkArgument( + pNode.isTextual(), "Cannot parse from non-text value: %s: %s", property, pNode); Review Comment: I also fixed a couple other error msgs with the same problem. -- 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