You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by mg...@apache.org on 2020/04/15 15:38:58 UTC

[hive] branch master updated: HIVE-23205 ADDENDUM Do not run TestMTQueries until HIVE-23138 is finished (Miklos Gergely, reviewed by Jesus Camacho Rodriguez)

This is an automated email from the ASF dual-hosted git repository.

mgergely pushed a commit to branch master
in repository https://gitbox.apache.org/repos/asf/hive.git


The following commit(s) were added to refs/heads/master by this push:
     new 684473f  HIVE-23205 ADDENDUM Do not run TestMTQueries until HIVE-23138 is finished (Miklos Gergely, reviewed by Jesus Camacho Rodriguez)
684473f is described below

commit 684473f082458b1cb4fb1f7be1fc840b7f7b9bce
Author: miklosgergely <mg...@cloudera.com>
AuthorDate: Wed Apr 15 17:36:37 2020 +0200

    HIVE-23205 ADDENDUM Do not run TestMTQueries until HIVE-23138 is finished (Miklos Gergely, reviewed by Jesus Camacho Rodriguez)
---
 .../src/test/java/org/apache/hadoop/hive/ql/TestMTQueries.java         | 3 +++
 1 file changed, 3 insertions(+)

diff --git a/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestMTQueries.java b/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestMTQueries.java
index d72c14a..f2c81fd 100644
--- a/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestMTQueries.java
+++ b/itests/hive-unit/src/test/java/org/apache/hadoop/hive/ql/TestMTQueries.java
@@ -19,12 +19,15 @@
 package org.apache.hadoop.hive.ql;
 
 import java.io.File;
+
+import org.junit.Ignore;
 import org.junit.Test;
 import static org.junit.Assert.fail;
 
 /**
  * Suite for testing running of queries in multi-threaded mode.
  */
+@Ignore("Ignore until HIVE-23138 is finished")
 public class TestMTQueries extends BaseTestQueries {
 
   public TestMTQueries() {