semicolon in comment causes parse error
---------------------------------------
Key: HIVE-1926
URL: https://issues.apache.org/jira/browse/HIVE-1926
Project: Hive
Issue Type: Bug
Components: Query Processor
Reporter: dan f
semicolons in sql comments cause a parse error when trying to execute the query
via hive -f
As an example, this query runs fine:
-- a safe comment
select * from table;
but this query
-- an unsafe comment;
select * from table;
results in:
FAILED: Parse Error: line 0:-1 cannot recognize input '<EOF>'
--
This message is automatically generated by JIRA.
-
You can reply to this email to add a comment to the issue online.