[ https://issues.apache.org/jira/browse/HIVE-6328?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=13885130#comment-13885130 ]
Hive QA commented on HIVE-6328: ------------------------------- {color:red}Overall{color}: -1 at least one tests failed Here are the results of testing the latest attachment: https://issues.apache.org/jira/secure/attachment/12625783/HIVE-6328.patch {color:red}ERROR:{color} -1 due to 1 failed/errored test(s), 4972 tests executed *Failed tests:* {noformat} org.apache.hadoop.hive.cli.TestNegativeMinimrCliDriver.testNegativeCliDriver_mapreduce_stack_trace_hadoop20 {noformat} Test results: http://bigtop01.cloudera.org:8080/job/PreCommit-HIVE-Build/1090/testReport Console output: http://bigtop01.cloudera.org:8080/job/PreCommit-HIVE-Build/1090/console Messages: {noformat} Executing org.apache.hive.ptest.execution.PrepPhase Executing org.apache.hive.ptest.execution.ExecutionPhase Executing org.apache.hive.ptest.execution.ReportingPhase Tests exited with: TestsFailedException: 1 tests failed {noformat} This message is automatically generated. ATTACHMENT ID: 12625783 > Hive script should not overwrite AUX_CLASSPATH with HIVE_AUX_JARS_PATH if the > latter is set > ------------------------------------------------------------------------------------------- > > Key: HIVE-6328 > URL: https://issues.apache.org/jira/browse/HIVE-6328 > Project: Hive > Issue Type: Bug > Affects Versions: 0.8.0, 0.9.0, 0.10.0, 0.12.0 > Reporter: Xuefu Zhang > Assignee: Xuefu Zhang > Attachments: HIVE-6328.patch > > > Hive script (bin/hive) replaces the value of AUX_CLASSPATH with the value of > HIVE_AUX_JARS_PATH if HIVE_AUX_JARS_PATH is defined. This is not desirable > because user uses the former to include additional classes when starting > hive, while using the latter to specify additional jars that are needed to > run MR jobs. The problem can be demonstrated with the script snippet: > {code} > elif [ "${HIVE_AUX_JARS_PATH}" != "" ]; then > HIVE_AUX_JARS_PATH=`echo $HIVE_AUX_JARS_PATH | sed 's/,/:/g'` > if $cygwin; then > 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_PARAM="file://$(echo ${HIVE_AUX_JARS_PATH} | sed 's/:/,file:\/\//g')" > fi > {code} > AUX_CLASSPATH should be respected regardless whether HIVE_AUX_JARS_PATH is > defined. -- This message was sent by Atlassian JIRA (v6.1.5#6160)