Repository: hive Updated Branches: refs/heads/master ddab69c49 -> 8c182ae10
HIVE-13499 - TestJdbcWithMiniHS2.testConcurrentStatements is hanging - Temp patch to disable test Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/8c182ae1 Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/8c182ae1 Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/8c182ae1 Branch: refs/heads/master Commit: 8c182ae10bc03be98ad38defde7518eeadfe9e1b Parents: ddab69c Author: Thejas Nair <[email protected]> Authored: Wed Apr 13 00:53:25 2016 -0700 Committer: Thejas Nair <[email protected]> Committed: Wed Apr 13 00:53:25 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/8c182ae1/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..9e3c7e1 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,6 +64,7 @@ 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 { @@ -130,6 +131,7 @@ public class TestJdbcWithMiniHS2 { stmt.close(); } + @Ignore("Disabling test until hanging issue is resolved.") @Test public void testConcurrentStatements() throws Exception { String tableName = "testConcurrentStatements";
