Skip to content

Commit cfef9ef

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

3 files changed

Lines changed: 15 additions & 15 deletions

File tree

grammar/.antlr/Kql.interp

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -853,7 +853,7 @@ functionCallOrPathExpression
853853
functionCallOrPathRoot
854854
functionCallOrPathPathExpression
855855
functionCallOrPathOperation
856-
functionalCallOrPathPathOperation
856+
functionCallOrPathPathOperation
857857
functionCallOrPathElementOperation
858858
legacyFunctionCallOrPathElementOperation
859859
toScalarExpression

grammar/.antlr/KqlParser.java

Lines changed: 12 additions & 12 deletions
Original file line numberDiff line numberDiff line change
@@ -162,7 +162,7 @@ public class KqlParser extends Parser {
162162
RULE_stringBinaryOperation = 206, RULE_stringBinaryOperator = 207, RULE_stringStarOperatorExpression = 208,
163163
RULE_invocationExpression = 209, RULE_functionCallOrPathExpression = 210,
164164
RULE_functionCallOrPathRoot = 211, RULE_functionCallOrPathPathExpression = 212,
165-
RULE_functionCallOrPathOperation = 213, RULE_functionalCallOrPathPathOperation = 214,
165+
RULE_functionCallOrPathOperation = 213, RULE_functionCallOrPathPathOperation = 214,
166166
RULE_functionCallOrPathElementOperation = 215, RULE_legacyFunctionCallOrPathElementOperation = 216,
167167
RULE_toScalarExpression = 217, RULE_toTableExpression = 218, RULE_noOptimizationParameter = 219,
168168
RULE_dotCompositeFunctionCallExpression = 220, RULE_dotCompositeFunctionCallOperation = 221,
@@ -267,7 +267,7 @@ private static String[] makeRuleNames() {
267267
"multiplicativeOperation", "stringOperatorExpression", "stringBinaryOperatorExpression",
268268
"stringBinaryOperation", "stringBinaryOperator", "stringStarOperatorExpression",
269269
"invocationExpression", "functionCallOrPathExpression", "functionCallOrPathRoot",
270-
"functionCallOrPathPathExpression", "functionCallOrPathOperation", "functionalCallOrPathPathOperation",
270+
"functionCallOrPathPathExpression", "functionCallOrPathOperation", "functionCallOrPathPathOperation",
271271
"functionCallOrPathElementOperation", "legacyFunctionCallOrPathElementOperation",
272272
"toScalarExpression", "toTableExpression", "noOptimizationParameter",
273273
"dotCompositeFunctionCallExpression", "dotCompositeFunctionCallOperation",
@@ -15265,8 +15265,8 @@ public final FunctionCallOrPathPathExpressionContext functionCallOrPathPathExpre
1526515265

1526615266
@SuppressWarnings("CheckReturnValue")
1526715267
public static class FunctionCallOrPathOperationContext extends ParserRuleContext {
15268-
public FunctionalCallOrPathPathOperationContext functionalCallOrPathPathOperation() {
15269-
return getRuleContext(FunctionalCallOrPathPathOperationContext.class,0);
15268+
public FunctionCallOrPathPathOperationContext functionCallOrPathPathOperation() {
15269+
return getRuleContext(FunctionCallOrPathPathOperationContext.class,0);
1527015270
}
1527115271
public FunctionCallOrPathElementOperationContext functionCallOrPathElementOperation() {
1527215272
return getRuleContext(FunctionCallOrPathElementOperationContext.class,0);
@@ -15291,7 +15291,7 @@ public final FunctionCallOrPathOperationContext functionCallOrPathOperation() th
1529115291
enterOuterAlt(_localctx, 1);
1529215292
{
1529315293
setState(2357);
15294-
functionalCallOrPathPathOperation();
15294+
functionCallOrPathPathOperation();
1529515295
}
1529615296
break;
1529715297
case 2:
@@ -15322,28 +15322,28 @@ public final FunctionCallOrPathOperationContext functionCallOrPathOperation() th
1532215322
}
1532315323

1532415324
@SuppressWarnings("CheckReturnValue")
15325-
public static class FunctionalCallOrPathPathOperationContext extends ParserRuleContext {
15325+
public static class FunctionCallOrPathPathOperationContext extends ParserRuleContext {
1532615326
public IdentifierOrKeywordOrEscapedNameContext Name;
1532715327
public TerminalNode DOT() { return getToken(KqlParser.DOT, 0); }
1532815328
public IdentifierOrKeywordOrEscapedNameContext identifierOrKeywordOrEscapedName() {
1532915329
return getRuleContext(IdentifierOrKeywordOrEscapedNameContext.class,0);
1533015330
}
15331-
public FunctionalCallOrPathPathOperationContext(ParserRuleContext parent, int invokingState) {
15331+
public FunctionCallOrPathPathOperationContext(ParserRuleContext parent, int invokingState) {
1533215332
super(parent, invokingState);
1533315333
}
15334-
@Override public int getRuleIndex() { return RULE_functionalCallOrPathPathOperation; }
15334+
@Override public int getRuleIndex() { return RULE_functionCallOrPathPathOperation; }
1533515335
}
1533615336

15337-
public final FunctionalCallOrPathPathOperationContext functionalCallOrPathPathOperation() throws RecognitionException {
15338-
FunctionalCallOrPathPathOperationContext _localctx = new FunctionalCallOrPathPathOperationContext(_ctx, getState());
15339-
enterRule(_localctx, 428, RULE_functionalCallOrPathPathOperation);
15337+
public final FunctionCallOrPathPathOperationContext functionCallOrPathPathOperation() throws RecognitionException {
15338+
FunctionCallOrPathPathOperationContext _localctx = new FunctionCallOrPathPathOperationContext(_ctx, getState());
15339+
enterRule(_localctx, 428, RULE_functionCallOrPathPathOperation);
1534015340
try {
1534115341
enterOuterAlt(_localctx, 1);
1534215342
{
1534315343
setState(2362);
1534415344
match(DOT);
1534515345
setState(2363);
15346-
((FunctionalCallOrPathPathOperationContext)_localctx).Name = identifierOrKeywordOrEscapedName();
15346+
((FunctionCallOrPathPathOperationContext)_localctx).Name = identifierOrKeywordOrEscapedName();
1534715347
}
1534815348
}
1534915349
catch (RecognitionException re) {

grammar/Kql.g4

Lines changed: 2 additions & 2 deletions
Original file line numberDiff line numberDiff line change
@@ -1002,12 +1002,12 @@ functionCallOrPathPathExpression:
10021002
Expression=functionCallOrPathRoot (Operations+=functionCallOrPathOperation)+;
10031003

10041004
functionCallOrPathOperation:
1005-
functionalCallOrPathPathOperation
1005+
functionCallOrPathPathOperation
10061006
| functionCallOrPathElementOperation
10071007
| legacyFunctionCallOrPathElementOperation
10081008
;
10091009

1010-
functionalCallOrPathPathOperation:
1010+
functionCallOrPathPathOperation:
10111011
'.' Name=identifierOrKeywordOrEscapedName;
10121012

10131013
functionCallOrPathElementOperation:

0 commit comments

Comments
 (0)