pan3793 commented on code in PR #6815: URL: https://github.com/apache/kyuubi/pull/6815#discussion_r1848201823
########## kyuubi-hive-jdbc/src/main/java/org/apache/kyuubi/jdbc/hive/KyuubiBaseResultSet.java: ########## @@ -338,6 +338,10 @@ private Object evaluate(TTypeId columnType, Object value) { if (value instanceof String) { return ((String) value).getBytes(); } + case INT_TYPE: + if (value instanceof String) { + return Integer.valueOf((String) value); Review Comment: why this is required? -- 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: notifications-unsubscr...@kyuubi.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org --------------------------------------------------------------------- To unsubscribe, e-mail: notifications-unsubscr...@kyuubi.apache.org For additional commands, e-mail: notifications-h...@kyuubi.apache.org