Jeff Zhang created HIVE-11274:
---------------------------------

             Summary: Support executing script file from hdfs in beeline
                 Key: HIVE-11274
                 URL: https://issues.apache.org/jira/browse/HIVE-11274
             Project: Hive
          Issue Type: Improvement
            Reporter: Jeff Zhang


It is supported for cli to execute hive script on hdfs, it should be 
straightforward to support it in beeline too.

Beeline.java
{code}
  private int executeFile(String fileName) {
    FileInputStream initStream = null;
    try {
      initStream = new FileInputStream(fileName);
      return execute(getConsoleReader(initStream), true);
    } catch (Throwable t) {
      handleException(t);
      return ERRNO_OTHER;
    } finally {
      IOUtils.closeStream(initStream);
      consoleReader = null;
      output("");   // dummy new line
    }
  }
{code}



--
This message was sent by Atlassian JIRA
(v6.3.4#6332)

Reply via email to