You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by pr...@apache.org on 2015/08/05 02:31:40 UTC

hive git commit: HIVE-11452: HIVE-11321 broke ORC bloom filter index creation (Prasanth Jayachandran reviewed by Gopal V)

Repository: hive
Updated Branches:
  refs/heads/master 9adc385f7 -> f33e15372


HIVE-11452: HIVE-11321 broke ORC bloom filter index creation (Prasanth Jayachandran reviewed by Gopal V)


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

Branch: refs/heads/master
Commit: f33e1537292d7f1b1f486d7b31c6485b27ce623e
Parents: 9adc385
Author: Prasanth Jayachandran <j....@gmail.com>
Authored: Tue Aug 4 17:31:28 2015 -0700
Committer: Prasanth Jayachandran <j....@gmail.com>
Committed: Tue Aug 4 17:31:28 2015 -0700

----------------------------------------------------------------------
 ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcFile.java | 3 +++
 1 file changed, 3 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/f33e1537/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcFile.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcFile.java b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcFile.java
index 2210769..a60ebb4 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcFile.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/io/orc/OrcFile.java
@@ -248,6 +248,9 @@ public final class OrcFile {
 
       paddingTolerance =
           OrcConf.BLOCK_PADDING_TOLERANCE.getDouble(tableProperties, conf);
+
+      bloomFilterColumns = OrcConf.BLOOM_FILTER_COLUMNS.getString(tableProperties,
+          conf);
       bloomFilterFpp = OrcConf.BLOOM_FILTER_FPP.getDouble(tableProperties,
           conf);
     }