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/07 02:13:54 UTC

hive git commit: HIVE-15817 : Fix LlapDump classpath in llapdum.sh (Takanobu Asanuma, reviewed by Sergey Shelukhin)

Repository: hive
Updated Branches:
  refs/heads/master 0a4446e64 -> da6f581fc


HIVE-15817 : Fix LlapDump classpath in llapdum.sh (Takanobu Asanuma, 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/da6f581f
Tree: http://git-wip-us.apache.org/repos/asf/hive/tree/da6f581f
Diff: http://git-wip-us.apache.org/repos/asf/hive/diff/da6f581f

Branch: refs/heads/master
Commit: da6f581fcde0ed1b7f91a20dc5adbefb8839ed7d
Parents: 0a4446e
Author: Sergey Shelukhin <se...@apache.org>
Authored: Mon Feb 6 17:56:55 2017 -0800
Committer: Sergey Shelukhin <se...@apache.org>
Committed: Mon Feb 6 18:13:46 2017 -0800

----------------------------------------------------------------------
 bin/ext/llapdump.sh | 2 +-
 1 file changed, 1 insertion(+), 1 deletion(-)
----------------------------------------------------------------------


http://git-wip-us.apache.org/repos/asf/hive/blob/da6f581f/bin/ext/llapdump.sh
----------------------------------------------------------------------
diff --git a/bin/ext/llapdump.sh b/bin/ext/llapdump.sh
index 2564e82..c675f77 100644
--- a/bin/ext/llapdump.sh
+++ b/bin/ext/llapdump.sh
@@ -17,7 +17,7 @@ THISSERVICE=llapdump
 export SERVICE_LIST="${SERVICE_LIST}${THISSERVICE} "
 
 llapdump () {
-  CLASS=org.apache.hive.jdbc.LlapDump
+  CLASS=org.apache.hadoop.hive.llap.LlapDump
   HIVE_OPTS=''
   execHiveCmd $CLASS "$@"
 }