nastra commented on code in PR #10899: URL: https://github.com/apache/iceberg/pull/10899#discussion_r1710827750
########## core/src/main/java/org/apache/iceberg/view/BaseViewOperations.java: ########## @@ -115,7 +115,7 @@ public void commit(ViewMetadata base, ViewMetadata metadata) { } // if the metadata is not changed, return early - if (base == metadata) { + if (metadata.equals(base)) { Review Comment: @nk1506 you'll need to add a suppresswarning in this case to the method -- 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