morrySnow commented on code in PR #37773: URL: https://github.com/apache/doris/pull/37773#discussion_r1679279299
########## fe/fe-core/src/main/java/org/apache/doris/datasource/hive/HiveMetaStoreClientHelper.java: ########## @@ -883,7 +883,7 @@ public static String firstPresentOrDefault(String defaultValue, Optional<String> public static String getByte(String altValue) { if (altValue != null && altValue.length() > 0) { try { - return Character.toString((char) (Byte.parseByte(altValue) + 256) % 256); + return String.valueOf((char) (Byte.parseByte(altValue) + 256) % 256); Review Comment: ```suggestion return Character.toString((char) ((Byte.parseByte(altValue) + 256) % 256)); ``` -- 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: commits-unsubscr...@doris.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: commits-unsubscr...@doris.apache.org For additional commands, e-mail: commits-h...@doris.apache.org