[Stellar]>>> in:= 'foo' [Stellar]>>> TO_UPPER(in) [!] Unable to parse: TO_UPPER(in) due to: org.apache.metron.stellar.dsl.ParseException: Syntax error @ 1:9 no viable alternative at input 'TO_UPPER(in' org.apache.metron.stellar.dsl.ParseException: Unable to parse: TO_UPPER(in) due to: org.apache.metron.stellar.dsl.ParseException: Syntax error @ 1:9 no viable alternative at input 'TO_UPPER(in'
On August 2, 2017 at 17:12:27, Otto Fowler ([email protected]) wrote: Can you try the rule without ‘in’ as a key? “in” is a reserved word in Stellar. What that error means is that the ANTLR lexer and parser cannot figure out what the statement means because of ambiguity, most likely introduced by the use of a keyword. (in is not a valid statement. On August 2, 2017 at 16:49:49, Matt Foley ([email protected]) wrote: Unable to pars
