You are viewing a plain text version of this content. The canonical link for it is here.
Posted to commits@hive.apache.org by br...@apache.org on 2014/10/20 20:54:27 UTC

svn commit: r1633200 - /hive/trunk/bin/hive

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