ajantha-bhat commented on code in PR #6789: URL: https://github.com/apache/iceberg/pull/6789#discussion_r1138154200
########## nessie/src/main/java/org/apache/iceberg/nessie/NessieIcebergClient.java: ########## @@ -165,10 +166,10 @@ private TableIdentifier toIdentifier(EntriesResponse.Entry entry) { return TableIdentifier.of(elements.toArray(new String[elements.size()])); } - public IcebergTable table(TableIdentifier tableIdentifier) { + public IcebergTable table(TableIdentifier tableIdentifier, Reference ref) { Review Comment: As mentioned, I changed `renameTable` and `dropTable` (it was not using TableOperation) to be similar to `commitTable`. If I don't pass the reference, calling `getRef()` may give refreshed reference (maybe refreshed by concurrent commit). So, to maintain the same state of reference for a whole operation, I am holding the state and passing it. -- 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