Github user ottobackwards commented on a diff in the pull request:
https://github.com/apache/metron/pull/814#discussion_r147568002
--- Diff:
metron-stellar/stellar-common/src/main/antlr4/org/apache/metron/stellar/common/generated/Stellar.g4
---
@@ -67,6 +67,10 @@ ELSE : 'ELSE' | 'else';
NULL : 'null' | 'NULL';
NAN : 'NaN';
+AS : 'as' | 'AS';
--- End diff --
Actually, AS was for the match(longVarName as shortName){ x > 5 : shortName
is available }
case, but since I'm not doing that, i should remove it.
---