Return-Path: X-Original-To: archive-asf-public-internal@cust-asf2.ponee.io Delivered-To: archive-asf-public-internal@cust-asf2.ponee.io Received: from cust-asf.ponee.io (cust-asf.ponee.io [163.172.22.183]) by cust-asf2.ponee.io (Postfix) with ESMTP id A37FF200C22 for ; Tue, 7 Feb 2017 03:13:55 +0100 (CET) Received: by cust-asf.ponee.io (Postfix) id A2068160B62; Tue, 7 Feb 2017 02:13:55 +0000 (UTC) Delivered-To: archive-asf-public@cust-asf.ponee.io Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by cust-asf.ponee.io (Postfix) with SMTP id 1B943160B56 for ; Tue, 7 Feb 2017 03:13:54 +0100 (CET) Received: (qmail 70489 invoked by uid 500); 7 Feb 2017 02:13:54 -0000 Mailing-List: contact commits-help@hive.apache.org; run by ezmlm Precedence: bulk List-Help: List-Unsubscribe: List-Post: List-Id: Reply-To: hive-dev@hive.apache.org Delivered-To: mailing list commits@hive.apache.org Received: (qmail 70478 invoked by uid 99); 7 Feb 2017 02:13:54 -0000 Received: from git1-us-west.apache.org (HELO git1-us-west.apache.org) (140.211.11.23) by apache.org (qpsmtpd/0.29) with ESMTP; Tue, 07 Feb 2017 02:13:54 +0000 Received: by git1-us-west.apache.org (ASF Mail Server at git1-us-west.apache.org, from userid 33) id 206CFDFBE6; Tue, 7 Feb 2017 02:13:54 +0000 (UTC) Content-Type: text/plain; charset="us-ascii" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit From: sershe@apache.org To: commits@hive.apache.org Message-Id: <89aba2f1ee4240b580f790f5faadd2b3@git.apache.org> X-Mailer: ASF-Git Admin Mailer Subject: hive git commit: HIVE-15817 : Fix LlapDump classpath in llapdum.sh (Takanobu Asanuma, reviewed by Sergey Shelukhin) Date: Tue, 7 Feb 2017 02:13:54 +0000 (UTC) archived-at: Tue, 07 Feb 2017 02:13:55 -0000 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 Authored: Mon Feb 6 17:56:55 2017 -0800 Committer: Sergey Shelukhin 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 "$@" }