pan3793 commented on code in PR #6815:
URL: https://github.com/apache/kyuubi/pull/6815#discussion_r1856767857


##########
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:
   I think this should be handled on the JDBC engine side, convert the 
Oracle-specific metadata and values to the Hive style



-- 
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]

Reply via email to