You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by th...@apache.org on 2016/04/13 19:55:58 UTC

[1/2] hive git commit: Revert "HIVE-13499 - TestJdbcWithMiniHS2.testConcurrentStatements is hanging - Temp patch to disable test"

Repository: hive
Updated Branches:
  refs/heads/master 8c182ae10 -> 98a7dd8c8


Revert "HIVE-13499 - TestJdbcWithMiniHS2.testConcurrentStatements is hanging - Temp patch to disable test"

This reverts commit 8c182ae10bc03be98ad38defde7518eeadfe9e1b.


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

Branch: refs/heads/master
Commit: b5fe2d2dd65ae0a78d4dc9a7c2e8c485e8082a54
Parents: 8c182ae
Author: Thejas Nair <th...@hortonworks.com>
Authored: Wed Apr 13 10:54:07 2016 -0700
Committer: Thejas Nair <th...@hortonworks.com>
Committed: Wed Apr 13 10:54:07 2016 -0700

----------------------------------------------------------------------
 .../src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java    | 2 --
 1 file changed, 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/b5fe2d2d/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java
----------------------------------------------------------------------
diff --git a/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java b/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java
index 9e3c7e1..10c8ff2 100644
--- a/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java
+++ b/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java
@@ -64,7 +64,6 @@ import org.junit.AfterClass;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.BeforeClass;
-import org.junit.Ignore;
 import org.junit.Test;
 
 public class TestJdbcWithMiniHS2 {
@@ -131,7 +130,6 @@ public class TestJdbcWithMiniHS2 {
     stmt.close();
   }
 
-  @Ignore("Disabling test until hanging issue is resolved.")
   @Test
   public void testConcurrentStatements() throws Exception {
     String tableName = "testConcurrentStatements";


[2/2] hive git commit: HIVE-13499 : TestJdbcWithMiniHS2 is hanging - temp patch to disable the test class

Posted by th...@apache.org.
HIVE-13499 : TestJdbcWithMiniHS2 is hanging - temp patch to disable the test class


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

Branch: refs/heads/master
Commit: 98a7dd8c88969654baadcee65d34863e97835aa4
Parents: b5fe2d2
Author: Thejas Nair <th...@hortonworks.com>
Authored: Wed Apr 13 10:55:50 2016 -0700
Committer: Thejas Nair <th...@hortonworks.com>
Committed: Wed Apr 13 10:55:50 2016 -0700

----------------------------------------------------------------------
 .../src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java    | 2 ++
 1 file changed, 2 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/98a7dd8c/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java
----------------------------------------------------------------------
diff --git a/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java b/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java
index 10c8ff2..857805a 100644
--- a/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java
+++ b/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestJdbcWithMiniHS2.java
@@ -64,8 +64,10 @@ import org.junit.AfterClass;
 import org.junit.Assert;
 import org.junit.Before;
 import org.junit.BeforeClass;
+import org.junit.Ignore;
 import org.junit.Test;
 
+@Ignore("Disabling test until hanging issue is resolved.")
 public class TestJdbcWithMiniHS2 {
   private static MiniHS2 miniHS2 = null;
   private static String dataFileDir;