Author: xuefu
Date: Sat Feb  1 03:18:43 2014
New Revision: 1563370

URL: http://svn.apache.org/r1563370
Log:
HIVE-6328: Hive script should not overwrite AUX_CLASSPATH with 
HIVE_AUX_JARS_PATH if the latter is set (reviewed by Prasad)

Modified:
    hive/trunk/bin/hive

Modified: hive/trunk/bin/hive
URL: 
http://svn.apache.org/viewvc/hive/trunk/bin/hive?rev=1563370&r1=1563369&r2=1563370&view=diff
==============================================================================
--- hive/trunk/bin/hive (original)
+++ hive/trunk/bin/hive Sat Feb  1 03:18:43 2014
@@ -119,7 +119,7 @@ elif [ "${HIVE_AUX_JARS_PATH}" != "" ]; 
       HIVE_AUX_JARS_PATH=`cygpath -p -w "$HIVE_AUX_JARS_PATH"`
       HIVE_AUX_JARS_PATH=`echo $HIVE_AUX_JARS_PATH | sed 's/;/,/g'`
   fi
-  AUX_CLASSPATH=${HIVE_AUX_JARS_PATH}
+  AUX_CLASSPATH=${AUX_CLASSPATH}:${HIVE_AUX_JARS_PATH}
   AUX_PARAM="file://$(echo ${HIVE_AUX_JARS_PATH} | sed 's/:/,file:\/\//g')"
 fi
 


Reply via email to