[ https://issues.apache.org/jira/browse/HIVE-25095?focusedWorklogId=627398&page=com.atlassian.jira.plugin.system.issuetabpanels:worklog-tabpanel#worklog-627398 ]
ASF GitHub Bot logged work on HIVE-25095: ----------------------------------------- Author: ASF GitHub Bot Created on: 24/Jul/21 11:16 Start Date: 24/Jul/21 11:16 Worklog Time Spent: 10m Work Description: ujc714 commented on pull request #2255: URL: https://github.com/apache/hive/pull/2255#issuecomment-886038213 The branch was lost in my fork for some reason. I restored it and have to open a new PR so close this one. Could you please review PR-2526 after it passes tests? Thanks! -- This is an automated message from the Apache Git Service. To respond to the message, please log on to GitHub and use the URL above to go to the specific comment. To unsubscribe, e-mail: gitbox-unsubscr...@hive.apache.org For queries about this service, please contact Infrastructure at: us...@infra.apache.org Issue Time Tracking ------------------- Worklog Id: (was: 627398) Time Spent: 1h (was: 50m) > Beeline/hive -e command can't deal with query with trailing quote > ----------------------------------------------------------------- > > Key: HIVE-25095 > URL: https://issues.apache.org/jira/browse/HIVE-25095 > Project: Hive > Issue Type: Bug > Reporter: Robbie Zhang > Assignee: Robbie Zhang > Priority: Major > Labels: pull-request-available > Time Spent: 1h > Remaining Estimate: 0h > > The command > {code:java} > hive -e 'select "hive"'{code} > and > {code:java} > beeline -e 'select "hive"'{code} > fail with such error: > {code:java} > Error: Error while compiling statement: FAILED: ParseException line 1:12 > character '<EOF>' not supported here (state=42000,code=40000){code} > The reason is that org.apache.commons.cli.Util.stripLeadingAndTrailingQuotes > in commons-cli-1.2.jar strips the trailing quote so the query string is > changed to > {code:java} > select "hive{code} > This bug is fixed in commons-cli-1.3.1 and commons-cli-1.4.jar. The > workaround is to overwrite commons-cli-1.2.jar with commons-cli-1.3.1 or > commons-cli-1.4.jar. -- This message was sent by Atlassian Jira (v8.3.4#803005)