findepi commented on code in PR #10521: URL: https://github.com/apache/iceberg/pull/10521#discussion_r1644259514
########## api/src/main/java/org/apache/iceberg/catalog/TableIdentifier.java: ########## @@ -80,7 +81,7 @@ public String name() { public TableIdentifier toLowerCase() { String[] newLevels = Arrays.stream(namespace().levels()).map(String::toLowerCase).toArray(String[]::new); - String newName = name().toLowerCase(); + String newName = name().toLowerCase(Locale.ROOT); Review Comment: `TestTableIdentifier` calls `org.apache.iceberg.catalog.TableIdentifier#toLowerCase` i did not find calls to `String#toLowerCase` in `TestTableIdentifier` -- 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