danielcweeks commented on code in PR #7176:
URL: https://github.com/apache/iceberg/pull/7176#discussion_r1186442273
##########
snowflake/src/main/java/org/apache/iceberg/snowflake/SnowflakeCatalog.java:
##########
@@ -114,9 +121,13 @@ public void initialize(String name, Map<String, String>
properties) {
cnfe);
}
+ String uniqueId = UUID.randomUUID().toString().replace("-",
"").substring(0, UNIQUE_ID_LENGTH);
Review Comment:
Rather than a unique identifier, I would suggest using the build info:
`IcebergBuild.fullVersion()` and `IcebergBuild.gitCommitShortId()` so you know
what client version and build is being used.
--
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]