[
https://issues.apache.org/jira/browse/HIVE-12259?page=com.atlassian.jira.plugin.system.issuetabpanels:comment-tabpanel&focusedCommentId=14972909#comment-14972909
]
Chaoyu Tang commented on HIVE-12259:
------------------------------------
Patch has been posted on https://reviews.apache.org/r/39626/ . [~szehon] and
[~Ferd] could you review that? Thanks
> Command containing semicolon is broken in Beeline
> -------------------------------------------------
>
> Key: HIVE-12259
> URL: https://issues.apache.org/jira/browse/HIVE-12259
> Project: Hive
> Issue Type: Bug
> Components: Beeline
> Reporter: Chaoyu Tang
> Assignee: Chaoyu Tang
> Attachments: HIVE-12259.patch
>
>
> The Beeline command (!cmd) containing semicolon is broken.
> For example:
> !connect jdbc:hive2://localhost:10001/default;principal=hive/[email protected]
> is broken because the included ";" makes it not to run with
> execCommandWithPrefix as a whole command.
> {code}
> if (line.startsWith(COMMAND_PREFIX) && !line.contains(";")) {
> // handle the case "!cmd" for beeline
> return execCommandWithPrefix(line);
> } else {
> return commands.sql(line, getOpts().getEntireLineAsCommand());
> }
> {code}
--
This message was sent by Atlassian JIRA
(v6.3.4#6332)