You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by jc...@apache.org on 2018/05/31 23:09:53 UTC

[1/2] hive git commit: HIVE-19669: Upgrade ORC to 1.5.1 (Jesus Camacho Rodriguez, reviewed by Prasanth Jayachandran)

Repository: hive
Updated Branches:
  refs/heads/master 6c78edaa4 -> 06807bc8b


HIVE-19669: Upgrade ORC to 1.5.1 (Jesus Camacho Rodriguez, reviewed by Prasanth Jayachandran)


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

Branch: refs/heads/master
Commit: 5c321010418ef9d8ca879585eb7e0b851b6a094c
Parents: 6c78eda
Author: Jesus Camacho Rodriguez <jc...@apache.org>
Authored: Thu May 31 15:56:07 2018 -0700
Committer: Jesus Camacho Rodriguez <jc...@apache.org>
Committed: Thu May 31 15:56:07 2018 -0700

----------------------------------------------------------------------
 pom.xml                                                       | 2 +-
 ql/src/test/org/apache/hadoop/hive/ql/io/orc/TestOrcFile.java | 3 ---
 standalone-metastore/pom.xml                                  | 2 +-
 3 files changed, 2 insertions(+), 5 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/5c321010/pom.xml
----------------------------------------------------------------------
diff --git a/pom.xml b/pom.xml
index c492d62..4ca963e 100644
--- a/pom.xml
+++ b/pom.xml
@@ -185,7 +185,7 @@
     <libthrift.version>0.9.3</libthrift.version>
     <log4j2.version>2.10.0</log4j2.version>
     <opencsv.version>2.3</opencsv.version>
-    <orc.version>1.5.0</orc.version>
+    <orc.version>1.5.1</orc.version>
     <mockito-all.version>1.10.19</mockito-all.version>
     <mina.version>2.0.0-M5</mina.version>
     <netty.version>4.1.17.Final</netty.version>

http://git-wip-us.apache.org/repos/asf/hive/blob/5c321010/ql/src/test/org/apache/hadoop/hive/ql/io/orc/TestOrcFile.java
----------------------------------------------------------------------
diff --git a/ql/src/test/org/apache/hadoop/hive/ql/io/orc/TestOrcFile.java b/ql/src/test/org/apache/hadoop/hive/ql/io/orc/TestOrcFile.java
index a2036f2..dc0da9c 100644
--- a/ql/src/test/org/apache/hadoop/hive/ql/io/orc/TestOrcFile.java
+++ b/ql/src/test/org/apache/hadoop/hive/ql/io/orc/TestOrcFile.java
@@ -94,7 +94,6 @@ import org.apache.orc.StripeStatistics;
 import org.apache.orc.TypeDescription;
 import org.junit.Assert;
 import org.junit.Before;
-import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.TestName;
@@ -1657,7 +1656,6 @@ public class TestOrcFile {
     rows.close();
   }
 
-  @Ignore("ORC-367. Will be re-enabled in HIVE-19669")
   @Test
   public void testSeek() throws Exception {
     ObjectInspector inspector;
@@ -1773,7 +1771,6 @@ public class TestOrcFile {
     rows.close();
   }
 
-  @Ignore("ORC-367. Will be re-enabled in HIVE-19669")
   @Test
   public void testZeroCopySeek() throws Exception {
     ObjectInspector inspector;

http://git-wip-us.apache.org/repos/asf/hive/blob/5c321010/standalone-metastore/pom.xml
----------------------------------------------------------------------
diff --git a/standalone-metastore/pom.xml b/standalone-metastore/pom.xml
index 2a34da2..526a2cc 100644
--- a/standalone-metastore/pom.xml
+++ b/standalone-metastore/pom.xml
@@ -81,7 +81,7 @@
     <libthrift.version>0.9.3</libthrift.version>
     <log4j2.version>2.8.2</log4j2.version>
     <mockito-all.version>1.10.19</mockito-all.version>
-    <orc.version>1.5.0</orc.version>
+    <orc.version>1.5.1</orc.version>
     <protobuf.version>2.5.0</protobuf.version>
     <sqlline.version>1.3.0</sqlline.version>
     <storage-api.version>2.7.0-SNAPSHOT</storage-api.version>


[2/2] hive git commit: HIVE-19699: Re-enable TestReOptimization (Zoltan Haindrich, reviewed by Jesus Camacho Rodriguez)

Posted by jc...@apache.org.
HIVE-19699: Re-enable TestReOptimization (Zoltan Haindrich, reviewed by Jesus Camacho Rodriguez)


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

Branch: refs/heads/master
Commit: 06807bc8bb5cedd507bf32570a4d6b9eee764789
Parents: 5c32101
Author: Zoltan Haindrich <ki...@rxd.hu>
Authored: Thu May 31 15:57:54 2018 -0700
Committer: Jesus Camacho Rodriguez <jc...@apache.org>
Committed: Thu May 31 15:57:54 2018 -0700

----------------------------------------------------------------------
 .../apache/hadoop/hive/ql/plan/mapping/TestReOptimization.java   | 4 ++--
 1 file changed, 2 insertions(+), 2 deletions(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/06807bc8/ql/src/test/org/apache/hadoop/hive/ql/plan/mapping/TestReOptimization.java
----------------------------------------------------------------------
diff --git a/ql/src/test/org/apache/hadoop/hive/ql/plan/mapping/TestReOptimization.java b/ql/src/test/org/apache/hadoop/hive/ql/plan/mapping/TestReOptimization.java
index b945c60..a42b334 100644
--- a/ql/src/test/org/apache/hadoop/hive/ql/plan/mapping/TestReOptimization.java
+++ b/ql/src/test/org/apache/hadoop/hive/ql/plan/mapping/TestReOptimization.java
@@ -42,12 +42,10 @@ import org.junit.After;
 import org.junit.AfterClass;
 import org.junit.BeforeClass;
 import org.junit.ClassRule;
-import org.junit.Ignore;
 import org.junit.Rule;
 import org.junit.Test;
 import org.junit.rules.TestRule;
 
-@Ignore("Flaky. Will be re-enabled by HIVE-19697")
 public class TestReOptimization {
 
   @ClassRule
@@ -206,6 +204,8 @@ public class TestReOptimization {
     {
       // new hs2 instance session
       IDriver driver = createDriver("reoptimize");
+      // loading of metastore stats is async; execute a simple to ensure they are loaded
+      driver.run("select count(*) from tu group by id_uv");
       checkUsageOfRuntimeStats(driver, expectHs2Instance);
     }
   }