Details
-
Bug
-
Status: Resolved
-
Major
-
Resolution: Fixed
-
Impala 2.0
-
None
-
None
Description
Impala's parser has the following rule for /**/ style comments:
TraditionalComment = "/*" [^*] ~"*/" | "/*" "*"+ "/"
So the following query will return with an AnalysisException:
/****/ select 1;