Repository: hive Updated Branches: refs/heads/master 5cfc914e9 -> 99a2b8bd6
HIVE-19312 : MM tables don't work with BucketizedHIF (Sergey Shelukhin, reviewed by Gunther Hagleitner) ADDENDUM Project: http://git-wip-us.apache.org/repos/asf/hive/repo Commit: http://git-wip-us.apache.org/repos/asf/hive/commit/99a2b8bd Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/99a2b8bd Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/99a2b8bd Branch: refs/heads/master Commit: 99a2b8bd6b61df637efc42f28b24c9c301d3de30 Parents: 5cfc914 Author: sergey <[email protected]> Authored: Tue May 8 16:56:08 2018 -0700 Committer: sergey <[email protected]> Committed: Tue May 8 16:56:08 2018 -0700 ---------------------------------------------------------------------- .../org/apache/hadoop/hive/ql/io/BucketizedHiveInputFormat.java | 1 - 1 file changed, 1 deletion(-) ---------------------------------------------------------------------- http://git-wip-us.apache.org/repos/asf/hive/blob/99a2b8bd/ql/src/java/org/apache/hadoop/hive/ql/io/BucketizedHiveInputFormat.java ---------------------------------------------------------------------- diff --git a/ql/src/java/org/apache/hadoop/hive/ql/io/BucketizedHiveInputFormat.java b/ql/src/java/org/apache/hadoop/hive/ql/io/BucketizedHiveInputFormat.java index 58f0480..75fa09d 100644 --- a/ql/src/java/org/apache/hadoop/hive/ql/io/BucketizedHiveInputFormat.java +++ b/ql/src/java/org/apache/hadoop/hive/ql/io/BucketizedHiveInputFormat.java @@ -137,7 +137,6 @@ public class BucketizedHiveInputFormat<K extends WritableComparable, V extends W if (part.getTableDesc() != null) { // This can happen for truncate table case for non-MM tables. mmIds = getMmValidWriteIds(newjob, part.getTableDesc(), null); - throw new AssertionError(dir + ": " + part); } // TODO: should this also handle ACID operation, etc.? seems to miss a lot of stuff from HIF. Path[] finalDirs = (mmIds == null) ? new Path[] { dir }
