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

svn commit: r1634001 - /hive/trunk/cli/src/java/org/apache/hadoop/hive/cli/CliDriver.java

Author: navis
Date: Fri Oct 24 06:08:35 2014
New Revision: 1634001

URL: http://svn.apache.org/r1634001
Log:
HIVE-8532 : return code of "source xxx" clause is missing (vitthal Gogate reviewed by Ashutosh Chauhan)

Modified:
    hive/trunk/cli/src/java/org/apache/hadoop/hive/cli/CliDriver.java

Modified: hive/trunk/cli/src/java/org/apache/hadoop/hive/cli/CliDriver.java
URL: http://svn.apache.org/viewvc/hive/trunk/cli/src/java/org/apache/hadoop/hive/cli/CliDriver.java?rev=1634001&r1=1634000&r2=1634001&view=diff
==============================================================================
--- hive/trunk/cli/src/java/org/apache/hadoop/hive/cli/CliDriver.java (original)
+++ hive/trunk/cli/src/java/org/apache/hadoop/hive/cli/CliDriver.java Fri Oct 24 06:08:35 2014
@@ -126,7 +126,7 @@ public class CliDriver {
         ret = 1;
       } else {
         try {
-          this.processFile(cmd_1);
+          ret = processFile(cmd_1);
         } catch (IOException e) {
           console.printError("Failed processing file "+ cmd_1 +" "+ e.getLocalizedMessage(),
             stringifyException(e));