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:18 UTC

[4/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/1b741024
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/1b741024
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/1b741024

Branch: refs/heads/branch-2.2
Commit: 1b741024536ef2ce5075436c091cec020b8123c1
Parents: 03941e3
Author: sergey <se...@apache.org>
Authored: Tue Apr 25 10:32:21 2017 -0700
Committer: sergey <se...@apache.org>
Committed: Tue Apr 25 10:33:00 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/1b741024/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 a7a897a..a2e936d 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
@@ -199,6 +199,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
   }
 }