hive git commit: HIVE-19509: Disable tests that are failing continuously (Jesus Camacho Rodriguez) (addendum)

2018-05-14 Thread jcamacho
Repository: hive
Updated Branches:
  refs/heads/master b96487071 -> 042eb3988


HIVE-19509: Disable tests that are failing continuously (Jesus Camacho 
Rodriguez) (addendum)


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

Branch: refs/heads/master
Commit: 042eb39884dbcc4acb8af38dfdbd392c408527a8
Parents: b964870
Author: Jesus Camacho Rodriguez 
Authored: Mon May 14 14:25:58 2018 -0700
Committer: Jesus Camacho Rodriguez 
Committed: Mon May 14 14:25:58 2018 -0700

--
 .../src/test/java/org/apache/hadoop/hive/ql/TestAcidOnTez.java   | 2 ++
 itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestSSL.java | 1 +
 .../main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java | 4 
 .../java/org/apache/hadoop/hive/metastore/TestOldSchema.java | 2 ++
 .../test/java/org/apache/hadoop/hive/metastore/TestStats.java| 2 ++
 5 files changed, 11 insertions(+)
--


http://git-wip-us.apache.org/repos/asf/hive/blob/042eb398/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestAcidOnTez.java
--
diff --git 
a/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestAcidOnTez.java 
b/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestAcidOnTez.java
index ac28e43..0af91bd 100644
--- 
a/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestAcidOnTez.java
+++ 
b/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestAcidOnTez.java
@@ -185,6 +185,7 @@ public class TestAcidOnTez {
* Tests non acid to acid conversion where starting table has non-standard 
layout, i.e.
* where "original" files are not immediate children of the partition dir
*/
+  @Ignore("HIVE-19509: Disable tests that are failing continuously")
   @Test
   public void testNonStandardConversion01() throws Exception {
 HiveConf confForTez = new HiveConf(hiveConf); // make a clone of existing 
hive conf
@@ -431,6 +432,7 @@ public class TestAcidOnTez {
* {@link org.apache.hadoop.hive.ql.metadata.Hive#moveAcidFiles(FileSystem, 
FileStatus[], Path, List)} drops the union subdirs
* since each delta file has a unique name.
*/
+  @Ignore("HIVE-19509: Disable tests that are failing continuously")
   @Test
   public void testCtasTezUnion() throws Exception {
 HiveConf confForTez = new HiveConf(hiveConf); // make a clone of existing 
hive conf

http://git-wip-us.apache.org/repos/asf/hive/blob/042eb398/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestSSL.java
--
diff --git a/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestSSL.java 
b/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestSSL.java
index 8aefef8..714fba2 100644
--- a/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestSSL.java
+++ b/itests/hive-unit/src/test/java/org/apache/hive/jdbc/TestSSL.java
@@ -350,6 +350,7 @@ public class TestSSL {
* Start HS2 in Http mode with SSL enabled, open a SSL connection and fetch 
data
* @throws Exception
*/
+  @Ignore("HIVE-19509: Disable tests that are failing continuously")
   @Test
   public void testSSLFetchHttp() throws Exception {
 SSLTestUtils.setSslConfOverlay(confOverlay);

http://git-wip-us.apache.org/repos/asf/hive/blob/042eb398/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java
--
diff --git 
a/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java 
b/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java
index 1814f0f..ffa9b0e 100644
--- 
a/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java
+++ 
b/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java
@@ -58,6 +58,8 @@ public class CliConfigs {
 excludesFrom(testConfigProps, "druid.query.files");
 excludesFrom(testConfigProps, "druid.kafka.query.files");
 
+excludeQuery("fouter_join_ppr.q");
+
 setResultsDir("ql/src/test/results/clientpositive");
 setLogDir("itests/qtest/target/qfile-results/clientpositive");
 
@@ -225,6 +227,8 @@ public class CliConfigs {
 excludeQuery("sysdb.q");
 excludeQuery("tez_smb_1.q");
 excludeQuery("union_fast_stats.q");
+excludeQuery("schema_evol_orc_acidvec_part.q");
+excludeQuery("schema_evol_orc_vec_part_llap_io.q");
 
 setResultsDir("ql/src/test/results/clientpositive/llap");
 setLogDir("itests/qtest/target/qfile-results/clientpositive");

http://git-wip-us.apache.org/repos/asf/hive/blob/042eb398/standalone-metastore/src/te

hive git commit: HIVE-19509: Disable tests that are failing continuously (Jesus Camacho Rodriguez) (addendum)

2018-05-14 Thread jcamacho
Repository: hive
Updated Branches:
  refs/heads/master 4d2cd44a4 -> 5d3c5387e


HIVE-19509: Disable tests that are failing continuously (Jesus Camacho 
Rodriguez) (addendum)


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

Branch: refs/heads/master
Commit: 5d3c5387ea56015516f357365a521d901366ad9a
Parents: 4d2cd44
Author: Jesus Camacho Rodriguez 
Authored: Mon May 14 09:17:16 2018 -0700
Committer: Jesus Camacho Rodriguez 
Committed: Mon May 14 09:17:16 2018 -0700

--
 .../main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java| 1 +
 1 file changed, 1 insertion(+)
--


http://git-wip-us.apache.org/repos/asf/hive/blob/5d3c5387/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java
--
diff --git 
a/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java 
b/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java
index a94a41b..1814f0f 100644
--- 
a/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java
+++ 
b/itests/util/src/main/java/org/apache/hadoop/hive/cli/control/CliConfigs.java
@@ -224,6 +224,7 @@ public class CliConfigs {
 excludeQuery("special_character_in_tabnames_1.q");
 excludeQuery("sysdb.q");
 excludeQuery("tez_smb_1.q");
+excludeQuery("union_fast_stats.q");
 
 setResultsDir("ql/src/test/results/clientpositive/llap");
 setLogDir("itests/qtest/target/qfile-results/clientpositive");