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/02/24 01:08:51 UTC

[19/50] [abbrv] hive git commit: HIVE-15941: Fix o.a.h.hive.ql.exec.tez.TezTask compilation issue with tez master (Rajesh Balamohan, reviewed by Siddharth Seth)

HIVE-15941: Fix o.a.h.hive.ql.exec.tez.TezTask compilation issue with tez master (Rajesh Balamohan, reviewed by Siddharth Seth)


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

Branch: refs/heads/hive-14535
Commit: 54977d2f05fca63d1bcfebf6673f85a3f5c6f8ad
Parents: 0debf9f
Author: Rajesh Balamohan <rb...@apache.org>
Authored: Mon Feb 20 05:53:41 2017 +0530
Committer: Rajesh Balamohan <rb...@apache.org>
Committed: Mon Feb 20 05:53:41 2017 +0530

----------------------------------------------------------------------
 .../java/org/apache/hadoop/hive/ql/exec/tez/TezTask.java | 11 +++++++++++
 1 file changed, 11 insertions(+)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/54977d2f/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezTask.java
----------------------------------------------------------------------
diff --git a/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezTask.java b/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezTask.java
index 69cbe0b..58f0b33 100644
--- a/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezTask.java
+++ b/ql/src/java/org/apache/hadoop/hive/ql/exec/tez/TezTask.java
@@ -627,6 +627,17 @@ public class TezTask extends Task<TezWork> {
       dagClient.close(); // Don't sync.
     }
 
+    public String getDagIdentifierString() {
+      // TODO: Implement this when tez is upgraded. TEZ-3550
+      return null;
+    }
+
+    public String getSessionIdentifierString() {
+      // TODO: Implement this when tez is upgraded. TEZ-3550
+      return null;
+    }
+
+
     @Override
     public String getExecutionContext() {
       return dagClient.getExecutionContext(); // Don't sync.