You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by se...@apache.org on 2017/04/25 17:33:16 UTC

[2/4] hive git commit: HIVE-16519 : Fix exception thrown by checkOutputSpecs (slim bouguerra, reviewed by Sergey Shelukhin)

HIVE-16519 : Fix exception thrown by checkOutputSpecs (slim bouguerra, reviewed by Sergey Shelukhin)


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

Branch: refs/heads/branch-2
Commit: 3e37e3161a18b1e1c5b3f8cc4c1e4d572334f59d
Parents: cce4d5e
Author: sergey <se...@apache.org>
Authored: Tue Apr 25 10:32:21 2017 -0700
Committer: sergey <se...@apache.org>
Committed: Tue Apr 25 10:32:41 2017 -0700

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hive/druid/io/DruidOutputFormat.java    | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/3e37e316/druid-handler/src/java/org/apache/hadoop/hive/druid/io/DruidOutputFormat.java
----------------------------------------------------------------------
diff --git a/druid-handler/src/java/org/apache/hadoop/hive/druid/io/DruidOutputFormat.java b/druid-handler/src/java/org/apache/hadoop/hive/druid/io/DruidOutputFormat.java
index 40a2022..28d859e 100644
--- a/druid-handler/src/java/org/apache/hadoop/hive/druid/io/DruidOutputFormat.java
+++ b/druid-handler/src/java/org/apache/hadoop/hive/druid/io/DruidOutputFormat.java
@@ -232,6 +232,6 @@ public class DruidOutputFormat<K, V> implements HiveOutputFormat<K, DruidWritabl
 
   @Override
   public void checkOutputSpecs(FileSystem ignored, JobConf job) throws IOException {
-    throw new UnsupportedOperationException("not implemented yet");
+    // NOOP
   }
 }