Return-Path: X-Original-To: apmail-hive-commits-archive@www.apache.org Delivered-To: apmail-hive-commits-archive@www.apache.org Received: from mail.apache.org (hermes.apache.org [140.211.11.3]) by minotaur.apache.org (Postfix) with SMTP id 14B5717E2B for ; Mon, 20 Oct 2014 18:54:51 +0000 (UTC) Received: (qmail 44083 invoked by uid 500); 20 Oct 2014 18:54:51 -0000 Delivered-To: apmail-hive-commits-archive@hive.apache.org Received: (qmail 44039 invoked by uid 500); 20 Oct 2014 18:54:50 -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 44028 invoked by uid 99); 20 Oct 2014 18:54:50 -0000 Received: from nike.apache.org (HELO nike.apache.org) (192.87.106.230) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Oct 2014 18:54:50 +0000 X-ASF-Spam-Status: No, hits=-2000.0 required=5.0 tests=ALL_TRUSTED X-Spam-Check-By: apache.org Received: from [140.211.11.4] (HELO eris.apache.org) (140.211.11.4) by apache.org (qpsmtpd/0.29) with ESMTP; Mon, 20 Oct 2014 18:54:29 +0000 Received: from eris.apache.org (localhost [127.0.0.1]) by eris.apache.org (Postfix) with ESMTP id 0573E23889ED; Mon, 20 Oct 2014 18:54:28 +0000 (UTC) Content-Type: text/plain; charset="utf-8" MIME-Version: 1.0 Content-Transfer-Encoding: 7bit Subject: svn commit: r1633200 - /hive/trunk/bin/hive Date: Mon, 20 Oct 2014 18:54:27 -0000 To: commits@hive.apache.org From: brock@apache.org X-Mailer: svnmailer-1.0.9 Message-Id: <20141020185428.0573E23889ED@eris.apache.org> X-Virus-Checked: Checked by ClamAV on apache.org Author: brock Date: Mon Oct 20 18:54:27 2014 New Revision: 1633200 URL: http://svn.apache.org/r1633200 Log: HIVE-8500 - beeline does not need to set hive.aux.jars.path (Mohit Sabharwal via Brock) Modified: hive/trunk/bin/hive Modified: hive/trunk/bin/hive URL: http://svn.apache.org/viewvc/hive/trunk/bin/hive?rev=1633200&r1=1633199&r2=1633200&view=diff ============================================================================== --- hive/trunk/bin/hive (original) +++ hive/trunk/bin/hive Mon Oct 20 18:54:27 2014 @@ -240,7 +240,9 @@ if [[ -n $HBASE_BIN ]] ; then fi if [ "${AUX_PARAM}" != "" ]; then - HIVE_OPTS="$HIVE_OPTS --hiveconf hive.aux.jars.path=${AUX_PARAM}" + if [[ "$SERVICE" != beeline ]]; then + HIVE_OPTS="$HIVE_OPTS --hiveconf hive.aux.jars.path=${AUX_PARAM}" + fi AUX_JARS_CMD_LINE="-libjars ${AUX_PARAM}" fi