[ 
https://issues.apache.org/jira/browse/HIVE-11274?page=com.atlassian.jira.plugin.system.issuetabpanels:all-tabpanel
 ]

Ferdinand Xu reassigned HIVE-11274:
-----------------------------------

    Assignee: Ferdinand Xu

> 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
>            Assignee: Ferdinand Xu
>
> 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