Skip to content
Merged
6 changes: 5 additions & 1 deletion packages/kbn-monaco/src/esql/antlr/esql_parser.g4
Original file line number Diff line number Diff line change
Expand Up @@ -74,8 +74,12 @@ operatorExpression
primaryExpression
: constant #constantDefault
| qualifiedName #dereference
| functionExpression #function
| LP booleanExpression RP #parenthesizedExpression
| identifier LP (booleanExpression (COMMA booleanExpression)*)? RP #functionExpression
;

functionExpression
: identifier LP (ASTERISK | (booleanExpression (COMMA booleanExpression)*))? RP
;

rowCommand
Expand Down
3 changes: 2 additions & 1 deletion packages/kbn-monaco/src/esql/antlr/esql_parser.interp

Large diffs are not rendered by default.

Loading