snazy commented on code in PR #8385: URL: https://github.com/apache/iceberg/pull/8385#discussion_r1314874319
########## nessie/src/main/java/org/apache/iceberg/nessie/NessieIcebergClient.java: ########## @@ -513,6 +513,8 @@ private String buildCommitMsg(TableMetadata base, TableMetadata metadata, String "Iceberg %s against %s", metadata.currentSnapshot().operation(), tableName); } else if (base != null && metadata.currentSchemaId() != base.currentSchemaId()) { return String.format("Iceberg schema change against %s", tableName); + } else if (base == null) { + return String.format("Iceberg table registered with name %s", tableName); Review Comment: IMO `registered` has a special meaning, I'd favor `created/registered` instead of just `registered` -- 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