spark-sql-language-server 0.0.1-beta.0
This diff represents the content of publicly available package versions that have been released to one of the supported registries. The information contained in this diff is provided for informational purposes only and reflects changes between package versions as they appear in their respective public registries.
- package/README.md +30 -0
- package/out/sparksql-server-worker.js +2 -0
- package/out/sparksql-server-worker.js.map +1 -0
- package/out-tsc/assets/built-in-functions.d.ts +9 -0
- package/out-tsc/assets/built-in-functions.js +3996 -0
- package/out-tsc/assets/built-in-functions.js.map +1 -0
- package/out-tsc/auto-completion.d.ts +4 -0
- package/out-tsc/auto-completion.js +74 -0
- package/out-tsc/auto-completion.js.map +1 -0
- package/out-tsc/constant.d.ts +2 -0
- package/out-tsc/constant.js +6 -0
- package/out-tsc/constant.js.map +1 -0
- package/out-tsc/index.d.ts +3 -0
- package/out-tsc/index.js +20 -0
- package/out-tsc/index.js.map +1 -0
- package/out-tsc/lib/SparkSqlLexer.d.ts +421 -0
- package/out-tsc/lib/SparkSqlLexer.js +2501 -0
- package/out-tsc/lib/SparkSqlLexer.js.map +1 -0
- package/out-tsc/lib/SparkSqlParser.d.ts +5888 -0
- package/out-tsc/lib/SparkSqlParser.js +32320 -0
- package/out-tsc/lib/SparkSqlParser.js.map +1 -0
- package/out-tsc/lib/SparkSqlParserListener.d.ts +1089 -0
- package/out-tsc/lib/SparkSqlParserListener.js +3 -0
- package/out-tsc/lib/SparkSqlParserListener.js.map +1 -0
- package/out-tsc/lib/SparkSqlParserVisitor.d.ts +727 -0
- package/out-tsc/lib/SparkSqlParserVisitor.js +3 -0
- package/out-tsc/lib/SparkSqlParserVisitor.js.map +1 -0
- package/out-tsc/listeners/parse-error.listener.d.ts +11 -0
- package/out-tsc/listeners/parse-error.listener.js +48 -0
- package/out-tsc/listeners/parse-error.listener.js.map +1 -0
- package/out-tsc/listeners/statement.listener.d.ts +11 -0
- package/out-tsc/listeners/statement.listener.js +44 -0
- package/out-tsc/listeners/statement.listener.js.map +1 -0
- package/out-tsc/lsp-server.d.ts +15 -0
- package/out-tsc/lsp-server.js +81 -0
- package/out-tsc/lsp-server.js.map +1 -0
- package/out-tsc/parsing-warehouse.d.ts +19 -0
- package/out-tsc/parsing-warehouse.js +63 -0
- package/out-tsc/parsing-warehouse.js.map +1 -0
- package/out-tsc/protocol-translation.d.ts +6 -0
- package/out-tsc/protocol-translation.js +128 -0
- package/out-tsc/protocol-translation.js.map +1 -0
- package/out-tsc/public-apis.d.ts +1 -0
- package/out-tsc/public-apis.js +6 -0
- package/out-tsc/public-apis.js.map +1 -0
- package/out-tsc/server-worker.d.ts +1 -0
- package/out-tsc/server-worker.js +126 -0
- package/out-tsc/server-worker.js.map +1 -0
- package/package.json +39 -0
|
@@ -0,0 +1,1089 @@
|
|
|
1
|
+
import { ParseTreeListener } from "antlr4ts/tree/ParseTreeListener";
|
|
2
|
+
import { TableNameContext } from "./SparkSqlParser";
|
|
3
|
+
import { AliasedQueryContext } from "./SparkSqlParser";
|
|
4
|
+
import { AliasedRelationContext } from "./SparkSqlParser";
|
|
5
|
+
import { InlineTableDefault2Context } from "./SparkSqlParser";
|
|
6
|
+
import { TableValuedFunctionContext } from "./SparkSqlParser";
|
|
7
|
+
import { ExponentLiteralContext } from "./SparkSqlParser";
|
|
8
|
+
import { DecimalLiteralContext } from "./SparkSqlParser";
|
|
9
|
+
import { LegacyDecimalLiteralContext } from "./SparkSqlParser";
|
|
10
|
+
import { IntegerLiteralContext } from "./SparkSqlParser";
|
|
11
|
+
import { BigIntLiteralContext } from "./SparkSqlParser";
|
|
12
|
+
import { SmallIntLiteralContext } from "./SparkSqlParser";
|
|
13
|
+
import { TinyIntLiteralContext } from "./SparkSqlParser";
|
|
14
|
+
import { DoubleLiteralContext } from "./SparkSqlParser";
|
|
15
|
+
import { FloatLiteralContext } from "./SparkSqlParser";
|
|
16
|
+
import { BigDecimalLiteralContext } from "./SparkSqlParser";
|
|
17
|
+
import { QueryTermDefaultContext } from "./SparkSqlParser";
|
|
18
|
+
import { SetOperationContext } from "./SparkSqlParser";
|
|
19
|
+
import { InsertOverwriteTableContext } from "./SparkSqlParser";
|
|
20
|
+
import { InsertIntoTableContext } from "./SparkSqlParser";
|
|
21
|
+
import { InsertIntoReplaceWhereContext } from "./SparkSqlParser";
|
|
22
|
+
import { InsertOverwriteHiveDirContext } from "./SparkSqlParser";
|
|
23
|
+
import { InsertOverwriteDirContext } from "./SparkSqlParser";
|
|
24
|
+
import { ValueExpressionDefaultContext } from "./SparkSqlParser";
|
|
25
|
+
import { ArithmeticUnaryContext } from "./SparkSqlParser";
|
|
26
|
+
import { ArithmeticBinaryContext } from "./SparkSqlParser";
|
|
27
|
+
import { ComparisonContext } from "./SparkSqlParser";
|
|
28
|
+
import { PartitionTransformContext } from "./SparkSqlParser";
|
|
29
|
+
import { PartitionColumnContext } from "./SparkSqlParser";
|
|
30
|
+
import { QueryPrimaryDefaultContext } from "./SparkSqlParser";
|
|
31
|
+
import { FromStmtContext } from "./SparkSqlParser";
|
|
32
|
+
import { TableContext } from "./SparkSqlParser";
|
|
33
|
+
import { InlineTableDefault1Context } from "./SparkSqlParser";
|
|
34
|
+
import { SubqueryContext } from "./SparkSqlParser";
|
|
35
|
+
import { SingleInsertQueryContext } from "./SparkSqlParser";
|
|
36
|
+
import { MultiInsertQueryContext } from "./SparkSqlParser";
|
|
37
|
+
import { DeleteFromTableContext } from "./SparkSqlParser";
|
|
38
|
+
import { UpdateTableContext } from "./SparkSqlParser";
|
|
39
|
+
import { MergeIntoTableContext } from "./SparkSqlParser";
|
|
40
|
+
import { CurrentLikeContext } from "./SparkSqlParser";
|
|
41
|
+
import { TimestampaddContext } from "./SparkSqlParser";
|
|
42
|
+
import { TimestampdiffContext } from "./SparkSqlParser";
|
|
43
|
+
import { SearchedCaseContext } from "./SparkSqlParser";
|
|
44
|
+
import { SimpleCaseContext } from "./SparkSqlParser";
|
|
45
|
+
import { CastContext } from "./SparkSqlParser";
|
|
46
|
+
import { StructContext } from "./SparkSqlParser";
|
|
47
|
+
import { FirstContext } from "./SparkSqlParser";
|
|
48
|
+
import { Any_valueContext } from "./SparkSqlParser";
|
|
49
|
+
import { LastContext } from "./SparkSqlParser";
|
|
50
|
+
import { PositionContext } from "./SparkSqlParser";
|
|
51
|
+
import { ConstantDefaultContext } from "./SparkSqlParser";
|
|
52
|
+
import { StarContext } from "./SparkSqlParser";
|
|
53
|
+
import { RowConstructorContext } from "./SparkSqlParser";
|
|
54
|
+
import { SubqueryExpressionContext } from "./SparkSqlParser";
|
|
55
|
+
import { IdentifierClauseContext } from "./SparkSqlParser";
|
|
56
|
+
import { FunctionCallContext } from "./SparkSqlParser";
|
|
57
|
+
import { LambdaContext } from "./SparkSqlParser";
|
|
58
|
+
import { SubscriptContext } from "./SparkSqlParser";
|
|
59
|
+
import { ColumnReferenceContext } from "./SparkSqlParser";
|
|
60
|
+
import { DereferenceContext } from "./SparkSqlParser";
|
|
61
|
+
import { ParenthesizedExpressionContext } from "./SparkSqlParser";
|
|
62
|
+
import { ExtractContext } from "./SparkSqlParser";
|
|
63
|
+
import { SubstringContext } from "./SparkSqlParser";
|
|
64
|
+
import { TrimContext } from "./SparkSqlParser";
|
|
65
|
+
import { OverlayContext } from "./SparkSqlParser";
|
|
66
|
+
import { PercentileContext } from "./SparkSqlParser";
|
|
67
|
+
import { UnquotedIdentifierContext } from "./SparkSqlParser";
|
|
68
|
+
import { QuotedIdentifierAlternativeContext } from "./SparkSqlParser";
|
|
69
|
+
import { TableFileFormatContext } from "./SparkSqlParser";
|
|
70
|
+
import { GenericFileFormatContext } from "./SparkSqlParser";
|
|
71
|
+
import { SampleByPercentileContext } from "./SparkSqlParser";
|
|
72
|
+
import { SampleByRowsContext } from "./SparkSqlParser";
|
|
73
|
+
import { SampleByBucketContext } from "./SparkSqlParser";
|
|
74
|
+
import { SampleByBytesContext } from "./SparkSqlParser";
|
|
75
|
+
import { NullLiteralContext } from "./SparkSqlParser";
|
|
76
|
+
import { PosParameterLiteralContext } from "./SparkSqlParser";
|
|
77
|
+
import { NamedParameterLiteralContext } from "./SparkSqlParser";
|
|
78
|
+
import { IntervalLiteralContext } from "./SparkSqlParser";
|
|
79
|
+
import { TypeConstructorContext } from "./SparkSqlParser";
|
|
80
|
+
import { NumericLiteralContext } from "./SparkSqlParser";
|
|
81
|
+
import { BooleanLiteralContext } from "./SparkSqlParser";
|
|
82
|
+
import { StringLiteralContext } from "./SparkSqlParser";
|
|
83
|
+
import { RowFormatSerdeContext } from "./SparkSqlParser";
|
|
84
|
+
import { RowFormatDelimitedContext } from "./SparkSqlParser";
|
|
85
|
+
import { ComplexDataTypeContext } from "./SparkSqlParser";
|
|
86
|
+
import { YearMonthIntervalDataTypeContext } from "./SparkSqlParser";
|
|
87
|
+
import { DayTimeIntervalDataTypeContext } from "./SparkSqlParser";
|
|
88
|
+
import { PrimitiveDataTypeContext } from "./SparkSqlParser";
|
|
89
|
+
import { TransformQuerySpecificationContext } from "./SparkSqlParser";
|
|
90
|
+
import { RegularQuerySpecificationContext } from "./SparkSqlParser";
|
|
91
|
+
import { ErrorIdentContext } from "./SparkSqlParser";
|
|
92
|
+
import { RealIdentContext } from "./SparkSqlParser";
|
|
93
|
+
import { WindowRefContext } from "./SparkSqlParser";
|
|
94
|
+
import { WindowDefContext } from "./SparkSqlParser";
|
|
95
|
+
import { IdentityTransformContext } from "./SparkSqlParser";
|
|
96
|
+
import { ApplyTransformContext } from "./SparkSqlParser";
|
|
97
|
+
import { StatementDefaultContext } from "./SparkSqlParser";
|
|
98
|
+
import { DmlStatementContext } from "./SparkSqlParser";
|
|
99
|
+
import { UseContext } from "./SparkSqlParser";
|
|
100
|
+
import { UseNamespaceContext } from "./SparkSqlParser";
|
|
101
|
+
import { SetCatalogContext } from "./SparkSqlParser";
|
|
102
|
+
import { CreateNamespaceContext } from "./SparkSqlParser";
|
|
103
|
+
import { SetNamespacePropertiesContext } from "./SparkSqlParser";
|
|
104
|
+
import { SetNamespaceLocationContext } from "./SparkSqlParser";
|
|
105
|
+
import { DropNamespaceContext } from "./SparkSqlParser";
|
|
106
|
+
import { ShowNamespacesContext } from "./SparkSqlParser";
|
|
107
|
+
import { CreateTableContext } from "./SparkSqlParser";
|
|
108
|
+
import { CreateTableLikeContext } from "./SparkSqlParser";
|
|
109
|
+
import { ReplaceTableContext } from "./SparkSqlParser";
|
|
110
|
+
import { AnalyzeContext } from "./SparkSqlParser";
|
|
111
|
+
import { AnalyzeTablesContext } from "./SparkSqlParser";
|
|
112
|
+
import { AddTableColumnsContext } from "./SparkSqlParser";
|
|
113
|
+
import { RenameTableColumnContext } from "./SparkSqlParser";
|
|
114
|
+
import { DropTableColumnsContext } from "./SparkSqlParser";
|
|
115
|
+
import { RenameTableContext } from "./SparkSqlParser";
|
|
116
|
+
import { SetTablePropertiesContext } from "./SparkSqlParser";
|
|
117
|
+
import { UnsetTablePropertiesContext } from "./SparkSqlParser";
|
|
118
|
+
import { AlterTableAlterColumnContext } from "./SparkSqlParser";
|
|
119
|
+
import { HiveChangeColumnContext } from "./SparkSqlParser";
|
|
120
|
+
import { HiveReplaceColumnsContext } from "./SparkSqlParser";
|
|
121
|
+
import { SetTableSerDeContext } from "./SparkSqlParser";
|
|
122
|
+
import { AddTablePartitionContext } from "./SparkSqlParser";
|
|
123
|
+
import { RenameTablePartitionContext } from "./SparkSqlParser";
|
|
124
|
+
import { DropTablePartitionsContext } from "./SparkSqlParser";
|
|
125
|
+
import { SetTableLocationContext } from "./SparkSqlParser";
|
|
126
|
+
import { RecoverPartitionsContext } from "./SparkSqlParser";
|
|
127
|
+
import { DropTableContext } from "./SparkSqlParser";
|
|
128
|
+
import { DropViewContext } from "./SparkSqlParser";
|
|
129
|
+
import { CreateViewContext } from "./SparkSqlParser";
|
|
130
|
+
import { CreateTempViewUsingContext } from "./SparkSqlParser";
|
|
131
|
+
import { AlterViewQueryContext } from "./SparkSqlParser";
|
|
132
|
+
import { CreateFunctionContext } from "./SparkSqlParser";
|
|
133
|
+
import { DropFunctionContext } from "./SparkSqlParser";
|
|
134
|
+
import { ExplainContext } from "./SparkSqlParser";
|
|
135
|
+
import { ShowTablesContext } from "./SparkSqlParser";
|
|
136
|
+
import { ShowTableExtendedContext } from "./SparkSqlParser";
|
|
137
|
+
import { ShowTblPropertiesContext } from "./SparkSqlParser";
|
|
138
|
+
import { ShowColumnsContext } from "./SparkSqlParser";
|
|
139
|
+
import { ShowViewsContext } from "./SparkSqlParser";
|
|
140
|
+
import { ShowPartitionsContext } from "./SparkSqlParser";
|
|
141
|
+
import { ShowFunctionsContext } from "./SparkSqlParser";
|
|
142
|
+
import { ShowCreateTableContext } from "./SparkSqlParser";
|
|
143
|
+
import { ShowCurrentNamespaceContext } from "./SparkSqlParser";
|
|
144
|
+
import { ShowCatalogsContext } from "./SparkSqlParser";
|
|
145
|
+
import { DescribeFunctionContext } from "./SparkSqlParser";
|
|
146
|
+
import { DescribeNamespaceContext } from "./SparkSqlParser";
|
|
147
|
+
import { DescribeRelationContext } from "./SparkSqlParser";
|
|
148
|
+
import { DescribeQueryContext } from "./SparkSqlParser";
|
|
149
|
+
import { CommentNamespaceContext } from "./SparkSqlParser";
|
|
150
|
+
import { CommentTableContext } from "./SparkSqlParser";
|
|
151
|
+
import { RefreshTableContext } from "./SparkSqlParser";
|
|
152
|
+
import { RefreshFunctionContext } from "./SparkSqlParser";
|
|
153
|
+
import { RefreshResourceContext } from "./SparkSqlParser";
|
|
154
|
+
import { CacheTableContext } from "./SparkSqlParser";
|
|
155
|
+
import { UncacheTableContext } from "./SparkSqlParser";
|
|
156
|
+
import { ClearCacheContext } from "./SparkSqlParser";
|
|
157
|
+
import { LoadDataContext } from "./SparkSqlParser";
|
|
158
|
+
import { TruncateTableContext } from "./SparkSqlParser";
|
|
159
|
+
import { RepairTableContext } from "./SparkSqlParser";
|
|
160
|
+
import { ManageResourceContext } from "./SparkSqlParser";
|
|
161
|
+
import { FailNativeCommandContext } from "./SparkSqlParser";
|
|
162
|
+
import { SetTimeZoneContext } from "./SparkSqlParser";
|
|
163
|
+
import { SetQuotedConfigurationContext } from "./SparkSqlParser";
|
|
164
|
+
import { SetConfigurationContext } from "./SparkSqlParser";
|
|
165
|
+
import { ResetQuotedConfigurationContext } from "./SparkSqlParser";
|
|
166
|
+
import { ResetConfigurationContext } from "./SparkSqlParser";
|
|
167
|
+
import { CreateIndexContext } from "./SparkSqlParser";
|
|
168
|
+
import { DropIndexContext } from "./SparkSqlParser";
|
|
169
|
+
import { LogicalNotContext } from "./SparkSqlParser";
|
|
170
|
+
import { ExistsContext } from "./SparkSqlParser";
|
|
171
|
+
import { PredicatedContext } from "./SparkSqlParser";
|
|
172
|
+
import { LogicalBinaryContext } from "./SparkSqlParser";
|
|
173
|
+
import { ProgramContext } from "./SparkSqlParser";
|
|
174
|
+
import { StatementsContext } from "./SparkSqlParser";
|
|
175
|
+
import { StatementEndContext } from "./SparkSqlParser";
|
|
176
|
+
import { SingleStatementContext } from "./SparkSqlParser";
|
|
177
|
+
import { SingleExpressionContext } from "./SparkSqlParser";
|
|
178
|
+
import { SingleTableIdentifierContext } from "./SparkSqlParser";
|
|
179
|
+
import { SingleMultipartIdentifierContext } from "./SparkSqlParser";
|
|
180
|
+
import { SingleFunctionIdentifierContext } from "./SparkSqlParser";
|
|
181
|
+
import { SingleDataTypeContext } from "./SparkSqlParser";
|
|
182
|
+
import { SingleTableSchemaContext } from "./SparkSqlParser";
|
|
183
|
+
import { StatementForFoldingContext } from "./SparkSqlParser";
|
|
184
|
+
import { StatementContext } from "./SparkSqlParser";
|
|
185
|
+
import { TimezoneContext } from "./SparkSqlParser";
|
|
186
|
+
import { ConfigKeyContext } from "./SparkSqlParser";
|
|
187
|
+
import { ConfigValueContext } from "./SparkSqlParser";
|
|
188
|
+
import { UnsupportedHiveNativeCommandsContext } from "./SparkSqlParser";
|
|
189
|
+
import { CreateTableHeaderContext } from "./SparkSqlParser";
|
|
190
|
+
import { ReplaceTableHeaderContext } from "./SparkSqlParser";
|
|
191
|
+
import { BucketSpecContext } from "./SparkSqlParser";
|
|
192
|
+
import { SkewSpecContext } from "./SparkSqlParser";
|
|
193
|
+
import { LocationSpecContext } from "./SparkSqlParser";
|
|
194
|
+
import { CommentSpecContext } from "./SparkSqlParser";
|
|
195
|
+
import { QueryContext } from "./SparkSqlParser";
|
|
196
|
+
import { InsertIntoContext } from "./SparkSqlParser";
|
|
197
|
+
import { PartitionSpecLocationContext } from "./SparkSqlParser";
|
|
198
|
+
import { PartitionSpecContext } from "./SparkSqlParser";
|
|
199
|
+
import { PartitionValContext } from "./SparkSqlParser";
|
|
200
|
+
import { NamespaceContext } from "./SparkSqlParser";
|
|
201
|
+
import { NamespacesContext } from "./SparkSqlParser";
|
|
202
|
+
import { DescribeFuncNameContext } from "./SparkSqlParser";
|
|
203
|
+
import { DescribeColNameContext } from "./SparkSqlParser";
|
|
204
|
+
import { CtesContext } from "./SparkSqlParser";
|
|
205
|
+
import { NamedQueryContext } from "./SparkSqlParser";
|
|
206
|
+
import { TableProviderContext } from "./SparkSqlParser";
|
|
207
|
+
import { CreateTableClausesContext } from "./SparkSqlParser";
|
|
208
|
+
import { PropertyListContext } from "./SparkSqlParser";
|
|
209
|
+
import { PropertyContext } from "./SparkSqlParser";
|
|
210
|
+
import { PropertyKeyContext } from "./SparkSqlParser";
|
|
211
|
+
import { PropertyValueContext } from "./SparkSqlParser";
|
|
212
|
+
import { ExpressionPropertyListContext } from "./SparkSqlParser";
|
|
213
|
+
import { ExpressionPropertyContext } from "./SparkSqlParser";
|
|
214
|
+
import { ConstantListContext } from "./SparkSqlParser";
|
|
215
|
+
import { NestedConstantListContext } from "./SparkSqlParser";
|
|
216
|
+
import { CreateFileFormatContext } from "./SparkSqlParser";
|
|
217
|
+
import { FileFormatContext } from "./SparkSqlParser";
|
|
218
|
+
import { StorageHandlerContext } from "./SparkSqlParser";
|
|
219
|
+
import { ResourceContext } from "./SparkSqlParser";
|
|
220
|
+
import { DmlStatementNoWithContext } from "./SparkSqlParser";
|
|
221
|
+
import { IdentifierReferenceContext } from "./SparkSqlParser";
|
|
222
|
+
import { QueryOrganizationContext } from "./SparkSqlParser";
|
|
223
|
+
import { MultiInsertQueryBodyContext } from "./SparkSqlParser";
|
|
224
|
+
import { QueryTermContext } from "./SparkSqlParser";
|
|
225
|
+
import { QueryPrimaryContext } from "./SparkSqlParser";
|
|
226
|
+
import { SortItemContext } from "./SparkSqlParser";
|
|
227
|
+
import { FromStatementContext } from "./SparkSqlParser";
|
|
228
|
+
import { FromStatementBodyContext } from "./SparkSqlParser";
|
|
229
|
+
import { QuerySpecificationContext } from "./SparkSqlParser";
|
|
230
|
+
import { TransformClauseContext } from "./SparkSqlParser";
|
|
231
|
+
import { SelectClauseContext } from "./SparkSqlParser";
|
|
232
|
+
import { SetClauseContext } from "./SparkSqlParser";
|
|
233
|
+
import { MatchedClauseContext } from "./SparkSqlParser";
|
|
234
|
+
import { NotMatchedClauseContext } from "./SparkSqlParser";
|
|
235
|
+
import { NotMatchedBySourceClauseContext } from "./SparkSqlParser";
|
|
236
|
+
import { MatchedActionContext } from "./SparkSqlParser";
|
|
237
|
+
import { NotMatchedActionContext } from "./SparkSqlParser";
|
|
238
|
+
import { NotMatchedBySourceActionContext } from "./SparkSqlParser";
|
|
239
|
+
import { AssignmentListContext } from "./SparkSqlParser";
|
|
240
|
+
import { AssignmentContext } from "./SparkSqlParser";
|
|
241
|
+
import { WhereClauseContext } from "./SparkSqlParser";
|
|
242
|
+
import { HavingClauseContext } from "./SparkSqlParser";
|
|
243
|
+
import { HintContext } from "./SparkSqlParser";
|
|
244
|
+
import { HintStatementContext } from "./SparkSqlParser";
|
|
245
|
+
import { FromClauseContext } from "./SparkSqlParser";
|
|
246
|
+
import { TemporalClauseContext } from "./SparkSqlParser";
|
|
247
|
+
import { AggregationClauseContext } from "./SparkSqlParser";
|
|
248
|
+
import { GroupByClauseContext } from "./SparkSqlParser";
|
|
249
|
+
import { GroupingAnalyticsContext } from "./SparkSqlParser";
|
|
250
|
+
import { GroupingElementContext } from "./SparkSqlParser";
|
|
251
|
+
import { GroupingSetContext } from "./SparkSqlParser";
|
|
252
|
+
import { PivotClauseContext } from "./SparkSqlParser";
|
|
253
|
+
import { PivotColumnContext } from "./SparkSqlParser";
|
|
254
|
+
import { PivotValueContext } from "./SparkSqlParser";
|
|
255
|
+
import { UnpivotClauseContext } from "./SparkSqlParser";
|
|
256
|
+
import { UnpivotNullClauseContext } from "./SparkSqlParser";
|
|
257
|
+
import { UnpivotOperatorContext } from "./SparkSqlParser";
|
|
258
|
+
import { UnpivotSingleValueColumnClauseContext } from "./SparkSqlParser";
|
|
259
|
+
import { UnpivotMultiValueColumnClauseContext } from "./SparkSqlParser";
|
|
260
|
+
import { UnpivotColumnSetContext } from "./SparkSqlParser";
|
|
261
|
+
import { UnpivotValueColumnContext } from "./SparkSqlParser";
|
|
262
|
+
import { UnpivotNameColumnContext } from "./SparkSqlParser";
|
|
263
|
+
import { UnpivotColumnAndAliasContext } from "./SparkSqlParser";
|
|
264
|
+
import { UnpivotColumnContext } from "./SparkSqlParser";
|
|
265
|
+
import { UnpivotAliasContext } from "./SparkSqlParser";
|
|
266
|
+
import { LateralViewContext } from "./SparkSqlParser";
|
|
267
|
+
import { SetQuantifierContext } from "./SparkSqlParser";
|
|
268
|
+
import { RelationContext } from "./SparkSqlParser";
|
|
269
|
+
import { RelationExtensionContext } from "./SparkSqlParser";
|
|
270
|
+
import { JoinRelationContext } from "./SparkSqlParser";
|
|
271
|
+
import { JoinTypeContext } from "./SparkSqlParser";
|
|
272
|
+
import { JoinCriteriaContext } from "./SparkSqlParser";
|
|
273
|
+
import { SampleContext } from "./SparkSqlParser";
|
|
274
|
+
import { SampleMethodContext } from "./SparkSqlParser";
|
|
275
|
+
import { IdentifierListContext } from "./SparkSqlParser";
|
|
276
|
+
import { IdentifierSeqContext } from "./SparkSqlParser";
|
|
277
|
+
import { OrderedIdentifierListContext } from "./SparkSqlParser";
|
|
278
|
+
import { OrderedIdentifierContext } from "./SparkSqlParser";
|
|
279
|
+
import { IdentifierCommentListContext } from "./SparkSqlParser";
|
|
280
|
+
import { IdentifierCommentContext } from "./SparkSqlParser";
|
|
281
|
+
import { RelationPrimaryContext } from "./SparkSqlParser";
|
|
282
|
+
import { InlineTableContext } from "./SparkSqlParser";
|
|
283
|
+
import { FunctionTableSubqueryArgumentContext } from "./SparkSqlParser";
|
|
284
|
+
import { TableArgumentPartitioningContext } from "./SparkSqlParser";
|
|
285
|
+
import { FunctionTableNamedArgumentExpressionContext } from "./SparkSqlParser";
|
|
286
|
+
import { FunctionTableReferenceArgumentContext } from "./SparkSqlParser";
|
|
287
|
+
import { FunctionTableArgumentContext } from "./SparkSqlParser";
|
|
288
|
+
import { FunctionTableContext } from "./SparkSqlParser";
|
|
289
|
+
import { TableAliasContext } from "./SparkSqlParser";
|
|
290
|
+
import { RowFormatContext } from "./SparkSqlParser";
|
|
291
|
+
import { MultipartIdentifierListContext } from "./SparkSqlParser";
|
|
292
|
+
import { MultipartIdentifierContext } from "./SparkSqlParser";
|
|
293
|
+
import { MultipartIdentifierPropertyListContext } from "./SparkSqlParser";
|
|
294
|
+
import { MultipartIdentifierPropertyContext } from "./SparkSqlParser";
|
|
295
|
+
import { TableIdentifierContext } from "./SparkSqlParser";
|
|
296
|
+
import { FunctionIdentifierContext } from "./SparkSqlParser";
|
|
297
|
+
import { NamedExpressionContext } from "./SparkSqlParser";
|
|
298
|
+
import { NamedExpressionSeqContext } from "./SparkSqlParser";
|
|
299
|
+
import { PartitionFieldListContext } from "./SparkSqlParser";
|
|
300
|
+
import { PartitionFieldContext } from "./SparkSqlParser";
|
|
301
|
+
import { TransformContext } from "./SparkSqlParser";
|
|
302
|
+
import { TransformArgumentContext } from "./SparkSqlParser";
|
|
303
|
+
import { ExpressionContext } from "./SparkSqlParser";
|
|
304
|
+
import { NamedArgumentExpressionContext } from "./SparkSqlParser";
|
|
305
|
+
import { FunctionArgumentContext } from "./SparkSqlParser";
|
|
306
|
+
import { ExpressionSeqContext } from "./SparkSqlParser";
|
|
307
|
+
import { BooleanExpressionContext } from "./SparkSqlParser";
|
|
308
|
+
import { PredicateContext } from "./SparkSqlParser";
|
|
309
|
+
import { ValueExpressionContext } from "./SparkSqlParser";
|
|
310
|
+
import { DatetimeUnitContext } from "./SparkSqlParser";
|
|
311
|
+
import { PrimaryExpressionContext } from "./SparkSqlParser";
|
|
312
|
+
import { LiteralTypeContext } from "./SparkSqlParser";
|
|
313
|
+
import { ConstantContext } from "./SparkSqlParser";
|
|
314
|
+
import { ComparisonOperatorContext } from "./SparkSqlParser";
|
|
315
|
+
import { ArithmeticOperatorContext } from "./SparkSqlParser";
|
|
316
|
+
import { PredicateOperatorContext } from "./SparkSqlParser";
|
|
317
|
+
import { BooleanValueContext } from "./SparkSqlParser";
|
|
318
|
+
import { IntervalContext } from "./SparkSqlParser";
|
|
319
|
+
import { ErrorCapturingMultiUnitsIntervalContext } from "./SparkSqlParser";
|
|
320
|
+
import { MultiUnitsIntervalContext } from "./SparkSqlParser";
|
|
321
|
+
import { ErrorCapturingUnitToUnitIntervalContext } from "./SparkSqlParser";
|
|
322
|
+
import { UnitToUnitIntervalContext } from "./SparkSqlParser";
|
|
323
|
+
import { IntervalValueContext } from "./SparkSqlParser";
|
|
324
|
+
import { UnitInMultiUnitsContext } from "./SparkSqlParser";
|
|
325
|
+
import { UnitInUnitToUnitContext } from "./SparkSqlParser";
|
|
326
|
+
import { ColPositionContext } from "./SparkSqlParser";
|
|
327
|
+
import { TypeContext } from "./SparkSqlParser";
|
|
328
|
+
import { DataTypeContext } from "./SparkSqlParser";
|
|
329
|
+
import { QualifiedColTypeWithPositionListContext } from "./SparkSqlParser";
|
|
330
|
+
import { QualifiedColTypeWithPositionContext } from "./SparkSqlParser";
|
|
331
|
+
import { ColDefinitionDescriptorWithPositionContext } from "./SparkSqlParser";
|
|
332
|
+
import { DefaultExpressionContext } from "./SparkSqlParser";
|
|
333
|
+
import { ColTypeListContext } from "./SparkSqlParser";
|
|
334
|
+
import { ColTypeContext } from "./SparkSqlParser";
|
|
335
|
+
import { CreateOrReplaceTableColTypeListContext } from "./SparkSqlParser";
|
|
336
|
+
import { CreateOrReplaceTableColTypeContext } from "./SparkSqlParser";
|
|
337
|
+
import { ColDefinitionOptionContext } from "./SparkSqlParser";
|
|
338
|
+
import { GenerationExpressionContext } from "./SparkSqlParser";
|
|
339
|
+
import { ComplexColTypeListContext } from "./SparkSqlParser";
|
|
340
|
+
import { ComplexColTypeContext } from "./SparkSqlParser";
|
|
341
|
+
import { WhenClauseContext } from "./SparkSqlParser";
|
|
342
|
+
import { WindowClauseContext } from "./SparkSqlParser";
|
|
343
|
+
import { NamedWindowContext } from "./SparkSqlParser";
|
|
344
|
+
import { WindowSpecContext } from "./SparkSqlParser";
|
|
345
|
+
import { WindowFrameContext } from "./SparkSqlParser";
|
|
346
|
+
import { FrameBoundContext } from "./SparkSqlParser";
|
|
347
|
+
import { QualifiedNameListContext } from "./SparkSqlParser";
|
|
348
|
+
import { FunctionNameContext } from "./SparkSqlParser";
|
|
349
|
+
import { QualifiedNameContext } from "./SparkSqlParser";
|
|
350
|
+
import { ErrorCapturingIdentifierContext } from "./SparkSqlParser";
|
|
351
|
+
import { ErrorCapturingIdentifierExtraContext } from "./SparkSqlParser";
|
|
352
|
+
import { IdentifierContext } from "./SparkSqlParser";
|
|
353
|
+
import { StrictIdentifierContext } from "./SparkSqlParser";
|
|
354
|
+
import { QuotedIdentifierContext } from "./SparkSqlParser";
|
|
355
|
+
import { BackQuotedIdentifierContext } from "./SparkSqlParser";
|
|
356
|
+
import { NumberContext } from "./SparkSqlParser";
|
|
357
|
+
import { AlterColumnActionContext } from "./SparkSqlParser";
|
|
358
|
+
import { StringLitContext } from "./SparkSqlParser";
|
|
359
|
+
import { CommentContext } from "./SparkSqlParser";
|
|
360
|
+
import { VersionContext } from "./SparkSqlParser";
|
|
361
|
+
import { AnsiNonReservedContext } from "./SparkSqlParser";
|
|
362
|
+
import { StrictNonReservedContext } from "./SparkSqlParser";
|
|
363
|
+
import { NonReservedContext } from "./SparkSqlParser";
|
|
364
|
+
export interface SparkSqlParserListener extends ParseTreeListener {
|
|
365
|
+
enterTableName?: (ctx: TableNameContext) => void;
|
|
366
|
+
exitTableName?: (ctx: TableNameContext) => void;
|
|
367
|
+
enterAliasedQuery?: (ctx: AliasedQueryContext) => void;
|
|
368
|
+
exitAliasedQuery?: (ctx: AliasedQueryContext) => void;
|
|
369
|
+
enterAliasedRelation?: (ctx: AliasedRelationContext) => void;
|
|
370
|
+
exitAliasedRelation?: (ctx: AliasedRelationContext) => void;
|
|
371
|
+
enterInlineTableDefault2?: (ctx: InlineTableDefault2Context) => void;
|
|
372
|
+
exitInlineTableDefault2?: (ctx: InlineTableDefault2Context) => void;
|
|
373
|
+
enterTableValuedFunction?: (ctx: TableValuedFunctionContext) => void;
|
|
374
|
+
exitTableValuedFunction?: (ctx: TableValuedFunctionContext) => void;
|
|
375
|
+
enterExponentLiteral?: (ctx: ExponentLiteralContext) => void;
|
|
376
|
+
exitExponentLiteral?: (ctx: ExponentLiteralContext) => void;
|
|
377
|
+
enterDecimalLiteral?: (ctx: DecimalLiteralContext) => void;
|
|
378
|
+
exitDecimalLiteral?: (ctx: DecimalLiteralContext) => void;
|
|
379
|
+
enterLegacyDecimalLiteral?: (ctx: LegacyDecimalLiteralContext) => void;
|
|
380
|
+
exitLegacyDecimalLiteral?: (ctx: LegacyDecimalLiteralContext) => void;
|
|
381
|
+
enterIntegerLiteral?: (ctx: IntegerLiteralContext) => void;
|
|
382
|
+
exitIntegerLiteral?: (ctx: IntegerLiteralContext) => void;
|
|
383
|
+
enterBigIntLiteral?: (ctx: BigIntLiteralContext) => void;
|
|
384
|
+
exitBigIntLiteral?: (ctx: BigIntLiteralContext) => void;
|
|
385
|
+
enterSmallIntLiteral?: (ctx: SmallIntLiteralContext) => void;
|
|
386
|
+
exitSmallIntLiteral?: (ctx: SmallIntLiteralContext) => void;
|
|
387
|
+
enterTinyIntLiteral?: (ctx: TinyIntLiteralContext) => void;
|
|
388
|
+
exitTinyIntLiteral?: (ctx: TinyIntLiteralContext) => void;
|
|
389
|
+
enterDoubleLiteral?: (ctx: DoubleLiteralContext) => void;
|
|
390
|
+
exitDoubleLiteral?: (ctx: DoubleLiteralContext) => void;
|
|
391
|
+
enterFloatLiteral?: (ctx: FloatLiteralContext) => void;
|
|
392
|
+
exitFloatLiteral?: (ctx: FloatLiteralContext) => void;
|
|
393
|
+
enterBigDecimalLiteral?: (ctx: BigDecimalLiteralContext) => void;
|
|
394
|
+
exitBigDecimalLiteral?: (ctx: BigDecimalLiteralContext) => void;
|
|
395
|
+
enterQueryTermDefault?: (ctx: QueryTermDefaultContext) => void;
|
|
396
|
+
exitQueryTermDefault?: (ctx: QueryTermDefaultContext) => void;
|
|
397
|
+
enterSetOperation?: (ctx: SetOperationContext) => void;
|
|
398
|
+
exitSetOperation?: (ctx: SetOperationContext) => void;
|
|
399
|
+
enterInsertOverwriteTable?: (ctx: InsertOverwriteTableContext) => void;
|
|
400
|
+
exitInsertOverwriteTable?: (ctx: InsertOverwriteTableContext) => void;
|
|
401
|
+
enterInsertIntoTable?: (ctx: InsertIntoTableContext) => void;
|
|
402
|
+
exitInsertIntoTable?: (ctx: InsertIntoTableContext) => void;
|
|
403
|
+
enterInsertIntoReplaceWhere?: (ctx: InsertIntoReplaceWhereContext) => void;
|
|
404
|
+
exitInsertIntoReplaceWhere?: (ctx: InsertIntoReplaceWhereContext) => void;
|
|
405
|
+
enterInsertOverwriteHiveDir?: (ctx: InsertOverwriteHiveDirContext) => void;
|
|
406
|
+
exitInsertOverwriteHiveDir?: (ctx: InsertOverwriteHiveDirContext) => void;
|
|
407
|
+
enterInsertOverwriteDir?: (ctx: InsertOverwriteDirContext) => void;
|
|
408
|
+
exitInsertOverwriteDir?: (ctx: InsertOverwriteDirContext) => void;
|
|
409
|
+
enterValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void;
|
|
410
|
+
exitValueExpressionDefault?: (ctx: ValueExpressionDefaultContext) => void;
|
|
411
|
+
enterArithmeticUnary?: (ctx: ArithmeticUnaryContext) => void;
|
|
412
|
+
exitArithmeticUnary?: (ctx: ArithmeticUnaryContext) => void;
|
|
413
|
+
enterArithmeticBinary?: (ctx: ArithmeticBinaryContext) => void;
|
|
414
|
+
exitArithmeticBinary?: (ctx: ArithmeticBinaryContext) => void;
|
|
415
|
+
enterComparison?: (ctx: ComparisonContext) => void;
|
|
416
|
+
exitComparison?: (ctx: ComparisonContext) => void;
|
|
417
|
+
enterPartitionTransform?: (ctx: PartitionTransformContext) => void;
|
|
418
|
+
exitPartitionTransform?: (ctx: PartitionTransformContext) => void;
|
|
419
|
+
enterPartitionColumn?: (ctx: PartitionColumnContext) => void;
|
|
420
|
+
exitPartitionColumn?: (ctx: PartitionColumnContext) => void;
|
|
421
|
+
enterQueryPrimaryDefault?: (ctx: QueryPrimaryDefaultContext) => void;
|
|
422
|
+
exitQueryPrimaryDefault?: (ctx: QueryPrimaryDefaultContext) => void;
|
|
423
|
+
enterFromStmt?: (ctx: FromStmtContext) => void;
|
|
424
|
+
exitFromStmt?: (ctx: FromStmtContext) => void;
|
|
425
|
+
enterTable?: (ctx: TableContext) => void;
|
|
426
|
+
exitTable?: (ctx: TableContext) => void;
|
|
427
|
+
enterInlineTableDefault1?: (ctx: InlineTableDefault1Context) => void;
|
|
428
|
+
exitInlineTableDefault1?: (ctx: InlineTableDefault1Context) => void;
|
|
429
|
+
enterSubquery?: (ctx: SubqueryContext) => void;
|
|
430
|
+
exitSubquery?: (ctx: SubqueryContext) => void;
|
|
431
|
+
enterSingleInsertQuery?: (ctx: SingleInsertQueryContext) => void;
|
|
432
|
+
exitSingleInsertQuery?: (ctx: SingleInsertQueryContext) => void;
|
|
433
|
+
enterMultiInsertQuery?: (ctx: MultiInsertQueryContext) => void;
|
|
434
|
+
exitMultiInsertQuery?: (ctx: MultiInsertQueryContext) => void;
|
|
435
|
+
enterDeleteFromTable?: (ctx: DeleteFromTableContext) => void;
|
|
436
|
+
exitDeleteFromTable?: (ctx: DeleteFromTableContext) => void;
|
|
437
|
+
enterUpdateTable?: (ctx: UpdateTableContext) => void;
|
|
438
|
+
exitUpdateTable?: (ctx: UpdateTableContext) => void;
|
|
439
|
+
enterMergeIntoTable?: (ctx: MergeIntoTableContext) => void;
|
|
440
|
+
exitMergeIntoTable?: (ctx: MergeIntoTableContext) => void;
|
|
441
|
+
enterCurrentLike?: (ctx: CurrentLikeContext) => void;
|
|
442
|
+
exitCurrentLike?: (ctx: CurrentLikeContext) => void;
|
|
443
|
+
enterTimestampadd?: (ctx: TimestampaddContext) => void;
|
|
444
|
+
exitTimestampadd?: (ctx: TimestampaddContext) => void;
|
|
445
|
+
enterTimestampdiff?: (ctx: TimestampdiffContext) => void;
|
|
446
|
+
exitTimestampdiff?: (ctx: TimestampdiffContext) => void;
|
|
447
|
+
enterSearchedCase?: (ctx: SearchedCaseContext) => void;
|
|
448
|
+
exitSearchedCase?: (ctx: SearchedCaseContext) => void;
|
|
449
|
+
enterSimpleCase?: (ctx: SimpleCaseContext) => void;
|
|
450
|
+
exitSimpleCase?: (ctx: SimpleCaseContext) => void;
|
|
451
|
+
enterCast?: (ctx: CastContext) => void;
|
|
452
|
+
exitCast?: (ctx: CastContext) => void;
|
|
453
|
+
enterStruct?: (ctx: StructContext) => void;
|
|
454
|
+
exitStruct?: (ctx: StructContext) => void;
|
|
455
|
+
enterFirst?: (ctx: FirstContext) => void;
|
|
456
|
+
exitFirst?: (ctx: FirstContext) => void;
|
|
457
|
+
enterAny_value?: (ctx: Any_valueContext) => void;
|
|
458
|
+
exitAny_value?: (ctx: Any_valueContext) => void;
|
|
459
|
+
enterLast?: (ctx: LastContext) => void;
|
|
460
|
+
exitLast?: (ctx: LastContext) => void;
|
|
461
|
+
enterPosition?: (ctx: PositionContext) => void;
|
|
462
|
+
exitPosition?: (ctx: PositionContext) => void;
|
|
463
|
+
enterConstantDefault?: (ctx: ConstantDefaultContext) => void;
|
|
464
|
+
exitConstantDefault?: (ctx: ConstantDefaultContext) => void;
|
|
465
|
+
enterStar?: (ctx: StarContext) => void;
|
|
466
|
+
exitStar?: (ctx: StarContext) => void;
|
|
467
|
+
enterRowConstructor?: (ctx: RowConstructorContext) => void;
|
|
468
|
+
exitRowConstructor?: (ctx: RowConstructorContext) => void;
|
|
469
|
+
enterSubqueryExpression?: (ctx: SubqueryExpressionContext) => void;
|
|
470
|
+
exitSubqueryExpression?: (ctx: SubqueryExpressionContext) => void;
|
|
471
|
+
enterIdentifierClause?: (ctx: IdentifierClauseContext) => void;
|
|
472
|
+
exitIdentifierClause?: (ctx: IdentifierClauseContext) => void;
|
|
473
|
+
enterFunctionCall?: (ctx: FunctionCallContext) => void;
|
|
474
|
+
exitFunctionCall?: (ctx: FunctionCallContext) => void;
|
|
475
|
+
enterLambda?: (ctx: LambdaContext) => void;
|
|
476
|
+
exitLambda?: (ctx: LambdaContext) => void;
|
|
477
|
+
enterSubscript?: (ctx: SubscriptContext) => void;
|
|
478
|
+
exitSubscript?: (ctx: SubscriptContext) => void;
|
|
479
|
+
enterColumnReference?: (ctx: ColumnReferenceContext) => void;
|
|
480
|
+
exitColumnReference?: (ctx: ColumnReferenceContext) => void;
|
|
481
|
+
enterDereference?: (ctx: DereferenceContext) => void;
|
|
482
|
+
exitDereference?: (ctx: DereferenceContext) => void;
|
|
483
|
+
enterParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => void;
|
|
484
|
+
exitParenthesizedExpression?: (ctx: ParenthesizedExpressionContext) => void;
|
|
485
|
+
enterExtract?: (ctx: ExtractContext) => void;
|
|
486
|
+
exitExtract?: (ctx: ExtractContext) => void;
|
|
487
|
+
enterSubstring?: (ctx: SubstringContext) => void;
|
|
488
|
+
exitSubstring?: (ctx: SubstringContext) => void;
|
|
489
|
+
enterTrim?: (ctx: TrimContext) => void;
|
|
490
|
+
exitTrim?: (ctx: TrimContext) => void;
|
|
491
|
+
enterOverlay?: (ctx: OverlayContext) => void;
|
|
492
|
+
exitOverlay?: (ctx: OverlayContext) => void;
|
|
493
|
+
enterPercentile?: (ctx: PercentileContext) => void;
|
|
494
|
+
exitPercentile?: (ctx: PercentileContext) => void;
|
|
495
|
+
enterUnquotedIdentifier?: (ctx: UnquotedIdentifierContext) => void;
|
|
496
|
+
exitUnquotedIdentifier?: (ctx: UnquotedIdentifierContext) => void;
|
|
497
|
+
enterQuotedIdentifierAlternative?: (ctx: QuotedIdentifierAlternativeContext) => void;
|
|
498
|
+
exitQuotedIdentifierAlternative?: (ctx: QuotedIdentifierAlternativeContext) => void;
|
|
499
|
+
enterTableFileFormat?: (ctx: TableFileFormatContext) => void;
|
|
500
|
+
exitTableFileFormat?: (ctx: TableFileFormatContext) => void;
|
|
501
|
+
enterGenericFileFormat?: (ctx: GenericFileFormatContext) => void;
|
|
502
|
+
exitGenericFileFormat?: (ctx: GenericFileFormatContext) => void;
|
|
503
|
+
enterSampleByPercentile?: (ctx: SampleByPercentileContext) => void;
|
|
504
|
+
exitSampleByPercentile?: (ctx: SampleByPercentileContext) => void;
|
|
505
|
+
enterSampleByRows?: (ctx: SampleByRowsContext) => void;
|
|
506
|
+
exitSampleByRows?: (ctx: SampleByRowsContext) => void;
|
|
507
|
+
enterSampleByBucket?: (ctx: SampleByBucketContext) => void;
|
|
508
|
+
exitSampleByBucket?: (ctx: SampleByBucketContext) => void;
|
|
509
|
+
enterSampleByBytes?: (ctx: SampleByBytesContext) => void;
|
|
510
|
+
exitSampleByBytes?: (ctx: SampleByBytesContext) => void;
|
|
511
|
+
enterNullLiteral?: (ctx: NullLiteralContext) => void;
|
|
512
|
+
exitNullLiteral?: (ctx: NullLiteralContext) => void;
|
|
513
|
+
enterPosParameterLiteral?: (ctx: PosParameterLiteralContext) => void;
|
|
514
|
+
exitPosParameterLiteral?: (ctx: PosParameterLiteralContext) => void;
|
|
515
|
+
enterNamedParameterLiteral?: (ctx: NamedParameterLiteralContext) => void;
|
|
516
|
+
exitNamedParameterLiteral?: (ctx: NamedParameterLiteralContext) => void;
|
|
517
|
+
enterIntervalLiteral?: (ctx: IntervalLiteralContext) => void;
|
|
518
|
+
exitIntervalLiteral?: (ctx: IntervalLiteralContext) => void;
|
|
519
|
+
enterTypeConstructor?: (ctx: TypeConstructorContext) => void;
|
|
520
|
+
exitTypeConstructor?: (ctx: TypeConstructorContext) => void;
|
|
521
|
+
enterNumericLiteral?: (ctx: NumericLiteralContext) => void;
|
|
522
|
+
exitNumericLiteral?: (ctx: NumericLiteralContext) => void;
|
|
523
|
+
enterBooleanLiteral?: (ctx: BooleanLiteralContext) => void;
|
|
524
|
+
exitBooleanLiteral?: (ctx: BooleanLiteralContext) => void;
|
|
525
|
+
enterStringLiteral?: (ctx: StringLiteralContext) => void;
|
|
526
|
+
exitStringLiteral?: (ctx: StringLiteralContext) => void;
|
|
527
|
+
enterRowFormatSerde?: (ctx: RowFormatSerdeContext) => void;
|
|
528
|
+
exitRowFormatSerde?: (ctx: RowFormatSerdeContext) => void;
|
|
529
|
+
enterRowFormatDelimited?: (ctx: RowFormatDelimitedContext) => void;
|
|
530
|
+
exitRowFormatDelimited?: (ctx: RowFormatDelimitedContext) => void;
|
|
531
|
+
enterComplexDataType?: (ctx: ComplexDataTypeContext) => void;
|
|
532
|
+
exitComplexDataType?: (ctx: ComplexDataTypeContext) => void;
|
|
533
|
+
enterYearMonthIntervalDataType?: (ctx: YearMonthIntervalDataTypeContext) => void;
|
|
534
|
+
exitYearMonthIntervalDataType?: (ctx: YearMonthIntervalDataTypeContext) => void;
|
|
535
|
+
enterDayTimeIntervalDataType?: (ctx: DayTimeIntervalDataTypeContext) => void;
|
|
536
|
+
exitDayTimeIntervalDataType?: (ctx: DayTimeIntervalDataTypeContext) => void;
|
|
537
|
+
enterPrimitiveDataType?: (ctx: PrimitiveDataTypeContext) => void;
|
|
538
|
+
exitPrimitiveDataType?: (ctx: PrimitiveDataTypeContext) => void;
|
|
539
|
+
enterTransformQuerySpecification?: (ctx: TransformQuerySpecificationContext) => void;
|
|
540
|
+
exitTransformQuerySpecification?: (ctx: TransformQuerySpecificationContext) => void;
|
|
541
|
+
enterRegularQuerySpecification?: (ctx: RegularQuerySpecificationContext) => void;
|
|
542
|
+
exitRegularQuerySpecification?: (ctx: RegularQuerySpecificationContext) => void;
|
|
543
|
+
enterErrorIdent?: (ctx: ErrorIdentContext) => void;
|
|
544
|
+
exitErrorIdent?: (ctx: ErrorIdentContext) => void;
|
|
545
|
+
enterRealIdent?: (ctx: RealIdentContext) => void;
|
|
546
|
+
exitRealIdent?: (ctx: RealIdentContext) => void;
|
|
547
|
+
enterWindowRef?: (ctx: WindowRefContext) => void;
|
|
548
|
+
exitWindowRef?: (ctx: WindowRefContext) => void;
|
|
549
|
+
enterWindowDef?: (ctx: WindowDefContext) => void;
|
|
550
|
+
exitWindowDef?: (ctx: WindowDefContext) => void;
|
|
551
|
+
enterIdentityTransform?: (ctx: IdentityTransformContext) => void;
|
|
552
|
+
exitIdentityTransform?: (ctx: IdentityTransformContext) => void;
|
|
553
|
+
enterApplyTransform?: (ctx: ApplyTransformContext) => void;
|
|
554
|
+
exitApplyTransform?: (ctx: ApplyTransformContext) => void;
|
|
555
|
+
enterStatementDefault?: (ctx: StatementDefaultContext) => void;
|
|
556
|
+
exitStatementDefault?: (ctx: StatementDefaultContext) => void;
|
|
557
|
+
enterDmlStatement?: (ctx: DmlStatementContext) => void;
|
|
558
|
+
exitDmlStatement?: (ctx: DmlStatementContext) => void;
|
|
559
|
+
enterUse?: (ctx: UseContext) => void;
|
|
560
|
+
exitUse?: (ctx: UseContext) => void;
|
|
561
|
+
enterUseNamespace?: (ctx: UseNamespaceContext) => void;
|
|
562
|
+
exitUseNamespace?: (ctx: UseNamespaceContext) => void;
|
|
563
|
+
enterSetCatalog?: (ctx: SetCatalogContext) => void;
|
|
564
|
+
exitSetCatalog?: (ctx: SetCatalogContext) => void;
|
|
565
|
+
enterCreateNamespace?: (ctx: CreateNamespaceContext) => void;
|
|
566
|
+
exitCreateNamespace?: (ctx: CreateNamespaceContext) => void;
|
|
567
|
+
enterSetNamespaceProperties?: (ctx: SetNamespacePropertiesContext) => void;
|
|
568
|
+
exitSetNamespaceProperties?: (ctx: SetNamespacePropertiesContext) => void;
|
|
569
|
+
enterSetNamespaceLocation?: (ctx: SetNamespaceLocationContext) => void;
|
|
570
|
+
exitSetNamespaceLocation?: (ctx: SetNamespaceLocationContext) => void;
|
|
571
|
+
enterDropNamespace?: (ctx: DropNamespaceContext) => void;
|
|
572
|
+
exitDropNamespace?: (ctx: DropNamespaceContext) => void;
|
|
573
|
+
enterShowNamespaces?: (ctx: ShowNamespacesContext) => void;
|
|
574
|
+
exitShowNamespaces?: (ctx: ShowNamespacesContext) => void;
|
|
575
|
+
enterCreateTable?: (ctx: CreateTableContext) => void;
|
|
576
|
+
exitCreateTable?: (ctx: CreateTableContext) => void;
|
|
577
|
+
enterCreateTableLike?: (ctx: CreateTableLikeContext) => void;
|
|
578
|
+
exitCreateTableLike?: (ctx: CreateTableLikeContext) => void;
|
|
579
|
+
enterReplaceTable?: (ctx: ReplaceTableContext) => void;
|
|
580
|
+
exitReplaceTable?: (ctx: ReplaceTableContext) => void;
|
|
581
|
+
enterAnalyze?: (ctx: AnalyzeContext) => void;
|
|
582
|
+
exitAnalyze?: (ctx: AnalyzeContext) => void;
|
|
583
|
+
enterAnalyzeTables?: (ctx: AnalyzeTablesContext) => void;
|
|
584
|
+
exitAnalyzeTables?: (ctx: AnalyzeTablesContext) => void;
|
|
585
|
+
enterAddTableColumns?: (ctx: AddTableColumnsContext) => void;
|
|
586
|
+
exitAddTableColumns?: (ctx: AddTableColumnsContext) => void;
|
|
587
|
+
enterRenameTableColumn?: (ctx: RenameTableColumnContext) => void;
|
|
588
|
+
exitRenameTableColumn?: (ctx: RenameTableColumnContext) => void;
|
|
589
|
+
enterDropTableColumns?: (ctx: DropTableColumnsContext) => void;
|
|
590
|
+
exitDropTableColumns?: (ctx: DropTableColumnsContext) => void;
|
|
591
|
+
enterRenameTable?: (ctx: RenameTableContext) => void;
|
|
592
|
+
exitRenameTable?: (ctx: RenameTableContext) => void;
|
|
593
|
+
enterSetTableProperties?: (ctx: SetTablePropertiesContext) => void;
|
|
594
|
+
exitSetTableProperties?: (ctx: SetTablePropertiesContext) => void;
|
|
595
|
+
enterUnsetTableProperties?: (ctx: UnsetTablePropertiesContext) => void;
|
|
596
|
+
exitUnsetTableProperties?: (ctx: UnsetTablePropertiesContext) => void;
|
|
597
|
+
enterAlterTableAlterColumn?: (ctx: AlterTableAlterColumnContext) => void;
|
|
598
|
+
exitAlterTableAlterColumn?: (ctx: AlterTableAlterColumnContext) => void;
|
|
599
|
+
enterHiveChangeColumn?: (ctx: HiveChangeColumnContext) => void;
|
|
600
|
+
exitHiveChangeColumn?: (ctx: HiveChangeColumnContext) => void;
|
|
601
|
+
enterHiveReplaceColumns?: (ctx: HiveReplaceColumnsContext) => void;
|
|
602
|
+
exitHiveReplaceColumns?: (ctx: HiveReplaceColumnsContext) => void;
|
|
603
|
+
enterSetTableSerDe?: (ctx: SetTableSerDeContext) => void;
|
|
604
|
+
exitSetTableSerDe?: (ctx: SetTableSerDeContext) => void;
|
|
605
|
+
enterAddTablePartition?: (ctx: AddTablePartitionContext) => void;
|
|
606
|
+
exitAddTablePartition?: (ctx: AddTablePartitionContext) => void;
|
|
607
|
+
enterRenameTablePartition?: (ctx: RenameTablePartitionContext) => void;
|
|
608
|
+
exitRenameTablePartition?: (ctx: RenameTablePartitionContext) => void;
|
|
609
|
+
enterDropTablePartitions?: (ctx: DropTablePartitionsContext) => void;
|
|
610
|
+
exitDropTablePartitions?: (ctx: DropTablePartitionsContext) => void;
|
|
611
|
+
enterSetTableLocation?: (ctx: SetTableLocationContext) => void;
|
|
612
|
+
exitSetTableLocation?: (ctx: SetTableLocationContext) => void;
|
|
613
|
+
enterRecoverPartitions?: (ctx: RecoverPartitionsContext) => void;
|
|
614
|
+
exitRecoverPartitions?: (ctx: RecoverPartitionsContext) => void;
|
|
615
|
+
enterDropTable?: (ctx: DropTableContext) => void;
|
|
616
|
+
exitDropTable?: (ctx: DropTableContext) => void;
|
|
617
|
+
enterDropView?: (ctx: DropViewContext) => void;
|
|
618
|
+
exitDropView?: (ctx: DropViewContext) => void;
|
|
619
|
+
enterCreateView?: (ctx: CreateViewContext) => void;
|
|
620
|
+
exitCreateView?: (ctx: CreateViewContext) => void;
|
|
621
|
+
enterCreateTempViewUsing?: (ctx: CreateTempViewUsingContext) => void;
|
|
622
|
+
exitCreateTempViewUsing?: (ctx: CreateTempViewUsingContext) => void;
|
|
623
|
+
enterAlterViewQuery?: (ctx: AlterViewQueryContext) => void;
|
|
624
|
+
exitAlterViewQuery?: (ctx: AlterViewQueryContext) => void;
|
|
625
|
+
enterCreateFunction?: (ctx: CreateFunctionContext) => void;
|
|
626
|
+
exitCreateFunction?: (ctx: CreateFunctionContext) => void;
|
|
627
|
+
enterDropFunction?: (ctx: DropFunctionContext) => void;
|
|
628
|
+
exitDropFunction?: (ctx: DropFunctionContext) => void;
|
|
629
|
+
enterExplain?: (ctx: ExplainContext) => void;
|
|
630
|
+
exitExplain?: (ctx: ExplainContext) => void;
|
|
631
|
+
enterShowTables?: (ctx: ShowTablesContext) => void;
|
|
632
|
+
exitShowTables?: (ctx: ShowTablesContext) => void;
|
|
633
|
+
enterShowTableExtended?: (ctx: ShowTableExtendedContext) => void;
|
|
634
|
+
exitShowTableExtended?: (ctx: ShowTableExtendedContext) => void;
|
|
635
|
+
enterShowTblProperties?: (ctx: ShowTblPropertiesContext) => void;
|
|
636
|
+
exitShowTblProperties?: (ctx: ShowTblPropertiesContext) => void;
|
|
637
|
+
enterShowColumns?: (ctx: ShowColumnsContext) => void;
|
|
638
|
+
exitShowColumns?: (ctx: ShowColumnsContext) => void;
|
|
639
|
+
enterShowViews?: (ctx: ShowViewsContext) => void;
|
|
640
|
+
exitShowViews?: (ctx: ShowViewsContext) => void;
|
|
641
|
+
enterShowPartitions?: (ctx: ShowPartitionsContext) => void;
|
|
642
|
+
exitShowPartitions?: (ctx: ShowPartitionsContext) => void;
|
|
643
|
+
enterShowFunctions?: (ctx: ShowFunctionsContext) => void;
|
|
644
|
+
exitShowFunctions?: (ctx: ShowFunctionsContext) => void;
|
|
645
|
+
enterShowCreateTable?: (ctx: ShowCreateTableContext) => void;
|
|
646
|
+
exitShowCreateTable?: (ctx: ShowCreateTableContext) => void;
|
|
647
|
+
enterShowCurrentNamespace?: (ctx: ShowCurrentNamespaceContext) => void;
|
|
648
|
+
exitShowCurrentNamespace?: (ctx: ShowCurrentNamespaceContext) => void;
|
|
649
|
+
enterShowCatalogs?: (ctx: ShowCatalogsContext) => void;
|
|
650
|
+
exitShowCatalogs?: (ctx: ShowCatalogsContext) => void;
|
|
651
|
+
enterDescribeFunction?: (ctx: DescribeFunctionContext) => void;
|
|
652
|
+
exitDescribeFunction?: (ctx: DescribeFunctionContext) => void;
|
|
653
|
+
enterDescribeNamespace?: (ctx: DescribeNamespaceContext) => void;
|
|
654
|
+
exitDescribeNamespace?: (ctx: DescribeNamespaceContext) => void;
|
|
655
|
+
enterDescribeRelation?: (ctx: DescribeRelationContext) => void;
|
|
656
|
+
exitDescribeRelation?: (ctx: DescribeRelationContext) => void;
|
|
657
|
+
enterDescribeQuery?: (ctx: DescribeQueryContext) => void;
|
|
658
|
+
exitDescribeQuery?: (ctx: DescribeQueryContext) => void;
|
|
659
|
+
enterCommentNamespace?: (ctx: CommentNamespaceContext) => void;
|
|
660
|
+
exitCommentNamespace?: (ctx: CommentNamespaceContext) => void;
|
|
661
|
+
enterCommentTable?: (ctx: CommentTableContext) => void;
|
|
662
|
+
exitCommentTable?: (ctx: CommentTableContext) => void;
|
|
663
|
+
enterRefreshTable?: (ctx: RefreshTableContext) => void;
|
|
664
|
+
exitRefreshTable?: (ctx: RefreshTableContext) => void;
|
|
665
|
+
enterRefreshFunction?: (ctx: RefreshFunctionContext) => void;
|
|
666
|
+
exitRefreshFunction?: (ctx: RefreshFunctionContext) => void;
|
|
667
|
+
enterRefreshResource?: (ctx: RefreshResourceContext) => void;
|
|
668
|
+
exitRefreshResource?: (ctx: RefreshResourceContext) => void;
|
|
669
|
+
enterCacheTable?: (ctx: CacheTableContext) => void;
|
|
670
|
+
exitCacheTable?: (ctx: CacheTableContext) => void;
|
|
671
|
+
enterUncacheTable?: (ctx: UncacheTableContext) => void;
|
|
672
|
+
exitUncacheTable?: (ctx: UncacheTableContext) => void;
|
|
673
|
+
enterClearCache?: (ctx: ClearCacheContext) => void;
|
|
674
|
+
exitClearCache?: (ctx: ClearCacheContext) => void;
|
|
675
|
+
enterLoadData?: (ctx: LoadDataContext) => void;
|
|
676
|
+
exitLoadData?: (ctx: LoadDataContext) => void;
|
|
677
|
+
enterTruncateTable?: (ctx: TruncateTableContext) => void;
|
|
678
|
+
exitTruncateTable?: (ctx: TruncateTableContext) => void;
|
|
679
|
+
enterRepairTable?: (ctx: RepairTableContext) => void;
|
|
680
|
+
exitRepairTable?: (ctx: RepairTableContext) => void;
|
|
681
|
+
enterManageResource?: (ctx: ManageResourceContext) => void;
|
|
682
|
+
exitManageResource?: (ctx: ManageResourceContext) => void;
|
|
683
|
+
enterFailNativeCommand?: (ctx: FailNativeCommandContext) => void;
|
|
684
|
+
exitFailNativeCommand?: (ctx: FailNativeCommandContext) => void;
|
|
685
|
+
enterSetTimeZone?: (ctx: SetTimeZoneContext) => void;
|
|
686
|
+
exitSetTimeZone?: (ctx: SetTimeZoneContext) => void;
|
|
687
|
+
enterSetQuotedConfiguration?: (ctx: SetQuotedConfigurationContext) => void;
|
|
688
|
+
exitSetQuotedConfiguration?: (ctx: SetQuotedConfigurationContext) => void;
|
|
689
|
+
enterSetConfiguration?: (ctx: SetConfigurationContext) => void;
|
|
690
|
+
exitSetConfiguration?: (ctx: SetConfigurationContext) => void;
|
|
691
|
+
enterResetQuotedConfiguration?: (ctx: ResetQuotedConfigurationContext) => void;
|
|
692
|
+
exitResetQuotedConfiguration?: (ctx: ResetQuotedConfigurationContext) => void;
|
|
693
|
+
enterResetConfiguration?: (ctx: ResetConfigurationContext) => void;
|
|
694
|
+
exitResetConfiguration?: (ctx: ResetConfigurationContext) => void;
|
|
695
|
+
enterCreateIndex?: (ctx: CreateIndexContext) => void;
|
|
696
|
+
exitCreateIndex?: (ctx: CreateIndexContext) => void;
|
|
697
|
+
enterDropIndex?: (ctx: DropIndexContext) => void;
|
|
698
|
+
exitDropIndex?: (ctx: DropIndexContext) => void;
|
|
699
|
+
enterLogicalNot?: (ctx: LogicalNotContext) => void;
|
|
700
|
+
exitLogicalNot?: (ctx: LogicalNotContext) => void;
|
|
701
|
+
enterExists?: (ctx: ExistsContext) => void;
|
|
702
|
+
exitExists?: (ctx: ExistsContext) => void;
|
|
703
|
+
enterPredicated?: (ctx: PredicatedContext) => void;
|
|
704
|
+
exitPredicated?: (ctx: PredicatedContext) => void;
|
|
705
|
+
enterLogicalBinary?: (ctx: LogicalBinaryContext) => void;
|
|
706
|
+
exitLogicalBinary?: (ctx: LogicalBinaryContext) => void;
|
|
707
|
+
enterProgram?: (ctx: ProgramContext) => void;
|
|
708
|
+
exitProgram?: (ctx: ProgramContext) => void;
|
|
709
|
+
enterStatements?: (ctx: StatementsContext) => void;
|
|
710
|
+
exitStatements?: (ctx: StatementsContext) => void;
|
|
711
|
+
enterStatementEnd?: (ctx: StatementEndContext) => void;
|
|
712
|
+
exitStatementEnd?: (ctx: StatementEndContext) => void;
|
|
713
|
+
enterSingleStatement?: (ctx: SingleStatementContext) => void;
|
|
714
|
+
exitSingleStatement?: (ctx: SingleStatementContext) => void;
|
|
715
|
+
enterSingleExpression?: (ctx: SingleExpressionContext) => void;
|
|
716
|
+
exitSingleExpression?: (ctx: SingleExpressionContext) => void;
|
|
717
|
+
enterSingleTableIdentifier?: (ctx: SingleTableIdentifierContext) => void;
|
|
718
|
+
exitSingleTableIdentifier?: (ctx: SingleTableIdentifierContext) => void;
|
|
719
|
+
enterSingleMultipartIdentifier?: (ctx: SingleMultipartIdentifierContext) => void;
|
|
720
|
+
exitSingleMultipartIdentifier?: (ctx: SingleMultipartIdentifierContext) => void;
|
|
721
|
+
enterSingleFunctionIdentifier?: (ctx: SingleFunctionIdentifierContext) => void;
|
|
722
|
+
exitSingleFunctionIdentifier?: (ctx: SingleFunctionIdentifierContext) => void;
|
|
723
|
+
enterSingleDataType?: (ctx: SingleDataTypeContext) => void;
|
|
724
|
+
exitSingleDataType?: (ctx: SingleDataTypeContext) => void;
|
|
725
|
+
enterSingleTableSchema?: (ctx: SingleTableSchemaContext) => void;
|
|
726
|
+
exitSingleTableSchema?: (ctx: SingleTableSchemaContext) => void;
|
|
727
|
+
enterStatementForFolding?: (ctx: StatementForFoldingContext) => void;
|
|
728
|
+
exitStatementForFolding?: (ctx: StatementForFoldingContext) => void;
|
|
729
|
+
enterStatement?: (ctx: StatementContext) => void;
|
|
730
|
+
exitStatement?: (ctx: StatementContext) => void;
|
|
731
|
+
enterTimezone?: (ctx: TimezoneContext) => void;
|
|
732
|
+
exitTimezone?: (ctx: TimezoneContext) => void;
|
|
733
|
+
enterConfigKey?: (ctx: ConfigKeyContext) => void;
|
|
734
|
+
exitConfigKey?: (ctx: ConfigKeyContext) => void;
|
|
735
|
+
enterConfigValue?: (ctx: ConfigValueContext) => void;
|
|
736
|
+
exitConfigValue?: (ctx: ConfigValueContext) => void;
|
|
737
|
+
enterUnsupportedHiveNativeCommands?: (ctx: UnsupportedHiveNativeCommandsContext) => void;
|
|
738
|
+
exitUnsupportedHiveNativeCommands?: (ctx: UnsupportedHiveNativeCommandsContext) => void;
|
|
739
|
+
enterCreateTableHeader?: (ctx: CreateTableHeaderContext) => void;
|
|
740
|
+
exitCreateTableHeader?: (ctx: CreateTableHeaderContext) => void;
|
|
741
|
+
enterReplaceTableHeader?: (ctx: ReplaceTableHeaderContext) => void;
|
|
742
|
+
exitReplaceTableHeader?: (ctx: ReplaceTableHeaderContext) => void;
|
|
743
|
+
enterBucketSpec?: (ctx: BucketSpecContext) => void;
|
|
744
|
+
exitBucketSpec?: (ctx: BucketSpecContext) => void;
|
|
745
|
+
enterSkewSpec?: (ctx: SkewSpecContext) => void;
|
|
746
|
+
exitSkewSpec?: (ctx: SkewSpecContext) => void;
|
|
747
|
+
enterLocationSpec?: (ctx: LocationSpecContext) => void;
|
|
748
|
+
exitLocationSpec?: (ctx: LocationSpecContext) => void;
|
|
749
|
+
enterCommentSpec?: (ctx: CommentSpecContext) => void;
|
|
750
|
+
exitCommentSpec?: (ctx: CommentSpecContext) => void;
|
|
751
|
+
enterQuery?: (ctx: QueryContext) => void;
|
|
752
|
+
exitQuery?: (ctx: QueryContext) => void;
|
|
753
|
+
enterInsertInto?: (ctx: InsertIntoContext) => void;
|
|
754
|
+
exitInsertInto?: (ctx: InsertIntoContext) => void;
|
|
755
|
+
enterPartitionSpecLocation?: (ctx: PartitionSpecLocationContext) => void;
|
|
756
|
+
exitPartitionSpecLocation?: (ctx: PartitionSpecLocationContext) => void;
|
|
757
|
+
enterPartitionSpec?: (ctx: PartitionSpecContext) => void;
|
|
758
|
+
exitPartitionSpec?: (ctx: PartitionSpecContext) => void;
|
|
759
|
+
enterPartitionVal?: (ctx: PartitionValContext) => void;
|
|
760
|
+
exitPartitionVal?: (ctx: PartitionValContext) => void;
|
|
761
|
+
enterNamespace?: (ctx: NamespaceContext) => void;
|
|
762
|
+
exitNamespace?: (ctx: NamespaceContext) => void;
|
|
763
|
+
enterNamespaces?: (ctx: NamespacesContext) => void;
|
|
764
|
+
exitNamespaces?: (ctx: NamespacesContext) => void;
|
|
765
|
+
enterDescribeFuncName?: (ctx: DescribeFuncNameContext) => void;
|
|
766
|
+
exitDescribeFuncName?: (ctx: DescribeFuncNameContext) => void;
|
|
767
|
+
enterDescribeColName?: (ctx: DescribeColNameContext) => void;
|
|
768
|
+
exitDescribeColName?: (ctx: DescribeColNameContext) => void;
|
|
769
|
+
enterCtes?: (ctx: CtesContext) => void;
|
|
770
|
+
exitCtes?: (ctx: CtesContext) => void;
|
|
771
|
+
enterNamedQuery?: (ctx: NamedQueryContext) => void;
|
|
772
|
+
exitNamedQuery?: (ctx: NamedQueryContext) => void;
|
|
773
|
+
enterTableProvider?: (ctx: TableProviderContext) => void;
|
|
774
|
+
exitTableProvider?: (ctx: TableProviderContext) => void;
|
|
775
|
+
enterCreateTableClauses?: (ctx: CreateTableClausesContext) => void;
|
|
776
|
+
exitCreateTableClauses?: (ctx: CreateTableClausesContext) => void;
|
|
777
|
+
enterPropertyList?: (ctx: PropertyListContext) => void;
|
|
778
|
+
exitPropertyList?: (ctx: PropertyListContext) => void;
|
|
779
|
+
enterProperty?: (ctx: PropertyContext) => void;
|
|
780
|
+
exitProperty?: (ctx: PropertyContext) => void;
|
|
781
|
+
enterPropertyKey?: (ctx: PropertyKeyContext) => void;
|
|
782
|
+
exitPropertyKey?: (ctx: PropertyKeyContext) => void;
|
|
783
|
+
enterPropertyValue?: (ctx: PropertyValueContext) => void;
|
|
784
|
+
exitPropertyValue?: (ctx: PropertyValueContext) => void;
|
|
785
|
+
enterExpressionPropertyList?: (ctx: ExpressionPropertyListContext) => void;
|
|
786
|
+
exitExpressionPropertyList?: (ctx: ExpressionPropertyListContext) => void;
|
|
787
|
+
enterExpressionProperty?: (ctx: ExpressionPropertyContext) => void;
|
|
788
|
+
exitExpressionProperty?: (ctx: ExpressionPropertyContext) => void;
|
|
789
|
+
enterConstantList?: (ctx: ConstantListContext) => void;
|
|
790
|
+
exitConstantList?: (ctx: ConstantListContext) => void;
|
|
791
|
+
enterNestedConstantList?: (ctx: NestedConstantListContext) => void;
|
|
792
|
+
exitNestedConstantList?: (ctx: NestedConstantListContext) => void;
|
|
793
|
+
enterCreateFileFormat?: (ctx: CreateFileFormatContext) => void;
|
|
794
|
+
exitCreateFileFormat?: (ctx: CreateFileFormatContext) => void;
|
|
795
|
+
enterFileFormat?: (ctx: FileFormatContext) => void;
|
|
796
|
+
exitFileFormat?: (ctx: FileFormatContext) => void;
|
|
797
|
+
enterStorageHandler?: (ctx: StorageHandlerContext) => void;
|
|
798
|
+
exitStorageHandler?: (ctx: StorageHandlerContext) => void;
|
|
799
|
+
enterResource?: (ctx: ResourceContext) => void;
|
|
800
|
+
exitResource?: (ctx: ResourceContext) => void;
|
|
801
|
+
enterDmlStatementNoWith?: (ctx: DmlStatementNoWithContext) => void;
|
|
802
|
+
exitDmlStatementNoWith?: (ctx: DmlStatementNoWithContext) => void;
|
|
803
|
+
enterIdentifierReference?: (ctx: IdentifierReferenceContext) => void;
|
|
804
|
+
exitIdentifierReference?: (ctx: IdentifierReferenceContext) => void;
|
|
805
|
+
enterQueryOrganization?: (ctx: QueryOrganizationContext) => void;
|
|
806
|
+
exitQueryOrganization?: (ctx: QueryOrganizationContext) => void;
|
|
807
|
+
enterMultiInsertQueryBody?: (ctx: MultiInsertQueryBodyContext) => void;
|
|
808
|
+
exitMultiInsertQueryBody?: (ctx: MultiInsertQueryBodyContext) => void;
|
|
809
|
+
enterQueryTerm?: (ctx: QueryTermContext) => void;
|
|
810
|
+
exitQueryTerm?: (ctx: QueryTermContext) => void;
|
|
811
|
+
enterQueryPrimary?: (ctx: QueryPrimaryContext) => void;
|
|
812
|
+
exitQueryPrimary?: (ctx: QueryPrimaryContext) => void;
|
|
813
|
+
enterSortItem?: (ctx: SortItemContext) => void;
|
|
814
|
+
exitSortItem?: (ctx: SortItemContext) => void;
|
|
815
|
+
enterFromStatement?: (ctx: FromStatementContext) => void;
|
|
816
|
+
exitFromStatement?: (ctx: FromStatementContext) => void;
|
|
817
|
+
enterFromStatementBody?: (ctx: FromStatementBodyContext) => void;
|
|
818
|
+
exitFromStatementBody?: (ctx: FromStatementBodyContext) => void;
|
|
819
|
+
enterQuerySpecification?: (ctx: QuerySpecificationContext) => void;
|
|
820
|
+
exitQuerySpecification?: (ctx: QuerySpecificationContext) => void;
|
|
821
|
+
enterTransformClause?: (ctx: TransformClauseContext) => void;
|
|
822
|
+
exitTransformClause?: (ctx: TransformClauseContext) => void;
|
|
823
|
+
enterSelectClause?: (ctx: SelectClauseContext) => void;
|
|
824
|
+
exitSelectClause?: (ctx: SelectClauseContext) => void;
|
|
825
|
+
enterSetClause?: (ctx: SetClauseContext) => void;
|
|
826
|
+
exitSetClause?: (ctx: SetClauseContext) => void;
|
|
827
|
+
enterMatchedClause?: (ctx: MatchedClauseContext) => void;
|
|
828
|
+
exitMatchedClause?: (ctx: MatchedClauseContext) => void;
|
|
829
|
+
enterNotMatchedClause?: (ctx: NotMatchedClauseContext) => void;
|
|
830
|
+
exitNotMatchedClause?: (ctx: NotMatchedClauseContext) => void;
|
|
831
|
+
enterNotMatchedBySourceClause?: (ctx: NotMatchedBySourceClauseContext) => void;
|
|
832
|
+
exitNotMatchedBySourceClause?: (ctx: NotMatchedBySourceClauseContext) => void;
|
|
833
|
+
enterMatchedAction?: (ctx: MatchedActionContext) => void;
|
|
834
|
+
exitMatchedAction?: (ctx: MatchedActionContext) => void;
|
|
835
|
+
enterNotMatchedAction?: (ctx: NotMatchedActionContext) => void;
|
|
836
|
+
exitNotMatchedAction?: (ctx: NotMatchedActionContext) => void;
|
|
837
|
+
enterNotMatchedBySourceAction?: (ctx: NotMatchedBySourceActionContext) => void;
|
|
838
|
+
exitNotMatchedBySourceAction?: (ctx: NotMatchedBySourceActionContext) => void;
|
|
839
|
+
enterAssignmentList?: (ctx: AssignmentListContext) => void;
|
|
840
|
+
exitAssignmentList?: (ctx: AssignmentListContext) => void;
|
|
841
|
+
enterAssignment?: (ctx: AssignmentContext) => void;
|
|
842
|
+
exitAssignment?: (ctx: AssignmentContext) => void;
|
|
843
|
+
enterWhereClause?: (ctx: WhereClauseContext) => void;
|
|
844
|
+
exitWhereClause?: (ctx: WhereClauseContext) => void;
|
|
845
|
+
enterHavingClause?: (ctx: HavingClauseContext) => void;
|
|
846
|
+
exitHavingClause?: (ctx: HavingClauseContext) => void;
|
|
847
|
+
enterHint?: (ctx: HintContext) => void;
|
|
848
|
+
exitHint?: (ctx: HintContext) => void;
|
|
849
|
+
enterHintStatement?: (ctx: HintStatementContext) => void;
|
|
850
|
+
exitHintStatement?: (ctx: HintStatementContext) => void;
|
|
851
|
+
enterFromClause?: (ctx: FromClauseContext) => void;
|
|
852
|
+
exitFromClause?: (ctx: FromClauseContext) => void;
|
|
853
|
+
enterTemporalClause?: (ctx: TemporalClauseContext) => void;
|
|
854
|
+
exitTemporalClause?: (ctx: TemporalClauseContext) => void;
|
|
855
|
+
enterAggregationClause?: (ctx: AggregationClauseContext) => void;
|
|
856
|
+
exitAggregationClause?: (ctx: AggregationClauseContext) => void;
|
|
857
|
+
enterGroupByClause?: (ctx: GroupByClauseContext) => void;
|
|
858
|
+
exitGroupByClause?: (ctx: GroupByClauseContext) => void;
|
|
859
|
+
enterGroupingAnalytics?: (ctx: GroupingAnalyticsContext) => void;
|
|
860
|
+
exitGroupingAnalytics?: (ctx: GroupingAnalyticsContext) => void;
|
|
861
|
+
enterGroupingElement?: (ctx: GroupingElementContext) => void;
|
|
862
|
+
exitGroupingElement?: (ctx: GroupingElementContext) => void;
|
|
863
|
+
enterGroupingSet?: (ctx: GroupingSetContext) => void;
|
|
864
|
+
exitGroupingSet?: (ctx: GroupingSetContext) => void;
|
|
865
|
+
enterPivotClause?: (ctx: PivotClauseContext) => void;
|
|
866
|
+
exitPivotClause?: (ctx: PivotClauseContext) => void;
|
|
867
|
+
enterPivotColumn?: (ctx: PivotColumnContext) => void;
|
|
868
|
+
exitPivotColumn?: (ctx: PivotColumnContext) => void;
|
|
869
|
+
enterPivotValue?: (ctx: PivotValueContext) => void;
|
|
870
|
+
exitPivotValue?: (ctx: PivotValueContext) => void;
|
|
871
|
+
enterUnpivotClause?: (ctx: UnpivotClauseContext) => void;
|
|
872
|
+
exitUnpivotClause?: (ctx: UnpivotClauseContext) => void;
|
|
873
|
+
enterUnpivotNullClause?: (ctx: UnpivotNullClauseContext) => void;
|
|
874
|
+
exitUnpivotNullClause?: (ctx: UnpivotNullClauseContext) => void;
|
|
875
|
+
enterUnpivotOperator?: (ctx: UnpivotOperatorContext) => void;
|
|
876
|
+
exitUnpivotOperator?: (ctx: UnpivotOperatorContext) => void;
|
|
877
|
+
enterUnpivotSingleValueColumnClause?: (ctx: UnpivotSingleValueColumnClauseContext) => void;
|
|
878
|
+
exitUnpivotSingleValueColumnClause?: (ctx: UnpivotSingleValueColumnClauseContext) => void;
|
|
879
|
+
enterUnpivotMultiValueColumnClause?: (ctx: UnpivotMultiValueColumnClauseContext) => void;
|
|
880
|
+
exitUnpivotMultiValueColumnClause?: (ctx: UnpivotMultiValueColumnClauseContext) => void;
|
|
881
|
+
enterUnpivotColumnSet?: (ctx: UnpivotColumnSetContext) => void;
|
|
882
|
+
exitUnpivotColumnSet?: (ctx: UnpivotColumnSetContext) => void;
|
|
883
|
+
enterUnpivotValueColumn?: (ctx: UnpivotValueColumnContext) => void;
|
|
884
|
+
exitUnpivotValueColumn?: (ctx: UnpivotValueColumnContext) => void;
|
|
885
|
+
enterUnpivotNameColumn?: (ctx: UnpivotNameColumnContext) => void;
|
|
886
|
+
exitUnpivotNameColumn?: (ctx: UnpivotNameColumnContext) => void;
|
|
887
|
+
enterUnpivotColumnAndAlias?: (ctx: UnpivotColumnAndAliasContext) => void;
|
|
888
|
+
exitUnpivotColumnAndAlias?: (ctx: UnpivotColumnAndAliasContext) => void;
|
|
889
|
+
enterUnpivotColumn?: (ctx: UnpivotColumnContext) => void;
|
|
890
|
+
exitUnpivotColumn?: (ctx: UnpivotColumnContext) => void;
|
|
891
|
+
enterUnpivotAlias?: (ctx: UnpivotAliasContext) => void;
|
|
892
|
+
exitUnpivotAlias?: (ctx: UnpivotAliasContext) => void;
|
|
893
|
+
enterLateralView?: (ctx: LateralViewContext) => void;
|
|
894
|
+
exitLateralView?: (ctx: LateralViewContext) => void;
|
|
895
|
+
enterSetQuantifier?: (ctx: SetQuantifierContext) => void;
|
|
896
|
+
exitSetQuantifier?: (ctx: SetQuantifierContext) => void;
|
|
897
|
+
enterRelation?: (ctx: RelationContext) => void;
|
|
898
|
+
exitRelation?: (ctx: RelationContext) => void;
|
|
899
|
+
enterRelationExtension?: (ctx: RelationExtensionContext) => void;
|
|
900
|
+
exitRelationExtension?: (ctx: RelationExtensionContext) => void;
|
|
901
|
+
enterJoinRelation?: (ctx: JoinRelationContext) => void;
|
|
902
|
+
exitJoinRelation?: (ctx: JoinRelationContext) => void;
|
|
903
|
+
enterJoinType?: (ctx: JoinTypeContext) => void;
|
|
904
|
+
exitJoinType?: (ctx: JoinTypeContext) => void;
|
|
905
|
+
enterJoinCriteria?: (ctx: JoinCriteriaContext) => void;
|
|
906
|
+
exitJoinCriteria?: (ctx: JoinCriteriaContext) => void;
|
|
907
|
+
enterSample?: (ctx: SampleContext) => void;
|
|
908
|
+
exitSample?: (ctx: SampleContext) => void;
|
|
909
|
+
enterSampleMethod?: (ctx: SampleMethodContext) => void;
|
|
910
|
+
exitSampleMethod?: (ctx: SampleMethodContext) => void;
|
|
911
|
+
enterIdentifierList?: (ctx: IdentifierListContext) => void;
|
|
912
|
+
exitIdentifierList?: (ctx: IdentifierListContext) => void;
|
|
913
|
+
enterIdentifierSeq?: (ctx: IdentifierSeqContext) => void;
|
|
914
|
+
exitIdentifierSeq?: (ctx: IdentifierSeqContext) => void;
|
|
915
|
+
enterOrderedIdentifierList?: (ctx: OrderedIdentifierListContext) => void;
|
|
916
|
+
exitOrderedIdentifierList?: (ctx: OrderedIdentifierListContext) => void;
|
|
917
|
+
enterOrderedIdentifier?: (ctx: OrderedIdentifierContext) => void;
|
|
918
|
+
exitOrderedIdentifier?: (ctx: OrderedIdentifierContext) => void;
|
|
919
|
+
enterIdentifierCommentList?: (ctx: IdentifierCommentListContext) => void;
|
|
920
|
+
exitIdentifierCommentList?: (ctx: IdentifierCommentListContext) => void;
|
|
921
|
+
enterIdentifierComment?: (ctx: IdentifierCommentContext) => void;
|
|
922
|
+
exitIdentifierComment?: (ctx: IdentifierCommentContext) => void;
|
|
923
|
+
enterRelationPrimary?: (ctx: RelationPrimaryContext) => void;
|
|
924
|
+
exitRelationPrimary?: (ctx: RelationPrimaryContext) => void;
|
|
925
|
+
enterInlineTable?: (ctx: InlineTableContext) => void;
|
|
926
|
+
exitInlineTable?: (ctx: InlineTableContext) => void;
|
|
927
|
+
enterFunctionTableSubqueryArgument?: (ctx: FunctionTableSubqueryArgumentContext) => void;
|
|
928
|
+
exitFunctionTableSubqueryArgument?: (ctx: FunctionTableSubqueryArgumentContext) => void;
|
|
929
|
+
enterTableArgumentPartitioning?: (ctx: TableArgumentPartitioningContext) => void;
|
|
930
|
+
exitTableArgumentPartitioning?: (ctx: TableArgumentPartitioningContext) => void;
|
|
931
|
+
enterFunctionTableNamedArgumentExpression?: (ctx: FunctionTableNamedArgumentExpressionContext) => void;
|
|
932
|
+
exitFunctionTableNamedArgumentExpression?: (ctx: FunctionTableNamedArgumentExpressionContext) => void;
|
|
933
|
+
enterFunctionTableReferenceArgument?: (ctx: FunctionTableReferenceArgumentContext) => void;
|
|
934
|
+
exitFunctionTableReferenceArgument?: (ctx: FunctionTableReferenceArgumentContext) => void;
|
|
935
|
+
enterFunctionTableArgument?: (ctx: FunctionTableArgumentContext) => void;
|
|
936
|
+
exitFunctionTableArgument?: (ctx: FunctionTableArgumentContext) => void;
|
|
937
|
+
enterFunctionTable?: (ctx: FunctionTableContext) => void;
|
|
938
|
+
exitFunctionTable?: (ctx: FunctionTableContext) => void;
|
|
939
|
+
enterTableAlias?: (ctx: TableAliasContext) => void;
|
|
940
|
+
exitTableAlias?: (ctx: TableAliasContext) => void;
|
|
941
|
+
enterRowFormat?: (ctx: RowFormatContext) => void;
|
|
942
|
+
exitRowFormat?: (ctx: RowFormatContext) => void;
|
|
943
|
+
enterMultipartIdentifierList?: (ctx: MultipartIdentifierListContext) => void;
|
|
944
|
+
exitMultipartIdentifierList?: (ctx: MultipartIdentifierListContext) => void;
|
|
945
|
+
enterMultipartIdentifier?: (ctx: MultipartIdentifierContext) => void;
|
|
946
|
+
exitMultipartIdentifier?: (ctx: MultipartIdentifierContext) => void;
|
|
947
|
+
enterMultipartIdentifierPropertyList?: (ctx: MultipartIdentifierPropertyListContext) => void;
|
|
948
|
+
exitMultipartIdentifierPropertyList?: (ctx: MultipartIdentifierPropertyListContext) => void;
|
|
949
|
+
enterMultipartIdentifierProperty?: (ctx: MultipartIdentifierPropertyContext) => void;
|
|
950
|
+
exitMultipartIdentifierProperty?: (ctx: MultipartIdentifierPropertyContext) => void;
|
|
951
|
+
enterTableIdentifier?: (ctx: TableIdentifierContext) => void;
|
|
952
|
+
exitTableIdentifier?: (ctx: TableIdentifierContext) => void;
|
|
953
|
+
enterFunctionIdentifier?: (ctx: FunctionIdentifierContext) => void;
|
|
954
|
+
exitFunctionIdentifier?: (ctx: FunctionIdentifierContext) => void;
|
|
955
|
+
enterNamedExpression?: (ctx: NamedExpressionContext) => void;
|
|
956
|
+
exitNamedExpression?: (ctx: NamedExpressionContext) => void;
|
|
957
|
+
enterNamedExpressionSeq?: (ctx: NamedExpressionSeqContext) => void;
|
|
958
|
+
exitNamedExpressionSeq?: (ctx: NamedExpressionSeqContext) => void;
|
|
959
|
+
enterPartitionFieldList?: (ctx: PartitionFieldListContext) => void;
|
|
960
|
+
exitPartitionFieldList?: (ctx: PartitionFieldListContext) => void;
|
|
961
|
+
enterPartitionField?: (ctx: PartitionFieldContext) => void;
|
|
962
|
+
exitPartitionField?: (ctx: PartitionFieldContext) => void;
|
|
963
|
+
enterTransform?: (ctx: TransformContext) => void;
|
|
964
|
+
exitTransform?: (ctx: TransformContext) => void;
|
|
965
|
+
enterTransformArgument?: (ctx: TransformArgumentContext) => void;
|
|
966
|
+
exitTransformArgument?: (ctx: TransformArgumentContext) => void;
|
|
967
|
+
enterExpression?: (ctx: ExpressionContext) => void;
|
|
968
|
+
exitExpression?: (ctx: ExpressionContext) => void;
|
|
969
|
+
enterNamedArgumentExpression?: (ctx: NamedArgumentExpressionContext) => void;
|
|
970
|
+
exitNamedArgumentExpression?: (ctx: NamedArgumentExpressionContext) => void;
|
|
971
|
+
enterFunctionArgument?: (ctx: FunctionArgumentContext) => void;
|
|
972
|
+
exitFunctionArgument?: (ctx: FunctionArgumentContext) => void;
|
|
973
|
+
enterExpressionSeq?: (ctx: ExpressionSeqContext) => void;
|
|
974
|
+
exitExpressionSeq?: (ctx: ExpressionSeqContext) => void;
|
|
975
|
+
enterBooleanExpression?: (ctx: BooleanExpressionContext) => void;
|
|
976
|
+
exitBooleanExpression?: (ctx: BooleanExpressionContext) => void;
|
|
977
|
+
enterPredicate?: (ctx: PredicateContext) => void;
|
|
978
|
+
exitPredicate?: (ctx: PredicateContext) => void;
|
|
979
|
+
enterValueExpression?: (ctx: ValueExpressionContext) => void;
|
|
980
|
+
exitValueExpression?: (ctx: ValueExpressionContext) => void;
|
|
981
|
+
enterDatetimeUnit?: (ctx: DatetimeUnitContext) => void;
|
|
982
|
+
exitDatetimeUnit?: (ctx: DatetimeUnitContext) => void;
|
|
983
|
+
enterPrimaryExpression?: (ctx: PrimaryExpressionContext) => void;
|
|
984
|
+
exitPrimaryExpression?: (ctx: PrimaryExpressionContext) => void;
|
|
985
|
+
enterLiteralType?: (ctx: LiteralTypeContext) => void;
|
|
986
|
+
exitLiteralType?: (ctx: LiteralTypeContext) => void;
|
|
987
|
+
enterConstant?: (ctx: ConstantContext) => void;
|
|
988
|
+
exitConstant?: (ctx: ConstantContext) => void;
|
|
989
|
+
enterComparisonOperator?: (ctx: ComparisonOperatorContext) => void;
|
|
990
|
+
exitComparisonOperator?: (ctx: ComparisonOperatorContext) => void;
|
|
991
|
+
enterArithmeticOperator?: (ctx: ArithmeticOperatorContext) => void;
|
|
992
|
+
exitArithmeticOperator?: (ctx: ArithmeticOperatorContext) => void;
|
|
993
|
+
enterPredicateOperator?: (ctx: PredicateOperatorContext) => void;
|
|
994
|
+
exitPredicateOperator?: (ctx: PredicateOperatorContext) => void;
|
|
995
|
+
enterBooleanValue?: (ctx: BooleanValueContext) => void;
|
|
996
|
+
exitBooleanValue?: (ctx: BooleanValueContext) => void;
|
|
997
|
+
enterInterval?: (ctx: IntervalContext) => void;
|
|
998
|
+
exitInterval?: (ctx: IntervalContext) => void;
|
|
999
|
+
enterErrorCapturingMultiUnitsInterval?: (ctx: ErrorCapturingMultiUnitsIntervalContext) => void;
|
|
1000
|
+
exitErrorCapturingMultiUnitsInterval?: (ctx: ErrorCapturingMultiUnitsIntervalContext) => void;
|
|
1001
|
+
enterMultiUnitsInterval?: (ctx: MultiUnitsIntervalContext) => void;
|
|
1002
|
+
exitMultiUnitsInterval?: (ctx: MultiUnitsIntervalContext) => void;
|
|
1003
|
+
enterErrorCapturingUnitToUnitInterval?: (ctx: ErrorCapturingUnitToUnitIntervalContext) => void;
|
|
1004
|
+
exitErrorCapturingUnitToUnitInterval?: (ctx: ErrorCapturingUnitToUnitIntervalContext) => void;
|
|
1005
|
+
enterUnitToUnitInterval?: (ctx: UnitToUnitIntervalContext) => void;
|
|
1006
|
+
exitUnitToUnitInterval?: (ctx: UnitToUnitIntervalContext) => void;
|
|
1007
|
+
enterIntervalValue?: (ctx: IntervalValueContext) => void;
|
|
1008
|
+
exitIntervalValue?: (ctx: IntervalValueContext) => void;
|
|
1009
|
+
enterUnitInMultiUnits?: (ctx: UnitInMultiUnitsContext) => void;
|
|
1010
|
+
exitUnitInMultiUnits?: (ctx: UnitInMultiUnitsContext) => void;
|
|
1011
|
+
enterUnitInUnitToUnit?: (ctx: UnitInUnitToUnitContext) => void;
|
|
1012
|
+
exitUnitInUnitToUnit?: (ctx: UnitInUnitToUnitContext) => void;
|
|
1013
|
+
enterColPosition?: (ctx: ColPositionContext) => void;
|
|
1014
|
+
exitColPosition?: (ctx: ColPositionContext) => void;
|
|
1015
|
+
enterType?: (ctx: TypeContext) => void;
|
|
1016
|
+
exitType?: (ctx: TypeContext) => void;
|
|
1017
|
+
enterDataType?: (ctx: DataTypeContext) => void;
|
|
1018
|
+
exitDataType?: (ctx: DataTypeContext) => void;
|
|
1019
|
+
enterQualifiedColTypeWithPositionList?: (ctx: QualifiedColTypeWithPositionListContext) => void;
|
|
1020
|
+
exitQualifiedColTypeWithPositionList?: (ctx: QualifiedColTypeWithPositionListContext) => void;
|
|
1021
|
+
enterQualifiedColTypeWithPosition?: (ctx: QualifiedColTypeWithPositionContext) => void;
|
|
1022
|
+
exitQualifiedColTypeWithPosition?: (ctx: QualifiedColTypeWithPositionContext) => void;
|
|
1023
|
+
enterColDefinitionDescriptorWithPosition?: (ctx: ColDefinitionDescriptorWithPositionContext) => void;
|
|
1024
|
+
exitColDefinitionDescriptorWithPosition?: (ctx: ColDefinitionDescriptorWithPositionContext) => void;
|
|
1025
|
+
enterDefaultExpression?: (ctx: DefaultExpressionContext) => void;
|
|
1026
|
+
exitDefaultExpression?: (ctx: DefaultExpressionContext) => void;
|
|
1027
|
+
enterColTypeList?: (ctx: ColTypeListContext) => void;
|
|
1028
|
+
exitColTypeList?: (ctx: ColTypeListContext) => void;
|
|
1029
|
+
enterColType?: (ctx: ColTypeContext) => void;
|
|
1030
|
+
exitColType?: (ctx: ColTypeContext) => void;
|
|
1031
|
+
enterCreateOrReplaceTableColTypeList?: (ctx: CreateOrReplaceTableColTypeListContext) => void;
|
|
1032
|
+
exitCreateOrReplaceTableColTypeList?: (ctx: CreateOrReplaceTableColTypeListContext) => void;
|
|
1033
|
+
enterCreateOrReplaceTableColType?: (ctx: CreateOrReplaceTableColTypeContext) => void;
|
|
1034
|
+
exitCreateOrReplaceTableColType?: (ctx: CreateOrReplaceTableColTypeContext) => void;
|
|
1035
|
+
enterColDefinitionOption?: (ctx: ColDefinitionOptionContext) => void;
|
|
1036
|
+
exitColDefinitionOption?: (ctx: ColDefinitionOptionContext) => void;
|
|
1037
|
+
enterGenerationExpression?: (ctx: GenerationExpressionContext) => void;
|
|
1038
|
+
exitGenerationExpression?: (ctx: GenerationExpressionContext) => void;
|
|
1039
|
+
enterComplexColTypeList?: (ctx: ComplexColTypeListContext) => void;
|
|
1040
|
+
exitComplexColTypeList?: (ctx: ComplexColTypeListContext) => void;
|
|
1041
|
+
enterComplexColType?: (ctx: ComplexColTypeContext) => void;
|
|
1042
|
+
exitComplexColType?: (ctx: ComplexColTypeContext) => void;
|
|
1043
|
+
enterWhenClause?: (ctx: WhenClauseContext) => void;
|
|
1044
|
+
exitWhenClause?: (ctx: WhenClauseContext) => void;
|
|
1045
|
+
enterWindowClause?: (ctx: WindowClauseContext) => void;
|
|
1046
|
+
exitWindowClause?: (ctx: WindowClauseContext) => void;
|
|
1047
|
+
enterNamedWindow?: (ctx: NamedWindowContext) => void;
|
|
1048
|
+
exitNamedWindow?: (ctx: NamedWindowContext) => void;
|
|
1049
|
+
enterWindowSpec?: (ctx: WindowSpecContext) => void;
|
|
1050
|
+
exitWindowSpec?: (ctx: WindowSpecContext) => void;
|
|
1051
|
+
enterWindowFrame?: (ctx: WindowFrameContext) => void;
|
|
1052
|
+
exitWindowFrame?: (ctx: WindowFrameContext) => void;
|
|
1053
|
+
enterFrameBound?: (ctx: FrameBoundContext) => void;
|
|
1054
|
+
exitFrameBound?: (ctx: FrameBoundContext) => void;
|
|
1055
|
+
enterQualifiedNameList?: (ctx: QualifiedNameListContext) => void;
|
|
1056
|
+
exitQualifiedNameList?: (ctx: QualifiedNameListContext) => void;
|
|
1057
|
+
enterFunctionName?: (ctx: FunctionNameContext) => void;
|
|
1058
|
+
exitFunctionName?: (ctx: FunctionNameContext) => void;
|
|
1059
|
+
enterQualifiedName?: (ctx: QualifiedNameContext) => void;
|
|
1060
|
+
exitQualifiedName?: (ctx: QualifiedNameContext) => void;
|
|
1061
|
+
enterErrorCapturingIdentifier?: (ctx: ErrorCapturingIdentifierContext) => void;
|
|
1062
|
+
exitErrorCapturingIdentifier?: (ctx: ErrorCapturingIdentifierContext) => void;
|
|
1063
|
+
enterErrorCapturingIdentifierExtra?: (ctx: ErrorCapturingIdentifierExtraContext) => void;
|
|
1064
|
+
exitErrorCapturingIdentifierExtra?: (ctx: ErrorCapturingIdentifierExtraContext) => void;
|
|
1065
|
+
enterIdentifier?: (ctx: IdentifierContext) => void;
|
|
1066
|
+
exitIdentifier?: (ctx: IdentifierContext) => void;
|
|
1067
|
+
enterStrictIdentifier?: (ctx: StrictIdentifierContext) => void;
|
|
1068
|
+
exitStrictIdentifier?: (ctx: StrictIdentifierContext) => void;
|
|
1069
|
+
enterQuotedIdentifier?: (ctx: QuotedIdentifierContext) => void;
|
|
1070
|
+
exitQuotedIdentifier?: (ctx: QuotedIdentifierContext) => void;
|
|
1071
|
+
enterBackQuotedIdentifier?: (ctx: BackQuotedIdentifierContext) => void;
|
|
1072
|
+
exitBackQuotedIdentifier?: (ctx: BackQuotedIdentifierContext) => void;
|
|
1073
|
+
enterNumber?: (ctx: NumberContext) => void;
|
|
1074
|
+
exitNumber?: (ctx: NumberContext) => void;
|
|
1075
|
+
enterAlterColumnAction?: (ctx: AlterColumnActionContext) => void;
|
|
1076
|
+
exitAlterColumnAction?: (ctx: AlterColumnActionContext) => void;
|
|
1077
|
+
enterStringLit?: (ctx: StringLitContext) => void;
|
|
1078
|
+
exitStringLit?: (ctx: StringLitContext) => void;
|
|
1079
|
+
enterComment?: (ctx: CommentContext) => void;
|
|
1080
|
+
exitComment?: (ctx: CommentContext) => void;
|
|
1081
|
+
enterVersion?: (ctx: VersionContext) => void;
|
|
1082
|
+
exitVersion?: (ctx: VersionContext) => void;
|
|
1083
|
+
enterAnsiNonReserved?: (ctx: AnsiNonReservedContext) => void;
|
|
1084
|
+
exitAnsiNonReserved?: (ctx: AnsiNonReservedContext) => void;
|
|
1085
|
+
enterStrictNonReserved?: (ctx: StrictNonReservedContext) => void;
|
|
1086
|
+
exitStrictNonReserved?: (ctx: StrictNonReservedContext) => void;
|
|
1087
|
+
enterNonReserved?: (ctx: NonReservedContext) => void;
|
|
1088
|
+
exitNonReserved?: (ctx: NonReservedContext) => void;
|
|
1089
|
+
}
|