Skip to content

Commit 57fa1f1

Browse files
author
Kusto Build System
committed
Auto-sync from Azure-Kusto-Service
1 parent 1060118 commit 57fa1f1

9 files changed

Lines changed: 38008 additions & 6 deletions

File tree

grammar/.antlr/Kql.interp

Lines changed: 949 additions & 0 deletions
Large diffs are not rendered by default.

grammar/.antlr/KqlBaseListener.java

Lines changed: 3687 additions & 0 deletions
Large diffs are not rendered by default.

grammar/.antlr/KqlLexer.interp

Lines changed: 984 additions & 0 deletions
Large diffs are not rendered by default.

grammar/.antlr/KqlLexer.java

Lines changed: 2626 additions & 0 deletions
Large diffs are not rendered by default.

grammar/.antlr/KqlListener.java

Lines changed: 3049 additions & 0 deletions
Large diffs are not rendered by default.

grammar/.antlr/KqlParser.java

Lines changed: 23097 additions & 0 deletions
Large diffs are not rendered by default.

grammar/.antlr/KqlTokens.interp

Lines changed: 984 additions & 0 deletions
Large diffs are not rendered by default.

grammar/.antlr/KqlTokens.java

Lines changed: 2626 additions & 0 deletions
Large diffs are not rendered by default.

grammar/Kql.g4

Lines changed: 6 additions & 6 deletions
Original file line numberDiff line numberDiff line change
@@ -49,8 +49,8 @@ letEntityGroupDeclaration:
4949

5050

5151
letFunctionParameterList:
52-
TabularParameters+=tabularParameter (',' TabularParameters+=tabularParameter) (',' ScalarParameters+=scalarParameter)
53-
| ScalarParameters+= scalarParameter (',' ScalarParameters+=scalarParameter)
52+
TabularParameters+=tabularParameter (',' TabularParameters+=tabularParameter)* (',' ScalarParameters+=scalarParameter)*
53+
| ScalarParameters+= scalarParameter (',' ScalarParameters+=scalarParameter)*
5454
;
5555

5656
scalarParameter:
@@ -372,7 +372,7 @@ graphMarkComponentsOperator:
372372
graphMatchOperator:
373373
GRAPHMATCH
374374
(Parameters+=relaxedQueryOperatorParameter)*
375-
Patterns+=graphMatchPattern (',' Patterns+=graphMatchPattern)
375+
Patterns+=graphMatchPattern (',' Patterns+=graphMatchPattern)*
376376
(WhereClause=graphMatchWhereClause)?
377377
(ProjectClause=graphMatchProjectClause)?
378378
;
@@ -405,7 +405,7 @@ graphMatchProjectClause:
405405
PROJECT Expressions+=namedExpression (',' Expressions+=namedExpression)*;
406406

407407
graphToTableOperator:
408-
GRAPHTOTABLE Outputs+=graphToTableOutput (',' Outputs+=graphToTableOutput);
408+
GRAPHTOTABLE Outputs+=graphToTableOutput (',' Outputs+=graphToTableOutput)*;
409409

410410
graphToTableOutput:
411411
Keyword=(NODES | EDGES) (AsClause=graphToTableAsClause)? (Parameters+=relaxedQueryOperatorParameter)*;
@@ -416,7 +416,7 @@ graphToTableAsClause:
416416
graphShortestPathsOperator:
417417
GRAPHSHORTESTPATHS
418418
(Parameters+=relaxedQueryOperatorParameter)*
419-
Patterns+=graphMatchPattern (',' Patterns+=graphMatchPattern)
419+
Patterns+=graphMatchPattern (',' Patterns+=graphMatchPattern)*
420420
(WhereClause=graphMatchWhereClause)?
421421
(ProjectClause=graphMatchProjectClause)?
422422
;
@@ -685,7 +685,7 @@ scanOperator:
685685
;
686686

687687
scanOperatorOrderByClause:
688-
ORDER BY Expressions+=orderedExpression (',' Expressions+=orderedExpression);
688+
ORDER BY Expressions+=orderedExpression (',' Expressions+=orderedExpression)*;
689689

690690
scanOperatorPartitionByClause:
691691
PARTITION BY Expressions+=unnamedExpression (',' Expressions+=unnamedExpression)*;

0 commit comments

Comments
 (0)