[52/62] hive git commit: HIVE-14991: JDBC result set iterator has useless DEBUG log (Prasanth Jayachandran reviewed by Vaibhav Gumashta)

2016-10-18 Thread weiz
HIVE-14991: JDBC result set iterator has useless DEBUG log (Prasanth 
Jayachandran reviewed by Vaibhav Gumashta)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/3bab49a3
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/3bab49a3
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/3bab49a3

Branch: refs/heads/hive-14535
Commit: 3bab49a3210c857d599cb5706706d2c2a30ee63e
Parents: ad6ce07
Author: Prasanth Jayachandran 
Authored: Mon Oct 17 14:09:27 2016 -0700
Committer: Prasanth Jayachandran 
Committed: Mon Oct 17 14:09:27 2016 -0700

--
 jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java | 5 -
 1 file changed, 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hive/blob/3bab49a3/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java
--
diff --git a/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java 
b/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java
index 92fdbca..6a91381 100644
--- a/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java
+++ b/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java
@@ -377,7 +377,6 @@ public class HiveQueryResultSet extends HiveBaseResultSet {
 fetchedRowsItr = fetchedRows.iterator();
   }
 
-  String rowStr = "";
   if (fetchedRowsItr.hasNext()) {
 row = fetchedRowsItr.next();
   } else {
@@ -385,10 +384,6 @@ public class HiveQueryResultSet extends HiveBaseResultSet {
   }
 
   rowsFetched++;
-  if (LOG.isDebugEnabled()) {
-LOG.debug("Fetched row string: " + rowStr);
-  }
-
 } catch (SQLException eS) {
   throw eS;
 } catch (Exception ex) {



hive git commit: HIVE-14991: JDBC result set iterator has useless DEBUG log (Prasanth Jayachandran reviewed by Vaibhav Gumashta)

2016-10-17 Thread prasanthj
Repository: hive
Updated Branches:
  refs/heads/master ad6ce0781 -> 3bab49a32


HIVE-14991: JDBC result set iterator has useless DEBUG log (Prasanth 
Jayachandran reviewed by Vaibhav Gumashta)


Project: http://git-wip-us.apache.org/repos/asf/hive/repo
Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/3bab49a3
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/3bab49a3
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/3bab49a3

Branch: refs/heads/master
Commit: 3bab49a3210c857d599cb5706706d2c2a30ee63e
Parents: ad6ce07
Author: Prasanth Jayachandran 
Authored: Mon Oct 17 14:09:27 2016 -0700
Committer: Prasanth Jayachandran 
Committed: Mon Oct 17 14:09:27 2016 -0700

--
 jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java | 5 -
 1 file changed, 5 deletions(-)
--


http://git-wip-us.apache.org/repos/asf/hive/blob/3bab49a3/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java
--
diff --git a/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java 
b/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java
index 92fdbca..6a91381 100644
--- a/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java
+++ b/jdbc/src/java/org/apache/hive/jdbc/HiveQueryResultSet.java
@@ -377,7 +377,6 @@ public class HiveQueryResultSet extends HiveBaseResultSet {
 fetchedRowsItr = fetchedRows.iterator();
   }
 
-  String rowStr = "";
   if (fetchedRowsItr.hasNext()) {
 row = fetchedRowsItr.next();
   } else {
@@ -385,10 +384,6 @@ public class HiveQueryResultSet extends HiveBaseResultSet {
   }
 
   rowsFetched++;
-  if (LOG.isDebugEnabled()) {
-LOG.debug("Fetched row string: " + rowStr);
-  }
-
 } catch (SQLException eS) {
   throw eS;
 } catch (Exception ex) {