You are viewing a plain text version of this content. The canonical link for it is here.
Posted to gitbox@hive.apache.org by GitBox <gi...@apache.org> on 2022/04/18 18:00:11 UTC

[GitHub] [hive] saihemanth-cloudera commented on a diff in pull request #3167: HIVE-25091: Implemented connector provider for MSSQL and Oracle

saihemanth-cloudera commented on code in PR #3167:
URL: https://github.com/apache/hive/pull/3167#discussion_r852298420


##########
standalone-metastore/metastore-server/src/main/java/org/apache/hadoop/hive/metastore/dataconnector/jdbc/AbstractJDBCConnectorProvider.java:
##########
@@ -220,6 +224,8 @@ protected Connection getConnection() {
       rs = fetchColumnsViaDBMetaData(tableName);
       List<FieldSchema> cols = new ArrayList<>();
       while (rs.next()) {
+        String datatype = rs.getString("DATA_TYPE");

Review Comment:
   Need to  remove this unused variable



-- 
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: gitbox-unsubscribe@hive.apache.org

For queries about this service, please contact Infrastructure at:
users@infra.apache.org


---------------------------------------------------------------------
To unsubscribe, e-mail: gitbox-unsubscribe@hive.apache.org
For additional commands, e-mail: gitbox-help@hive.apache.org