[
https://issues.apache.org/jira/browse/HIVE-11274?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14632043#comment-14632043
]
Jeff Zhang commented on HIVE-11274:
-----------------------------------
Make sense.
> 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)