@@ -144,7 +144,7 @@ import { SampledRelationContext } from "./TrinoSqlParser.js";
144
144
import { SampleTypeContext } from "./TrinoSqlParser.js" ;
145
145
import { TrimsSpecificationContext } from "./TrinoSqlParser.js" ;
146
146
import { ListAggOverflowBehaviorContext } from "./TrinoSqlParser.js" ;
147
- import { ListaggCountIndicationContext } from "./TrinoSqlParser.js" ;
147
+ import { ListAggCountIndicationContext } from "./TrinoSqlParser.js" ;
148
148
import { PatternRecognitionContext } from "./TrinoSqlParser.js" ;
149
149
import { MeasureDefinitionContext } from "./TrinoSqlParser.js" ;
150
150
import { RowsPerMatchContext } from "./TrinoSqlParser.js" ;
@@ -181,7 +181,7 @@ import { TableArgumentTableContext } from "./TrinoSqlParser.js";
181
181
import { TableArgumentQueryContext } from "./TrinoSqlParser.js" ;
182
182
import { DescriptorArgumentContext } from "./TrinoSqlParser.js" ;
183
183
import { DescriptorFieldContext } from "./TrinoSqlParser.js" ;
184
- import { CopartitionTablesContext } from "./TrinoSqlParser.js" ;
184
+ import { CoPartitionTablesContext } from "./TrinoSqlParser.js" ;
185
185
import { ExpressionContext } from "./TrinoSqlParser.js" ;
186
186
import { LogicalNotContext } from "./TrinoSqlParser.js" ;
187
187
import { PredicatedContext } from "./TrinoSqlParser.js" ;
@@ -212,6 +212,7 @@ import { TrimContext } from "./TrinoSqlParser.js";
212
212
import { ParameterContext } from "./TrinoSqlParser.js" ;
213
213
import { NormalizeContext } from "./TrinoSqlParser.js" ;
214
214
import { LocalTimestampContext } from "./TrinoSqlParser.js" ;
215
+ import { ListAggContext } from "./TrinoSqlParser.js" ;
215
216
import { JsonObjectContext } from "./TrinoSqlParser.js" ;
216
217
import { IntervalLiteralContext } from "./TrinoSqlParser.js" ;
217
218
import { NumericLiteralContext } from "./TrinoSqlParser.js" ;
@@ -239,7 +240,6 @@ import { CurrentTimestampContext } from "./TrinoSqlParser.js";
239
240
import { CurrentSchemaContext } from "./TrinoSqlParser.js" ;
240
241
import { ExistsContext } from "./TrinoSqlParser.js" ;
241
242
import { PositionContext } from "./TrinoSqlParser.js" ;
242
- import { ListaggContext } from "./TrinoSqlParser.js" ;
243
243
import { SearchedCaseContext } from "./TrinoSqlParser.js" ;
244
244
import { CurrentCatalogContext } from "./TrinoSqlParser.js" ;
245
245
import { GroupingOperationContext } from "./TrinoSqlParser.js" ;
@@ -1948,15 +1948,15 @@ export class TrinoSqlListener implements ParseTreeListener {
1948
1948
*/
1949
1949
exitListAggOverflowBehavior ?: ( ctx : ListAggOverflowBehaviorContext ) => void ;
1950
1950
/**
1951
- * Enter a parse tree produced by `TrinoSqlParser.listaggCountIndication `.
1951
+ * Enter a parse tree produced by `TrinoSqlParser.listAggCountIndication `.
1952
1952
* @param ctx the parse tree
1953
1953
*/
1954
- enterListaggCountIndication ?: ( ctx : ListaggCountIndicationContext ) => void ;
1954
+ enterListAggCountIndication ?: ( ctx : ListAggCountIndicationContext ) => void ;
1955
1955
/**
1956
- * Exit a parse tree produced by `TrinoSqlParser.listaggCountIndication `.
1956
+ * Exit a parse tree produced by `TrinoSqlParser.listAggCountIndication `.
1957
1957
* @param ctx the parse tree
1958
1958
*/
1959
- exitListaggCountIndication ?: ( ctx : ListaggCountIndicationContext ) => void ;
1959
+ exitListAggCountIndication ?: ( ctx : ListAggCountIndicationContext ) => void ;
1960
1960
/**
1961
1961
* Enter a parse tree produced by `TrinoSqlParser.patternRecognition`.
1962
1962
* @param ctx the parse tree
@@ -2352,15 +2352,15 @@ export class TrinoSqlListener implements ParseTreeListener {
2352
2352
*/
2353
2353
exitDescriptorField ?: ( ctx : DescriptorFieldContext ) => void ;
2354
2354
/**
2355
- * Enter a parse tree produced by `TrinoSqlParser.copartitionTables `.
2355
+ * Enter a parse tree produced by `TrinoSqlParser.coPartitionTables `.
2356
2356
* @param ctx the parse tree
2357
2357
*/
2358
- enterCopartitionTables ?: ( ctx : CopartitionTablesContext ) => void ;
2358
+ enterCoPartitionTables ?: ( ctx : CoPartitionTablesContext ) => void ;
2359
2359
/**
2360
- * Exit a parse tree produced by `TrinoSqlParser.copartitionTables `.
2360
+ * Exit a parse tree produced by `TrinoSqlParser.coPartitionTables `.
2361
2361
* @param ctx the parse tree
2362
2362
*/
2363
- exitCopartitionTables ?: ( ctx : CopartitionTablesContext ) => void ;
2363
+ exitCoPartitionTables ?: ( ctx : CoPartitionTablesContext ) => void ;
2364
2364
/**
2365
2365
* Enter a parse tree produced by `TrinoSqlParser.expression`.
2366
2366
* @param ctx the parse tree
@@ -2719,6 +2719,18 @@ export class TrinoSqlListener implements ParseTreeListener {
2719
2719
* @param ctx the parse tree
2720
2720
*/
2721
2721
exitLocalTimestamp ?: ( ctx : LocalTimestampContext ) => void ;
2722
+ /**
2723
+ * Enter a parse tree produced by the `listAgg`
2724
+ * labeled alternative in `TrinoSqlParser.primaryExpression`.
2725
+ * @param ctx the parse tree
2726
+ */
2727
+ enterListAgg ?: ( ctx : ListAggContext ) => void ;
2728
+ /**
2729
+ * Exit a parse tree produced by the `listAgg`
2730
+ * labeled alternative in `TrinoSqlParser.primaryExpression`.
2731
+ * @param ctx the parse tree
2732
+ */
2733
+ exitListAgg ?: ( ctx : ListAggContext ) => void ;
2722
2734
/**
2723
2735
* Enter a parse tree produced by the `jsonObject`
2724
2736
* labeled alternative in `TrinoSqlParser.primaryExpression`.
@@ -3043,18 +3055,6 @@ export class TrinoSqlListener implements ParseTreeListener {
3043
3055
* @param ctx the parse tree
3044
3056
*/
3045
3057
exitPosition ?: ( ctx : PositionContext ) => void ;
3046
- /**
3047
- * Enter a parse tree produced by the `listagg`
3048
- * labeled alternative in `TrinoSqlParser.primaryExpression`.
3049
- * @param ctx the parse tree
3050
- */
3051
- enterListagg ?: ( ctx : ListaggContext ) => void ;
3052
- /**
3053
- * Exit a parse tree produced by the `listagg`
3054
- * labeled alternative in `TrinoSqlParser.primaryExpression`.
3055
- * @param ctx the parse tree
3056
- */
3057
- exitListagg ?: ( ctx : ListaggContext ) => void ;
3058
3058
/**
3059
3059
* Enter a parse tree produced by the `searchedCase`
3060
3060
* labeled alternative in `TrinoSqlParser.primaryExpression`.
0 commit comments