@jacobknightley/fabric-format 0.0.1
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 +196 -0
- package/dist/cell-formatter.d.ts +75 -0
- package/dist/cell-formatter.js +144 -0
- package/dist/cli.d.ts +2 -0
- package/dist/cli.js +435 -0
- package/dist/formatters/index.d.ts +19 -0
- package/dist/formatters/index.js +76 -0
- package/dist/formatters/python/config.d.ts +33 -0
- package/dist/formatters/python/config.js +29 -0
- package/dist/formatters/python/index.d.ts +7 -0
- package/dist/formatters/python/index.js +13 -0
- package/dist/formatters/python/python-formatter.d.ts +51 -0
- package/dist/formatters/python/python-formatter.js +180 -0
- package/dist/formatters/sparksql/constants.d.ts +16 -0
- package/dist/formatters/sparksql/constants.js +16 -0
- package/dist/formatters/sparksql/fmt-detector.d.ts +65 -0
- package/dist/formatters/sparksql/fmt-detector.js +84 -0
- package/dist/formatters/sparksql/formatter.d.ts +24 -0
- package/dist/formatters/sparksql/formatter.js +1276 -0
- package/dist/formatters/sparksql/formatting-context.d.ts +154 -0
- package/dist/formatters/sparksql/formatting-context.js +363 -0
- package/dist/formatters/sparksql/generated/SqlBaseLexer.d.ts +529 -0
- package/dist/formatters/sparksql/generated/SqlBaseLexer.js +2609 -0
- package/dist/formatters/sparksql/generated/SqlBaseParser.d.ts +8195 -0
- package/dist/formatters/sparksql/generated/SqlBaseParser.js +48793 -0
- package/dist/formatters/sparksql/generated/SqlBaseParserListener.d.ts +910 -0
- package/dist/formatters/sparksql/generated/SqlBaseParserListener.js +2730 -0
- package/dist/formatters/sparksql/generated/SqlBaseParserVisitor.d.ts +456 -0
- package/dist/formatters/sparksql/generated/SqlBaseParserVisitor.js +1822 -0
- package/dist/formatters/sparksql/generated/builtinFunctions.d.ts +8 -0
- package/dist/formatters/sparksql/generated/builtinFunctions.js +510 -0
- package/dist/formatters/sparksql/index.d.ts +11 -0
- package/dist/formatters/sparksql/index.js +22 -0
- package/dist/formatters/sparksql/output-builder.d.ts +89 -0
- package/dist/formatters/sparksql/output-builder.js +191 -0
- package/dist/formatters/sparksql/parse-tree-analyzer.d.ts +264 -0
- package/dist/formatters/sparksql/parse-tree-analyzer.js +1956 -0
- package/dist/formatters/sparksql/sql-formatter.d.ts +25 -0
- package/dist/formatters/sparksql/sql-formatter.js +56 -0
- package/dist/formatters/sparksql/token-utils.d.ts +68 -0
- package/dist/formatters/sparksql/token-utils.js +155 -0
- package/dist/formatters/sparksql/types.d.ts +264 -0
- package/dist/formatters/sparksql/types.js +7 -0
- package/dist/formatters/types.d.ts +57 -0
- package/dist/formatters/types.js +7 -0
- package/dist/index.d.ts +18 -0
- package/dist/index.js +41 -0
- package/dist/notebook-formatter.d.ts +107 -0
- package/dist/notebook-formatter.js +424 -0
- package/package.json +63 -0
|
@@ -0,0 +1,910 @@
|
|
|
1
|
+
export default class SqlBaseParserListener {
|
|
2
|
+
enterCompoundOrSingleStatement(ctx: any): void;
|
|
3
|
+
exitCompoundOrSingleStatement(ctx: any): void;
|
|
4
|
+
enterSingleCompoundStatement(ctx: any): void;
|
|
5
|
+
exitSingleCompoundStatement(ctx: any): void;
|
|
6
|
+
enterBeginEndCompoundBlock(ctx: any): void;
|
|
7
|
+
exitBeginEndCompoundBlock(ctx: any): void;
|
|
8
|
+
enterCompoundBody(ctx: any): void;
|
|
9
|
+
exitCompoundBody(ctx: any): void;
|
|
10
|
+
enterCompoundStatement(ctx: any): void;
|
|
11
|
+
exitCompoundStatement(ctx: any): void;
|
|
12
|
+
enterSetVariableInsideSqlScript(ctx: any): void;
|
|
13
|
+
exitSetVariableInsideSqlScript(ctx: any): void;
|
|
14
|
+
enterSqlStateValue(ctx: any): void;
|
|
15
|
+
exitSqlStateValue(ctx: any): void;
|
|
16
|
+
enterDeclareConditionStatement(ctx: any): void;
|
|
17
|
+
exitDeclareConditionStatement(ctx: any): void;
|
|
18
|
+
enterConditionValue(ctx: any): void;
|
|
19
|
+
exitConditionValue(ctx: any): void;
|
|
20
|
+
enterConditionValues(ctx: any): void;
|
|
21
|
+
exitConditionValues(ctx: any): void;
|
|
22
|
+
enterDeclareHandlerStatement(ctx: any): void;
|
|
23
|
+
exitDeclareHandlerStatement(ctx: any): void;
|
|
24
|
+
enterWhileStatement(ctx: any): void;
|
|
25
|
+
exitWhileStatement(ctx: any): void;
|
|
26
|
+
enterIfElseStatement(ctx: any): void;
|
|
27
|
+
exitIfElseStatement(ctx: any): void;
|
|
28
|
+
enterRepeatStatement(ctx: any): void;
|
|
29
|
+
exitRepeatStatement(ctx: any): void;
|
|
30
|
+
enterLeaveStatement(ctx: any): void;
|
|
31
|
+
exitLeaveStatement(ctx: any): void;
|
|
32
|
+
enterIterateStatement(ctx: any): void;
|
|
33
|
+
exitIterateStatement(ctx: any): void;
|
|
34
|
+
enterSearchedCaseStatement(ctx: any): void;
|
|
35
|
+
exitSearchedCaseStatement(ctx: any): void;
|
|
36
|
+
enterSimpleCaseStatement(ctx: any): void;
|
|
37
|
+
exitSimpleCaseStatement(ctx: any): void;
|
|
38
|
+
enterLoopStatement(ctx: any): void;
|
|
39
|
+
exitLoopStatement(ctx: any): void;
|
|
40
|
+
enterForStatement(ctx: any): void;
|
|
41
|
+
exitForStatement(ctx: any): void;
|
|
42
|
+
enterSingleStatement(ctx: any): void;
|
|
43
|
+
exitSingleStatement(ctx: any): void;
|
|
44
|
+
enterBeginLabel(ctx: any): void;
|
|
45
|
+
exitBeginLabel(ctx: any): void;
|
|
46
|
+
enterEndLabel(ctx: any): void;
|
|
47
|
+
exitEndLabel(ctx: any): void;
|
|
48
|
+
enterSingleExpression(ctx: any): void;
|
|
49
|
+
exitSingleExpression(ctx: any): void;
|
|
50
|
+
enterSingleTableIdentifier(ctx: any): void;
|
|
51
|
+
exitSingleTableIdentifier(ctx: any): void;
|
|
52
|
+
enterSingleMultipartIdentifier(ctx: any): void;
|
|
53
|
+
exitSingleMultipartIdentifier(ctx: any): void;
|
|
54
|
+
enterSingleFunctionIdentifier(ctx: any): void;
|
|
55
|
+
exitSingleFunctionIdentifier(ctx: any): void;
|
|
56
|
+
enterSingleDataType(ctx: any): void;
|
|
57
|
+
exitSingleDataType(ctx: any): void;
|
|
58
|
+
enterSingleTableSchema(ctx: any): void;
|
|
59
|
+
exitSingleTableSchema(ctx: any): void;
|
|
60
|
+
enterSingleRoutineParamList(ctx: any): void;
|
|
61
|
+
exitSingleRoutineParamList(ctx: any): void;
|
|
62
|
+
enterStatementDefault(ctx: any): void;
|
|
63
|
+
exitStatementDefault(ctx: any): void;
|
|
64
|
+
enterVisitExecuteImmediate(ctx: any): void;
|
|
65
|
+
exitVisitExecuteImmediate(ctx: any): void;
|
|
66
|
+
enterDmlStatement(ctx: any): void;
|
|
67
|
+
exitDmlStatement(ctx: any): void;
|
|
68
|
+
enterUse(ctx: any): void;
|
|
69
|
+
exitUse(ctx: any): void;
|
|
70
|
+
enterUseNamespace(ctx: any): void;
|
|
71
|
+
exitUseNamespace(ctx: any): void;
|
|
72
|
+
enterSetCatalog(ctx: any): void;
|
|
73
|
+
exitSetCatalog(ctx: any): void;
|
|
74
|
+
enterCreateNamespace(ctx: any): void;
|
|
75
|
+
exitCreateNamespace(ctx: any): void;
|
|
76
|
+
enterSetNamespaceProperties(ctx: any): void;
|
|
77
|
+
exitSetNamespaceProperties(ctx: any): void;
|
|
78
|
+
enterUnsetNamespaceProperties(ctx: any): void;
|
|
79
|
+
exitUnsetNamespaceProperties(ctx: any): void;
|
|
80
|
+
enterSetNamespaceCollation(ctx: any): void;
|
|
81
|
+
exitSetNamespaceCollation(ctx: any): void;
|
|
82
|
+
enterSetNamespaceLocation(ctx: any): void;
|
|
83
|
+
exitSetNamespaceLocation(ctx: any): void;
|
|
84
|
+
enterDropNamespace(ctx: any): void;
|
|
85
|
+
exitDropNamespace(ctx: any): void;
|
|
86
|
+
enterShowNamespaces(ctx: any): void;
|
|
87
|
+
exitShowNamespaces(ctx: any): void;
|
|
88
|
+
enterCreateTable(ctx: any): void;
|
|
89
|
+
exitCreateTable(ctx: any): void;
|
|
90
|
+
enterCreateTableLike(ctx: any): void;
|
|
91
|
+
exitCreateTableLike(ctx: any): void;
|
|
92
|
+
enterReplaceTable(ctx: any): void;
|
|
93
|
+
exitReplaceTable(ctx: any): void;
|
|
94
|
+
enterAnalyze(ctx: any): void;
|
|
95
|
+
exitAnalyze(ctx: any): void;
|
|
96
|
+
enterAnalyzeTables(ctx: any): void;
|
|
97
|
+
exitAnalyzeTables(ctx: any): void;
|
|
98
|
+
enterAddTableColumns(ctx: any): void;
|
|
99
|
+
exitAddTableColumns(ctx: any): void;
|
|
100
|
+
enterRenameTableColumn(ctx: any): void;
|
|
101
|
+
exitRenameTableColumn(ctx: any): void;
|
|
102
|
+
enterDropTableColumns(ctx: any): void;
|
|
103
|
+
exitDropTableColumns(ctx: any): void;
|
|
104
|
+
enterRenameTable(ctx: any): void;
|
|
105
|
+
exitRenameTable(ctx: any): void;
|
|
106
|
+
enterSetTableProperties(ctx: any): void;
|
|
107
|
+
exitSetTableProperties(ctx: any): void;
|
|
108
|
+
enterUnsetTableProperties(ctx: any): void;
|
|
109
|
+
exitUnsetTableProperties(ctx: any): void;
|
|
110
|
+
enterAlterTableAlterColumn(ctx: any): void;
|
|
111
|
+
exitAlterTableAlterColumn(ctx: any): void;
|
|
112
|
+
enterHiveChangeColumn(ctx: any): void;
|
|
113
|
+
exitHiveChangeColumn(ctx: any): void;
|
|
114
|
+
enterHiveReplaceColumns(ctx: any): void;
|
|
115
|
+
exitHiveReplaceColumns(ctx: any): void;
|
|
116
|
+
enterSetTableSerDe(ctx: any): void;
|
|
117
|
+
exitSetTableSerDe(ctx: any): void;
|
|
118
|
+
enterAddTablePartition(ctx: any): void;
|
|
119
|
+
exitAddTablePartition(ctx: any): void;
|
|
120
|
+
enterRenameTablePartition(ctx: any): void;
|
|
121
|
+
exitRenameTablePartition(ctx: any): void;
|
|
122
|
+
enterDropTablePartitions(ctx: any): void;
|
|
123
|
+
exitDropTablePartitions(ctx: any): void;
|
|
124
|
+
enterSetTableLocation(ctx: any): void;
|
|
125
|
+
exitSetTableLocation(ctx: any): void;
|
|
126
|
+
enterRecoverPartitions(ctx: any): void;
|
|
127
|
+
exitRecoverPartitions(ctx: any): void;
|
|
128
|
+
enterAlterClusterBy(ctx: any): void;
|
|
129
|
+
exitAlterClusterBy(ctx: any): void;
|
|
130
|
+
enterAlterTableCollation(ctx: any): void;
|
|
131
|
+
exitAlterTableCollation(ctx: any): void;
|
|
132
|
+
enterAddTableConstraint(ctx: any): void;
|
|
133
|
+
exitAddTableConstraint(ctx: any): void;
|
|
134
|
+
enterDropTableConstraint(ctx: any): void;
|
|
135
|
+
exitDropTableConstraint(ctx: any): void;
|
|
136
|
+
enterDropTable(ctx: any): void;
|
|
137
|
+
exitDropTable(ctx: any): void;
|
|
138
|
+
enterDropView(ctx: any): void;
|
|
139
|
+
exitDropView(ctx: any): void;
|
|
140
|
+
enterCreateView(ctx: any): void;
|
|
141
|
+
exitCreateView(ctx: any): void;
|
|
142
|
+
enterCreateMetricView(ctx: any): void;
|
|
143
|
+
exitCreateMetricView(ctx: any): void;
|
|
144
|
+
enterCreateTempViewUsing(ctx: any): void;
|
|
145
|
+
exitCreateTempViewUsing(ctx: any): void;
|
|
146
|
+
enterAlterViewQuery(ctx: any): void;
|
|
147
|
+
exitAlterViewQuery(ctx: any): void;
|
|
148
|
+
enterAlterViewSchemaBinding(ctx: any): void;
|
|
149
|
+
exitAlterViewSchemaBinding(ctx: any): void;
|
|
150
|
+
enterCreateFunction(ctx: any): void;
|
|
151
|
+
exitCreateFunction(ctx: any): void;
|
|
152
|
+
enterCreateUserDefinedFunction(ctx: any): void;
|
|
153
|
+
exitCreateUserDefinedFunction(ctx: any): void;
|
|
154
|
+
enterDropFunction(ctx: any): void;
|
|
155
|
+
exitDropFunction(ctx: any): void;
|
|
156
|
+
enterCreateVariable(ctx: any): void;
|
|
157
|
+
exitCreateVariable(ctx: any): void;
|
|
158
|
+
enterDropVariable(ctx: any): void;
|
|
159
|
+
exitDropVariable(ctx: any): void;
|
|
160
|
+
enterExplain(ctx: any): void;
|
|
161
|
+
exitExplain(ctx: any): void;
|
|
162
|
+
enterShowTables(ctx: any): void;
|
|
163
|
+
exitShowTables(ctx: any): void;
|
|
164
|
+
enterShowTableExtended(ctx: any): void;
|
|
165
|
+
exitShowTableExtended(ctx: any): void;
|
|
166
|
+
enterShowTblProperties(ctx: any): void;
|
|
167
|
+
exitShowTblProperties(ctx: any): void;
|
|
168
|
+
enterShowColumns(ctx: any): void;
|
|
169
|
+
exitShowColumns(ctx: any): void;
|
|
170
|
+
enterShowViews(ctx: any): void;
|
|
171
|
+
exitShowViews(ctx: any): void;
|
|
172
|
+
enterShowPartitions(ctx: any): void;
|
|
173
|
+
exitShowPartitions(ctx: any): void;
|
|
174
|
+
enterShowFunctions(ctx: any): void;
|
|
175
|
+
exitShowFunctions(ctx: any): void;
|
|
176
|
+
enterShowProcedures(ctx: any): void;
|
|
177
|
+
exitShowProcedures(ctx: any): void;
|
|
178
|
+
enterShowCreateTable(ctx: any): void;
|
|
179
|
+
exitShowCreateTable(ctx: any): void;
|
|
180
|
+
enterShowCurrentNamespace(ctx: any): void;
|
|
181
|
+
exitShowCurrentNamespace(ctx: any): void;
|
|
182
|
+
enterShowCatalogs(ctx: any): void;
|
|
183
|
+
exitShowCatalogs(ctx: any): void;
|
|
184
|
+
enterDescribeFunction(ctx: any): void;
|
|
185
|
+
exitDescribeFunction(ctx: any): void;
|
|
186
|
+
enterDescribeProcedure(ctx: any): void;
|
|
187
|
+
exitDescribeProcedure(ctx: any): void;
|
|
188
|
+
enterDescribeNamespace(ctx: any): void;
|
|
189
|
+
exitDescribeNamespace(ctx: any): void;
|
|
190
|
+
enterDescribeRelation(ctx: any): void;
|
|
191
|
+
exitDescribeRelation(ctx: any): void;
|
|
192
|
+
enterDescribeQuery(ctx: any): void;
|
|
193
|
+
exitDescribeQuery(ctx: any): void;
|
|
194
|
+
enterCommentNamespace(ctx: any): void;
|
|
195
|
+
exitCommentNamespace(ctx: any): void;
|
|
196
|
+
enterCommentTable(ctx: any): void;
|
|
197
|
+
exitCommentTable(ctx: any): void;
|
|
198
|
+
enterRefreshTable(ctx: any): void;
|
|
199
|
+
exitRefreshTable(ctx: any): void;
|
|
200
|
+
enterRefreshFunction(ctx: any): void;
|
|
201
|
+
exitRefreshFunction(ctx: any): void;
|
|
202
|
+
enterRefreshResource(ctx: any): void;
|
|
203
|
+
exitRefreshResource(ctx: any): void;
|
|
204
|
+
enterCacheTable(ctx: any): void;
|
|
205
|
+
exitCacheTable(ctx: any): void;
|
|
206
|
+
enterUncacheTable(ctx: any): void;
|
|
207
|
+
exitUncacheTable(ctx: any): void;
|
|
208
|
+
enterClearCache(ctx: any): void;
|
|
209
|
+
exitClearCache(ctx: any): void;
|
|
210
|
+
enterLoadData(ctx: any): void;
|
|
211
|
+
exitLoadData(ctx: any): void;
|
|
212
|
+
enterTruncateTable(ctx: any): void;
|
|
213
|
+
exitTruncateTable(ctx: any): void;
|
|
214
|
+
enterRepairTable(ctx: any): void;
|
|
215
|
+
exitRepairTable(ctx: any): void;
|
|
216
|
+
enterManageResource(ctx: any): void;
|
|
217
|
+
exitManageResource(ctx: any): void;
|
|
218
|
+
enterCreateIndex(ctx: any): void;
|
|
219
|
+
exitCreateIndex(ctx: any): void;
|
|
220
|
+
enterDropIndex(ctx: any): void;
|
|
221
|
+
exitDropIndex(ctx: any): void;
|
|
222
|
+
enterCall(ctx: any): void;
|
|
223
|
+
exitCall(ctx: any): void;
|
|
224
|
+
enterFailNativeCommand(ctx: any): void;
|
|
225
|
+
exitFailNativeCommand(ctx: any): void;
|
|
226
|
+
enterCreatePipelineDataset(ctx: any): void;
|
|
227
|
+
exitCreatePipelineDataset(ctx: any): void;
|
|
228
|
+
enterCreatePipelineInsertIntoFlow(ctx: any): void;
|
|
229
|
+
exitCreatePipelineInsertIntoFlow(ctx: any): void;
|
|
230
|
+
enterMaterializedView(ctx: any): void;
|
|
231
|
+
exitMaterializedView(ctx: any): void;
|
|
232
|
+
enterStreamingTable(ctx: any): void;
|
|
233
|
+
exitStreamingTable(ctx: any): void;
|
|
234
|
+
enterCreatePipelineDatasetHeader(ctx: any): void;
|
|
235
|
+
exitCreatePipelineDatasetHeader(ctx: any): void;
|
|
236
|
+
enterStreamTableName(ctx: any): void;
|
|
237
|
+
exitStreamTableName(ctx: any): void;
|
|
238
|
+
enterFailSetRole(ctx: any): void;
|
|
239
|
+
exitFailSetRole(ctx: any): void;
|
|
240
|
+
enterSetTimeZone(ctx: any): void;
|
|
241
|
+
exitSetTimeZone(ctx: any): void;
|
|
242
|
+
enterSetVariable(ctx: any): void;
|
|
243
|
+
exitSetVariable(ctx: any): void;
|
|
244
|
+
enterSetQuotedConfiguration(ctx: any): void;
|
|
245
|
+
exitSetQuotedConfiguration(ctx: any): void;
|
|
246
|
+
enterSetConfiguration(ctx: any): void;
|
|
247
|
+
exitSetConfiguration(ctx: any): void;
|
|
248
|
+
enterResetQuotedConfiguration(ctx: any): void;
|
|
249
|
+
exitResetQuotedConfiguration(ctx: any): void;
|
|
250
|
+
enterResetConfiguration(ctx: any): void;
|
|
251
|
+
exitResetConfiguration(ctx: any): void;
|
|
252
|
+
enterExecuteImmediate(ctx: any): void;
|
|
253
|
+
exitExecuteImmediate(ctx: any): void;
|
|
254
|
+
enterExecuteImmediateUsing(ctx: any): void;
|
|
255
|
+
exitExecuteImmediateUsing(ctx: any): void;
|
|
256
|
+
enterTimezone(ctx: any): void;
|
|
257
|
+
exitTimezone(ctx: any): void;
|
|
258
|
+
enterConfigKey(ctx: any): void;
|
|
259
|
+
exitConfigKey(ctx: any): void;
|
|
260
|
+
enterConfigValue(ctx: any): void;
|
|
261
|
+
exitConfigValue(ctx: any): void;
|
|
262
|
+
enterUnsupportedHiveNativeCommands(ctx: any): void;
|
|
263
|
+
exitUnsupportedHiveNativeCommands(ctx: any): void;
|
|
264
|
+
enterCreateTableHeader(ctx: any): void;
|
|
265
|
+
exitCreateTableHeader(ctx: any): void;
|
|
266
|
+
enterReplaceTableHeader(ctx: any): void;
|
|
267
|
+
exitReplaceTableHeader(ctx: any): void;
|
|
268
|
+
enterClusterBySpec(ctx: any): void;
|
|
269
|
+
exitClusterBySpec(ctx: any): void;
|
|
270
|
+
enterBucketSpec(ctx: any): void;
|
|
271
|
+
exitBucketSpec(ctx: any): void;
|
|
272
|
+
enterSkewSpec(ctx: any): void;
|
|
273
|
+
exitSkewSpec(ctx: any): void;
|
|
274
|
+
enterLocationSpec(ctx: any): void;
|
|
275
|
+
exitLocationSpec(ctx: any): void;
|
|
276
|
+
enterSchemaBinding(ctx: any): void;
|
|
277
|
+
exitSchemaBinding(ctx: any): void;
|
|
278
|
+
enterCommentSpec(ctx: any): void;
|
|
279
|
+
exitCommentSpec(ctx: any): void;
|
|
280
|
+
enterSingleQuery(ctx: any): void;
|
|
281
|
+
exitSingleQuery(ctx: any): void;
|
|
282
|
+
enterQuery(ctx: any): void;
|
|
283
|
+
exitQuery(ctx: any): void;
|
|
284
|
+
enterInsertOverwriteTable(ctx: any): void;
|
|
285
|
+
exitInsertOverwriteTable(ctx: any): void;
|
|
286
|
+
enterInsertIntoTable(ctx: any): void;
|
|
287
|
+
exitInsertIntoTable(ctx: any): void;
|
|
288
|
+
enterInsertIntoReplaceWhere(ctx: any): void;
|
|
289
|
+
exitInsertIntoReplaceWhere(ctx: any): void;
|
|
290
|
+
enterInsertOverwriteHiveDir(ctx: any): void;
|
|
291
|
+
exitInsertOverwriteHiveDir(ctx: any): void;
|
|
292
|
+
enterInsertOverwriteDir(ctx: any): void;
|
|
293
|
+
exitInsertOverwriteDir(ctx: any): void;
|
|
294
|
+
enterPartitionSpecLocation(ctx: any): void;
|
|
295
|
+
exitPartitionSpecLocation(ctx: any): void;
|
|
296
|
+
enterPartitionSpec(ctx: any): void;
|
|
297
|
+
exitPartitionSpec(ctx: any): void;
|
|
298
|
+
enterPartitionVal(ctx: any): void;
|
|
299
|
+
exitPartitionVal(ctx: any): void;
|
|
300
|
+
enterCreatePipelineFlowHeader(ctx: any): void;
|
|
301
|
+
exitCreatePipelineFlowHeader(ctx: any): void;
|
|
302
|
+
enterNamespace(ctx: any): void;
|
|
303
|
+
exitNamespace(ctx: any): void;
|
|
304
|
+
enterNamespaces(ctx: any): void;
|
|
305
|
+
exitNamespaces(ctx: any): void;
|
|
306
|
+
enterVariable(ctx: any): void;
|
|
307
|
+
exitVariable(ctx: any): void;
|
|
308
|
+
enterDescribeFuncName(ctx: any): void;
|
|
309
|
+
exitDescribeFuncName(ctx: any): void;
|
|
310
|
+
enterDescribeColName(ctx: any): void;
|
|
311
|
+
exitDescribeColName(ctx: any): void;
|
|
312
|
+
enterCtes(ctx: any): void;
|
|
313
|
+
exitCtes(ctx: any): void;
|
|
314
|
+
enterNamedQuery(ctx: any): void;
|
|
315
|
+
exitNamedQuery(ctx: any): void;
|
|
316
|
+
enterTableProvider(ctx: any): void;
|
|
317
|
+
exitTableProvider(ctx: any): void;
|
|
318
|
+
enterCreateTableClauses(ctx: any): void;
|
|
319
|
+
exitCreateTableClauses(ctx: any): void;
|
|
320
|
+
enterPropertyList(ctx: any): void;
|
|
321
|
+
exitPropertyList(ctx: any): void;
|
|
322
|
+
enterPropertyWithKeyAndEquals(ctx: any): void;
|
|
323
|
+
exitPropertyWithKeyAndEquals(ctx: any): void;
|
|
324
|
+
enterPropertyWithKeyNoEquals(ctx: any): void;
|
|
325
|
+
exitPropertyWithKeyNoEquals(ctx: any): void;
|
|
326
|
+
enterPropertyKey(ctx: any): void;
|
|
327
|
+
exitPropertyKey(ctx: any): void;
|
|
328
|
+
enterPropertyKeyOrStringLit(ctx: any): void;
|
|
329
|
+
exitPropertyKeyOrStringLit(ctx: any): void;
|
|
330
|
+
enterPropertyKeyOrStringLitNoCoalesce(ctx: any): void;
|
|
331
|
+
exitPropertyKeyOrStringLitNoCoalesce(ctx: any): void;
|
|
332
|
+
enterPropertyValue(ctx: any): void;
|
|
333
|
+
exitPropertyValue(ctx: any): void;
|
|
334
|
+
enterExpressionPropertyList(ctx: any): void;
|
|
335
|
+
exitExpressionPropertyList(ctx: any): void;
|
|
336
|
+
enterExpressionPropertyWithKeyAndEquals(ctx: any): void;
|
|
337
|
+
exitExpressionPropertyWithKeyAndEquals(ctx: any): void;
|
|
338
|
+
enterExpressionPropertyWithKeyNoEquals(ctx: any): void;
|
|
339
|
+
exitExpressionPropertyWithKeyNoEquals(ctx: any): void;
|
|
340
|
+
enterConstantList(ctx: any): void;
|
|
341
|
+
exitConstantList(ctx: any): void;
|
|
342
|
+
enterNestedConstantList(ctx: any): void;
|
|
343
|
+
exitNestedConstantList(ctx: any): void;
|
|
344
|
+
enterCreateFileFormat(ctx: any): void;
|
|
345
|
+
exitCreateFileFormat(ctx: any): void;
|
|
346
|
+
enterTableFileFormat(ctx: any): void;
|
|
347
|
+
exitTableFileFormat(ctx: any): void;
|
|
348
|
+
enterGenericFileFormat(ctx: any): void;
|
|
349
|
+
exitGenericFileFormat(ctx: any): void;
|
|
350
|
+
enterStorageHandler(ctx: any): void;
|
|
351
|
+
exitStorageHandler(ctx: any): void;
|
|
352
|
+
enterResource(ctx: any): void;
|
|
353
|
+
exitResource(ctx: any): void;
|
|
354
|
+
enterSingleInsertQuery(ctx: any): void;
|
|
355
|
+
exitSingleInsertQuery(ctx: any): void;
|
|
356
|
+
enterMultiInsertQuery(ctx: any): void;
|
|
357
|
+
exitMultiInsertQuery(ctx: any): void;
|
|
358
|
+
enterDeleteFromTable(ctx: any): void;
|
|
359
|
+
exitDeleteFromTable(ctx: any): void;
|
|
360
|
+
enterUpdateTable(ctx: any): void;
|
|
361
|
+
exitUpdateTable(ctx: any): void;
|
|
362
|
+
enterMergeIntoTable(ctx: any): void;
|
|
363
|
+
exitMergeIntoTable(ctx: any): void;
|
|
364
|
+
enterIdentifierReference(ctx: any): void;
|
|
365
|
+
exitIdentifierReference(ctx: any): void;
|
|
366
|
+
enterCatalogIdentifierReference(ctx: any): void;
|
|
367
|
+
exitCatalogIdentifierReference(ctx: any): void;
|
|
368
|
+
enterQueryOrganization(ctx: any): void;
|
|
369
|
+
exitQueryOrganization(ctx: any): void;
|
|
370
|
+
enterMultiInsertQueryBody(ctx: any): void;
|
|
371
|
+
exitMultiInsertQueryBody(ctx: any): void;
|
|
372
|
+
enterOperatorPipeStatement(ctx: any): void;
|
|
373
|
+
exitOperatorPipeStatement(ctx: any): void;
|
|
374
|
+
enterQueryTermDefault(ctx: any): void;
|
|
375
|
+
exitQueryTermDefault(ctx: any): void;
|
|
376
|
+
enterSetOperation(ctx: any): void;
|
|
377
|
+
exitSetOperation(ctx: any): void;
|
|
378
|
+
enterQueryPrimaryDefault(ctx: any): void;
|
|
379
|
+
exitQueryPrimaryDefault(ctx: any): void;
|
|
380
|
+
enterFromStmt(ctx: any): void;
|
|
381
|
+
exitFromStmt(ctx: any): void;
|
|
382
|
+
enterTable(ctx: any): void;
|
|
383
|
+
exitTable(ctx: any): void;
|
|
384
|
+
enterInlineTableDefault1(ctx: any): void;
|
|
385
|
+
exitInlineTableDefault1(ctx: any): void;
|
|
386
|
+
enterSubquery(ctx: any): void;
|
|
387
|
+
exitSubquery(ctx: any): void;
|
|
388
|
+
enterSortItem(ctx: any): void;
|
|
389
|
+
exitSortItem(ctx: any): void;
|
|
390
|
+
enterFromStatement(ctx: any): void;
|
|
391
|
+
exitFromStatement(ctx: any): void;
|
|
392
|
+
enterFromStatementBody(ctx: any): void;
|
|
393
|
+
exitFromStatementBody(ctx: any): void;
|
|
394
|
+
enterTransformQuerySpecification(ctx: any): void;
|
|
395
|
+
exitTransformQuerySpecification(ctx: any): void;
|
|
396
|
+
enterRegularQuerySpecification(ctx: any): void;
|
|
397
|
+
exitRegularQuerySpecification(ctx: any): void;
|
|
398
|
+
enterTransformClause(ctx: any): void;
|
|
399
|
+
exitTransformClause(ctx: any): void;
|
|
400
|
+
enterSelectClause(ctx: any): void;
|
|
401
|
+
exitSelectClause(ctx: any): void;
|
|
402
|
+
enterSetClause(ctx: any): void;
|
|
403
|
+
exitSetClause(ctx: any): void;
|
|
404
|
+
enterMatchedClause(ctx: any): void;
|
|
405
|
+
exitMatchedClause(ctx: any): void;
|
|
406
|
+
enterNotMatchedClause(ctx: any): void;
|
|
407
|
+
exitNotMatchedClause(ctx: any): void;
|
|
408
|
+
enterNotMatchedBySourceClause(ctx: any): void;
|
|
409
|
+
exitNotMatchedBySourceClause(ctx: any): void;
|
|
410
|
+
enterMatchedAction(ctx: any): void;
|
|
411
|
+
exitMatchedAction(ctx: any): void;
|
|
412
|
+
enterNotMatchedAction(ctx: any): void;
|
|
413
|
+
exitNotMatchedAction(ctx: any): void;
|
|
414
|
+
enterNotMatchedBySourceAction(ctx: any): void;
|
|
415
|
+
exitNotMatchedBySourceAction(ctx: any): void;
|
|
416
|
+
enterExceptClause(ctx: any): void;
|
|
417
|
+
exitExceptClause(ctx: any): void;
|
|
418
|
+
enterAssignmentList(ctx: any): void;
|
|
419
|
+
exitAssignmentList(ctx: any): void;
|
|
420
|
+
enterAssignment(ctx: any): void;
|
|
421
|
+
exitAssignment(ctx: any): void;
|
|
422
|
+
enterWhereClause(ctx: any): void;
|
|
423
|
+
exitWhereClause(ctx: any): void;
|
|
424
|
+
enterHavingClause(ctx: any): void;
|
|
425
|
+
exitHavingClause(ctx: any): void;
|
|
426
|
+
enterHint(ctx: any): void;
|
|
427
|
+
exitHint(ctx: any): void;
|
|
428
|
+
enterHintStatement(ctx: any): void;
|
|
429
|
+
exitHintStatement(ctx: any): void;
|
|
430
|
+
enterFromClause(ctx: any): void;
|
|
431
|
+
exitFromClause(ctx: any): void;
|
|
432
|
+
enterTemporalClause(ctx: any): void;
|
|
433
|
+
exitTemporalClause(ctx: any): void;
|
|
434
|
+
enterAggregationClause(ctx: any): void;
|
|
435
|
+
exitAggregationClause(ctx: any): void;
|
|
436
|
+
enterGroupByClause(ctx: any): void;
|
|
437
|
+
exitGroupByClause(ctx: any): void;
|
|
438
|
+
enterGroupingAnalytics(ctx: any): void;
|
|
439
|
+
exitGroupingAnalytics(ctx: any): void;
|
|
440
|
+
enterGroupingElement(ctx: any): void;
|
|
441
|
+
exitGroupingElement(ctx: any): void;
|
|
442
|
+
enterGroupingSet(ctx: any): void;
|
|
443
|
+
exitGroupingSet(ctx: any): void;
|
|
444
|
+
enterPivotClause(ctx: any): void;
|
|
445
|
+
exitPivotClause(ctx: any): void;
|
|
446
|
+
enterPivotColumn(ctx: any): void;
|
|
447
|
+
exitPivotColumn(ctx: any): void;
|
|
448
|
+
enterPivotValue(ctx: any): void;
|
|
449
|
+
exitPivotValue(ctx: any): void;
|
|
450
|
+
enterUnpivotClause(ctx: any): void;
|
|
451
|
+
exitUnpivotClause(ctx: any): void;
|
|
452
|
+
enterUnpivotNullClause(ctx: any): void;
|
|
453
|
+
exitUnpivotNullClause(ctx: any): void;
|
|
454
|
+
enterUnpivotOperator(ctx: any): void;
|
|
455
|
+
exitUnpivotOperator(ctx: any): void;
|
|
456
|
+
enterUnpivotSingleValueColumnClause(ctx: any): void;
|
|
457
|
+
exitUnpivotSingleValueColumnClause(ctx: any): void;
|
|
458
|
+
enterUnpivotMultiValueColumnClause(ctx: any): void;
|
|
459
|
+
exitUnpivotMultiValueColumnClause(ctx: any): void;
|
|
460
|
+
enterUnpivotColumnSet(ctx: any): void;
|
|
461
|
+
exitUnpivotColumnSet(ctx: any): void;
|
|
462
|
+
enterUnpivotValueColumn(ctx: any): void;
|
|
463
|
+
exitUnpivotValueColumn(ctx: any): void;
|
|
464
|
+
enterUnpivotNameColumn(ctx: any): void;
|
|
465
|
+
exitUnpivotNameColumn(ctx: any): void;
|
|
466
|
+
enterUnpivotColumnAndAlias(ctx: any): void;
|
|
467
|
+
exitUnpivotColumnAndAlias(ctx: any): void;
|
|
468
|
+
enterUnpivotColumn(ctx: any): void;
|
|
469
|
+
exitUnpivotColumn(ctx: any): void;
|
|
470
|
+
enterUnpivotAlias(ctx: any): void;
|
|
471
|
+
exitUnpivotAlias(ctx: any): void;
|
|
472
|
+
enterLateralView(ctx: any): void;
|
|
473
|
+
exitLateralView(ctx: any): void;
|
|
474
|
+
enterWatermarkClause(ctx: any): void;
|
|
475
|
+
exitWatermarkClause(ctx: any): void;
|
|
476
|
+
enterSetQuantifier(ctx: any): void;
|
|
477
|
+
exitSetQuantifier(ctx: any): void;
|
|
478
|
+
enterRelation(ctx: any): void;
|
|
479
|
+
exitRelation(ctx: any): void;
|
|
480
|
+
enterRelationExtension(ctx: any): void;
|
|
481
|
+
exitRelationExtension(ctx: any): void;
|
|
482
|
+
enterJoinRelation(ctx: any): void;
|
|
483
|
+
exitJoinRelation(ctx: any): void;
|
|
484
|
+
enterJoinType(ctx: any): void;
|
|
485
|
+
exitJoinType(ctx: any): void;
|
|
486
|
+
enterJoinCriteria(ctx: any): void;
|
|
487
|
+
exitJoinCriteria(ctx: any): void;
|
|
488
|
+
enterSample(ctx: any): void;
|
|
489
|
+
exitSample(ctx: any): void;
|
|
490
|
+
enterSampleByPercentile(ctx: any): void;
|
|
491
|
+
exitSampleByPercentile(ctx: any): void;
|
|
492
|
+
enterSampleByRows(ctx: any): void;
|
|
493
|
+
exitSampleByRows(ctx: any): void;
|
|
494
|
+
enterSampleByBucket(ctx: any): void;
|
|
495
|
+
exitSampleByBucket(ctx: any): void;
|
|
496
|
+
enterSampleByBytes(ctx: any): void;
|
|
497
|
+
exitSampleByBytes(ctx: any): void;
|
|
498
|
+
enterIdentifierList(ctx: any): void;
|
|
499
|
+
exitIdentifierList(ctx: any): void;
|
|
500
|
+
enterIdentifierSeq(ctx: any): void;
|
|
501
|
+
exitIdentifierSeq(ctx: any): void;
|
|
502
|
+
enterOrderedIdentifierList(ctx: any): void;
|
|
503
|
+
exitOrderedIdentifierList(ctx: any): void;
|
|
504
|
+
enterOrderedIdentifier(ctx: any): void;
|
|
505
|
+
exitOrderedIdentifier(ctx: any): void;
|
|
506
|
+
enterIdentifierCommentList(ctx: any): void;
|
|
507
|
+
exitIdentifierCommentList(ctx: any): void;
|
|
508
|
+
enterIdentifierComment(ctx: any): void;
|
|
509
|
+
exitIdentifierComment(ctx: any): void;
|
|
510
|
+
enterStreamRelation(ctx: any): void;
|
|
511
|
+
exitStreamRelation(ctx: any): void;
|
|
512
|
+
enterTableName(ctx: any): void;
|
|
513
|
+
exitTableName(ctx: any): void;
|
|
514
|
+
enterAliasedQuery(ctx: any): void;
|
|
515
|
+
exitAliasedQuery(ctx: any): void;
|
|
516
|
+
enterAliasedRelation(ctx: any): void;
|
|
517
|
+
exitAliasedRelation(ctx: any): void;
|
|
518
|
+
enterInlineTableDefault2(ctx: any): void;
|
|
519
|
+
exitInlineTableDefault2(ctx: any): void;
|
|
520
|
+
enterTableValuedFunction(ctx: any): void;
|
|
521
|
+
exitTableValuedFunction(ctx: any): void;
|
|
522
|
+
enterOptionsClause(ctx: any): void;
|
|
523
|
+
exitOptionsClause(ctx: any): void;
|
|
524
|
+
enterInlineTable(ctx: any): void;
|
|
525
|
+
exitInlineTable(ctx: any): void;
|
|
526
|
+
enterFunctionTableSubqueryArgument(ctx: any): void;
|
|
527
|
+
exitFunctionTableSubqueryArgument(ctx: any): void;
|
|
528
|
+
enterTableArgumentPartitioning(ctx: any): void;
|
|
529
|
+
exitTableArgumentPartitioning(ctx: any): void;
|
|
530
|
+
enterFunctionTableNamedArgumentExpression(ctx: any): void;
|
|
531
|
+
exitFunctionTableNamedArgumentExpression(ctx: any): void;
|
|
532
|
+
enterFunctionTableReferenceArgument(ctx: any): void;
|
|
533
|
+
exitFunctionTableReferenceArgument(ctx: any): void;
|
|
534
|
+
enterFunctionTableArgument(ctx: any): void;
|
|
535
|
+
exitFunctionTableArgument(ctx: any): void;
|
|
536
|
+
enterFunctionTable(ctx: any): void;
|
|
537
|
+
exitFunctionTable(ctx: any): void;
|
|
538
|
+
enterTableAlias(ctx: any): void;
|
|
539
|
+
exitTableAlias(ctx: any): void;
|
|
540
|
+
enterRowFormatSerde(ctx: any): void;
|
|
541
|
+
exitRowFormatSerde(ctx: any): void;
|
|
542
|
+
enterRowFormatDelimited(ctx: any): void;
|
|
543
|
+
exitRowFormatDelimited(ctx: any): void;
|
|
544
|
+
enterMultipartIdentifierList(ctx: any): void;
|
|
545
|
+
exitMultipartIdentifierList(ctx: any): void;
|
|
546
|
+
enterMultipartIdentifier(ctx: any): void;
|
|
547
|
+
exitMultipartIdentifier(ctx: any): void;
|
|
548
|
+
enterMultipartIdentifierPropertyList(ctx: any): void;
|
|
549
|
+
exitMultipartIdentifierPropertyList(ctx: any): void;
|
|
550
|
+
enterMultipartIdentifierProperty(ctx: any): void;
|
|
551
|
+
exitMultipartIdentifierProperty(ctx: any): void;
|
|
552
|
+
enterTableIdentifier(ctx: any): void;
|
|
553
|
+
exitTableIdentifier(ctx: any): void;
|
|
554
|
+
enterFunctionIdentifier(ctx: any): void;
|
|
555
|
+
exitFunctionIdentifier(ctx: any): void;
|
|
556
|
+
enterNamedExpression(ctx: any): void;
|
|
557
|
+
exitNamedExpression(ctx: any): void;
|
|
558
|
+
enterNamedExpressionSeq(ctx: any): void;
|
|
559
|
+
exitNamedExpressionSeq(ctx: any): void;
|
|
560
|
+
enterPartitionFieldList(ctx: any): void;
|
|
561
|
+
exitPartitionFieldList(ctx: any): void;
|
|
562
|
+
enterPartitionTransform(ctx: any): void;
|
|
563
|
+
exitPartitionTransform(ctx: any): void;
|
|
564
|
+
enterPartitionColumn(ctx: any): void;
|
|
565
|
+
exitPartitionColumn(ctx: any): void;
|
|
566
|
+
enterIdentityTransform(ctx: any): void;
|
|
567
|
+
exitIdentityTransform(ctx: any): void;
|
|
568
|
+
enterApplyTransform(ctx: any): void;
|
|
569
|
+
exitApplyTransform(ctx: any): void;
|
|
570
|
+
enterTransformArgument(ctx: any): void;
|
|
571
|
+
exitTransformArgument(ctx: any): void;
|
|
572
|
+
enterExpression(ctx: any): void;
|
|
573
|
+
exitExpression(ctx: any): void;
|
|
574
|
+
enterNamedArgumentExpression(ctx: any): void;
|
|
575
|
+
exitNamedArgumentExpression(ctx: any): void;
|
|
576
|
+
enterFunctionArgument(ctx: any): void;
|
|
577
|
+
exitFunctionArgument(ctx: any): void;
|
|
578
|
+
enterExpressionSeq(ctx: any): void;
|
|
579
|
+
exitExpressionSeq(ctx: any): void;
|
|
580
|
+
enterLogicalNot(ctx: any): void;
|
|
581
|
+
exitLogicalNot(ctx: any): void;
|
|
582
|
+
enterPredicated(ctx: any): void;
|
|
583
|
+
exitPredicated(ctx: any): void;
|
|
584
|
+
enterExists(ctx: any): void;
|
|
585
|
+
exitExists(ctx: any): void;
|
|
586
|
+
enterLogicalBinary(ctx: any): void;
|
|
587
|
+
exitLogicalBinary(ctx: any): void;
|
|
588
|
+
enterPredicate(ctx: any): void;
|
|
589
|
+
exitPredicate(ctx: any): void;
|
|
590
|
+
enterErrorCapturingNot(ctx: any): void;
|
|
591
|
+
exitErrorCapturingNot(ctx: any): void;
|
|
592
|
+
enterValueExpressionDefault(ctx: any): void;
|
|
593
|
+
exitValueExpressionDefault(ctx: any): void;
|
|
594
|
+
enterComparison(ctx: any): void;
|
|
595
|
+
exitComparison(ctx: any): void;
|
|
596
|
+
enterShiftExpression(ctx: any): void;
|
|
597
|
+
exitShiftExpression(ctx: any): void;
|
|
598
|
+
enterArithmeticBinary(ctx: any): void;
|
|
599
|
+
exitArithmeticBinary(ctx: any): void;
|
|
600
|
+
enterArithmeticUnary(ctx: any): void;
|
|
601
|
+
exitArithmeticUnary(ctx: any): void;
|
|
602
|
+
enterShiftOperator(ctx: any): void;
|
|
603
|
+
exitShiftOperator(ctx: any): void;
|
|
604
|
+
enterDatetimeUnit(ctx: any): void;
|
|
605
|
+
exitDatetimeUnit(ctx: any): void;
|
|
606
|
+
enterStruct(ctx: any): void;
|
|
607
|
+
exitStruct(ctx: any): void;
|
|
608
|
+
enterDereference(ctx: any): void;
|
|
609
|
+
exitDereference(ctx: any): void;
|
|
610
|
+
enterCastByColon(ctx: any): void;
|
|
611
|
+
exitCastByColon(ctx: any): void;
|
|
612
|
+
enterTimestampadd(ctx: any): void;
|
|
613
|
+
exitTimestampadd(ctx: any): void;
|
|
614
|
+
enterSubstring(ctx: any): void;
|
|
615
|
+
exitSubstring(ctx: any): void;
|
|
616
|
+
enterCast(ctx: any): void;
|
|
617
|
+
exitCast(ctx: any): void;
|
|
618
|
+
enterLambda(ctx: any): void;
|
|
619
|
+
exitLambda(ctx: any): void;
|
|
620
|
+
enterParenthesizedExpression(ctx: any): void;
|
|
621
|
+
exitParenthesizedExpression(ctx: any): void;
|
|
622
|
+
enterAny_value(ctx: any): void;
|
|
623
|
+
exitAny_value(ctx: any): void;
|
|
624
|
+
enterTrim(ctx: any): void;
|
|
625
|
+
exitTrim(ctx: any): void;
|
|
626
|
+
enterSemiStructuredExtract(ctx: any): void;
|
|
627
|
+
exitSemiStructuredExtract(ctx: any): void;
|
|
628
|
+
enterSimpleCase(ctx: any): void;
|
|
629
|
+
exitSimpleCase(ctx: any): void;
|
|
630
|
+
enterCurrentLike(ctx: any): void;
|
|
631
|
+
exitCurrentLike(ctx: any): void;
|
|
632
|
+
enterColumnReference(ctx: any): void;
|
|
633
|
+
exitColumnReference(ctx: any): void;
|
|
634
|
+
enterRowConstructor(ctx: any): void;
|
|
635
|
+
exitRowConstructor(ctx: any): void;
|
|
636
|
+
enterLast(ctx: any): void;
|
|
637
|
+
exitLast(ctx: any): void;
|
|
638
|
+
enterStar(ctx: any): void;
|
|
639
|
+
exitStar(ctx: any): void;
|
|
640
|
+
enterOverlay(ctx: any): void;
|
|
641
|
+
exitOverlay(ctx: any): void;
|
|
642
|
+
enterSubscript(ctx: any): void;
|
|
643
|
+
exitSubscript(ctx: any): void;
|
|
644
|
+
enterTimestampdiff(ctx: any): void;
|
|
645
|
+
exitTimestampdiff(ctx: any): void;
|
|
646
|
+
enterSubqueryExpression(ctx: any): void;
|
|
647
|
+
exitSubqueryExpression(ctx: any): void;
|
|
648
|
+
enterCollate(ctx: any): void;
|
|
649
|
+
exitCollate(ctx: any): void;
|
|
650
|
+
enterConstantDefault(ctx: any): void;
|
|
651
|
+
exitConstantDefault(ctx: any): void;
|
|
652
|
+
enterExtract(ctx: any): void;
|
|
653
|
+
exitExtract(ctx: any): void;
|
|
654
|
+
enterFunctionCall(ctx: any): void;
|
|
655
|
+
exitFunctionCall(ctx: any): void;
|
|
656
|
+
enterSearchedCase(ctx: any): void;
|
|
657
|
+
exitSearchedCase(ctx: any): void;
|
|
658
|
+
enterPosition(ctx: any): void;
|
|
659
|
+
exitPosition(ctx: any): void;
|
|
660
|
+
enterFirst(ctx: any): void;
|
|
661
|
+
exitFirst(ctx: any): void;
|
|
662
|
+
enterSemiStructuredExtractionPath(ctx: any): void;
|
|
663
|
+
exitSemiStructuredExtractionPath(ctx: any): void;
|
|
664
|
+
enterJsonPathIdentifier(ctx: any): void;
|
|
665
|
+
exitJsonPathIdentifier(ctx: any): void;
|
|
666
|
+
enterJsonPathBracketedIdentifier(ctx: any): void;
|
|
667
|
+
exitJsonPathBracketedIdentifier(ctx: any): void;
|
|
668
|
+
enterJsonPathFirstPart(ctx: any): void;
|
|
669
|
+
exitJsonPathFirstPart(ctx: any): void;
|
|
670
|
+
enterJsonPathParts(ctx: any): void;
|
|
671
|
+
exitJsonPathParts(ctx: any): void;
|
|
672
|
+
enterLiteralType(ctx: any): void;
|
|
673
|
+
exitLiteralType(ctx: any): void;
|
|
674
|
+
enterNullLiteral(ctx: any): void;
|
|
675
|
+
exitNullLiteral(ctx: any): void;
|
|
676
|
+
enterPosParameterLiteral(ctx: any): void;
|
|
677
|
+
exitPosParameterLiteral(ctx: any): void;
|
|
678
|
+
enterNamedParameterLiteral(ctx: any): void;
|
|
679
|
+
exitNamedParameterLiteral(ctx: any): void;
|
|
680
|
+
enterIntervalLiteral(ctx: any): void;
|
|
681
|
+
exitIntervalLiteral(ctx: any): void;
|
|
682
|
+
enterTypeConstructor(ctx: any): void;
|
|
683
|
+
exitTypeConstructor(ctx: any): void;
|
|
684
|
+
enterNumericLiteral(ctx: any): void;
|
|
685
|
+
exitNumericLiteral(ctx: any): void;
|
|
686
|
+
enterBooleanLiteral(ctx: any): void;
|
|
687
|
+
exitBooleanLiteral(ctx: any): void;
|
|
688
|
+
enterStringLiteral(ctx: any): void;
|
|
689
|
+
exitStringLiteral(ctx: any): void;
|
|
690
|
+
enterNamedParameterMarker(ctx: any): void;
|
|
691
|
+
exitNamedParameterMarker(ctx: any): void;
|
|
692
|
+
enterComparisonOperator(ctx: any): void;
|
|
693
|
+
exitComparisonOperator(ctx: any): void;
|
|
694
|
+
enterArithmeticOperator(ctx: any): void;
|
|
695
|
+
exitArithmeticOperator(ctx: any): void;
|
|
696
|
+
enterPredicateOperator(ctx: any): void;
|
|
697
|
+
exitPredicateOperator(ctx: any): void;
|
|
698
|
+
enterBooleanValue(ctx: any): void;
|
|
699
|
+
exitBooleanValue(ctx: any): void;
|
|
700
|
+
enterInterval(ctx: any): void;
|
|
701
|
+
exitInterval(ctx: any): void;
|
|
702
|
+
enterErrorCapturingMultiUnitsInterval(ctx: any): void;
|
|
703
|
+
exitErrorCapturingMultiUnitsInterval(ctx: any): void;
|
|
704
|
+
enterMultiUnitsInterval(ctx: any): void;
|
|
705
|
+
exitMultiUnitsInterval(ctx: any): void;
|
|
706
|
+
enterErrorCapturingUnitToUnitInterval(ctx: any): void;
|
|
707
|
+
exitErrorCapturingUnitToUnitInterval(ctx: any): void;
|
|
708
|
+
enterUnitToUnitInterval(ctx: any): void;
|
|
709
|
+
exitUnitToUnitInterval(ctx: any): void;
|
|
710
|
+
enterIntervalValue(ctx: any): void;
|
|
711
|
+
exitIntervalValue(ctx: any): void;
|
|
712
|
+
enterUnitInMultiUnits(ctx: any): void;
|
|
713
|
+
exitUnitInMultiUnits(ctx: any): void;
|
|
714
|
+
enterUnitInUnitToUnit(ctx: any): void;
|
|
715
|
+
exitUnitInUnitToUnit(ctx: any): void;
|
|
716
|
+
enterColPosition(ctx: any): void;
|
|
717
|
+
exitColPosition(ctx: any): void;
|
|
718
|
+
enterCollationSpec(ctx: any): void;
|
|
719
|
+
exitCollationSpec(ctx: any): void;
|
|
720
|
+
enterCollateClause(ctx: any): void;
|
|
721
|
+
exitCollateClause(ctx: any): void;
|
|
722
|
+
enterNonTrivialPrimitiveType(ctx: any): void;
|
|
723
|
+
exitNonTrivialPrimitiveType(ctx: any): void;
|
|
724
|
+
enterTrivialPrimitiveType(ctx: any): void;
|
|
725
|
+
exitTrivialPrimitiveType(ctx: any): void;
|
|
726
|
+
enterPrimitiveType(ctx: any): void;
|
|
727
|
+
exitPrimitiveType(ctx: any): void;
|
|
728
|
+
enterComplexDataType(ctx: any): void;
|
|
729
|
+
exitComplexDataType(ctx: any): void;
|
|
730
|
+
enterPrimitiveDataType(ctx: any): void;
|
|
731
|
+
exitPrimitiveDataType(ctx: any): void;
|
|
732
|
+
enterQualifiedColTypeWithPositionList(ctx: any): void;
|
|
733
|
+
exitQualifiedColTypeWithPositionList(ctx: any): void;
|
|
734
|
+
enterQualifiedColTypeWithPosition(ctx: any): void;
|
|
735
|
+
exitQualifiedColTypeWithPosition(ctx: any): void;
|
|
736
|
+
enterColDefinitionDescriptorWithPosition(ctx: any): void;
|
|
737
|
+
exitColDefinitionDescriptorWithPosition(ctx: any): void;
|
|
738
|
+
enterDefaultExpression(ctx: any): void;
|
|
739
|
+
exitDefaultExpression(ctx: any): void;
|
|
740
|
+
enterVariableDefaultExpression(ctx: any): void;
|
|
741
|
+
exitVariableDefaultExpression(ctx: any): void;
|
|
742
|
+
enterColTypeList(ctx: any): void;
|
|
743
|
+
exitColTypeList(ctx: any): void;
|
|
744
|
+
enterColType(ctx: any): void;
|
|
745
|
+
exitColType(ctx: any): void;
|
|
746
|
+
enterTableElementList(ctx: any): void;
|
|
747
|
+
exitTableElementList(ctx: any): void;
|
|
748
|
+
enterTableElement(ctx: any): void;
|
|
749
|
+
exitTableElement(ctx: any): void;
|
|
750
|
+
enterColDefinitionList(ctx: any): void;
|
|
751
|
+
exitColDefinitionList(ctx: any): void;
|
|
752
|
+
enterColDefinition(ctx: any): void;
|
|
753
|
+
exitColDefinition(ctx: any): void;
|
|
754
|
+
enterColDefinitionOption(ctx: any): void;
|
|
755
|
+
exitColDefinitionOption(ctx: any): void;
|
|
756
|
+
enterGeneratedColumn(ctx: any): void;
|
|
757
|
+
exitGeneratedColumn(ctx: any): void;
|
|
758
|
+
enterIdentityColumn(ctx: any): void;
|
|
759
|
+
exitIdentityColumn(ctx: any): void;
|
|
760
|
+
enterIdentityColSpec(ctx: any): void;
|
|
761
|
+
exitIdentityColSpec(ctx: any): void;
|
|
762
|
+
enterSequenceGeneratorOption(ctx: any): void;
|
|
763
|
+
exitSequenceGeneratorOption(ctx: any): void;
|
|
764
|
+
enterSequenceGeneratorStartOrStep(ctx: any): void;
|
|
765
|
+
exitSequenceGeneratorStartOrStep(ctx: any): void;
|
|
766
|
+
enterComplexColTypeList(ctx: any): void;
|
|
767
|
+
exitComplexColTypeList(ctx: any): void;
|
|
768
|
+
enterComplexColType(ctx: any): void;
|
|
769
|
+
exitComplexColType(ctx: any): void;
|
|
770
|
+
enterCodeLiteral(ctx: any): void;
|
|
771
|
+
exitCodeLiteral(ctx: any): void;
|
|
772
|
+
enterRoutineCharacteristics(ctx: any): void;
|
|
773
|
+
exitRoutineCharacteristics(ctx: any): void;
|
|
774
|
+
enterRoutineLanguage(ctx: any): void;
|
|
775
|
+
exitRoutineLanguage(ctx: any): void;
|
|
776
|
+
enterSpecificName(ctx: any): void;
|
|
777
|
+
exitSpecificName(ctx: any): void;
|
|
778
|
+
enterDeterministic(ctx: any): void;
|
|
779
|
+
exitDeterministic(ctx: any): void;
|
|
780
|
+
enterSqlDataAccess(ctx: any): void;
|
|
781
|
+
exitSqlDataAccess(ctx: any): void;
|
|
782
|
+
enterNullCall(ctx: any): void;
|
|
783
|
+
exitNullCall(ctx: any): void;
|
|
784
|
+
enterRightsClause(ctx: any): void;
|
|
785
|
+
exitRightsClause(ctx: any): void;
|
|
786
|
+
enterWhenClause(ctx: any): void;
|
|
787
|
+
exitWhenClause(ctx: any): void;
|
|
788
|
+
enterWindowClause(ctx: any): void;
|
|
789
|
+
exitWindowClause(ctx: any): void;
|
|
790
|
+
enterNamedWindow(ctx: any): void;
|
|
791
|
+
exitNamedWindow(ctx: any): void;
|
|
792
|
+
enterWindowRef(ctx: any): void;
|
|
793
|
+
exitWindowRef(ctx: any): void;
|
|
794
|
+
enterWindowDef(ctx: any): void;
|
|
795
|
+
exitWindowDef(ctx: any): void;
|
|
796
|
+
enterWindowFrame(ctx: any): void;
|
|
797
|
+
exitWindowFrame(ctx: any): void;
|
|
798
|
+
enterFrameBound(ctx: any): void;
|
|
799
|
+
exitFrameBound(ctx: any): void;
|
|
800
|
+
enterQualifiedNameList(ctx: any): void;
|
|
801
|
+
exitQualifiedNameList(ctx: any): void;
|
|
802
|
+
enterFunctionName(ctx: any): void;
|
|
803
|
+
exitFunctionName(ctx: any): void;
|
|
804
|
+
enterQualifiedName(ctx: any): void;
|
|
805
|
+
exitQualifiedName(ctx: any): void;
|
|
806
|
+
enterErrorCapturingIdentifier(ctx: any): void;
|
|
807
|
+
exitErrorCapturingIdentifier(ctx: any): void;
|
|
808
|
+
enterErrorIdent(ctx: any): void;
|
|
809
|
+
exitErrorIdent(ctx: any): void;
|
|
810
|
+
enterRealIdent(ctx: any): void;
|
|
811
|
+
exitRealIdent(ctx: any): void;
|
|
812
|
+
enterIdentifier(ctx: any): void;
|
|
813
|
+
exitIdentifier(ctx: any): void;
|
|
814
|
+
enterSimpleIdentifier(ctx: any): void;
|
|
815
|
+
exitSimpleIdentifier(ctx: any): void;
|
|
816
|
+
enterUnquotedIdentifier(ctx: any): void;
|
|
817
|
+
exitUnquotedIdentifier(ctx: any): void;
|
|
818
|
+
enterQuotedIdentifierAlternative(ctx: any): void;
|
|
819
|
+
exitQuotedIdentifierAlternative(ctx: any): void;
|
|
820
|
+
enterIdentifierLiteral(ctx: any): void;
|
|
821
|
+
exitIdentifierLiteral(ctx: any): void;
|
|
822
|
+
enterSimpleUnquotedIdentifier(ctx: any): void;
|
|
823
|
+
exitSimpleUnquotedIdentifier(ctx: any): void;
|
|
824
|
+
enterSimpleQuotedIdentifierAlternative(ctx: any): void;
|
|
825
|
+
exitSimpleQuotedIdentifierAlternative(ctx: any): void;
|
|
826
|
+
enterQuotedIdentifier(ctx: any): void;
|
|
827
|
+
exitQuotedIdentifier(ctx: any): void;
|
|
828
|
+
enterBackQuotedIdentifier(ctx: any): void;
|
|
829
|
+
exitBackQuotedIdentifier(ctx: any): void;
|
|
830
|
+
enterExponentLiteral(ctx: any): void;
|
|
831
|
+
exitExponentLiteral(ctx: any): void;
|
|
832
|
+
enterDecimalLiteral(ctx: any): void;
|
|
833
|
+
exitDecimalLiteral(ctx: any): void;
|
|
834
|
+
enterLegacyDecimalLiteral(ctx: any): void;
|
|
835
|
+
exitLegacyDecimalLiteral(ctx: any): void;
|
|
836
|
+
enterIntegerLiteral(ctx: any): void;
|
|
837
|
+
exitIntegerLiteral(ctx: any): void;
|
|
838
|
+
enterBigIntLiteral(ctx: any): void;
|
|
839
|
+
exitBigIntLiteral(ctx: any): void;
|
|
840
|
+
enterSmallIntLiteral(ctx: any): void;
|
|
841
|
+
exitSmallIntLiteral(ctx: any): void;
|
|
842
|
+
enterTinyIntLiteral(ctx: any): void;
|
|
843
|
+
exitTinyIntLiteral(ctx: any): void;
|
|
844
|
+
enterDoubleLiteral(ctx: any): void;
|
|
845
|
+
exitDoubleLiteral(ctx: any): void;
|
|
846
|
+
enterFloatLiteral(ctx: any): void;
|
|
847
|
+
exitFloatLiteral(ctx: any): void;
|
|
848
|
+
enterBigDecimalLiteral(ctx: any): void;
|
|
849
|
+
exitBigDecimalLiteral(ctx: any): void;
|
|
850
|
+
enterIntegerVal(ctx: any): void;
|
|
851
|
+
exitIntegerVal(ctx: any): void;
|
|
852
|
+
enterParameterIntegerValue(ctx: any): void;
|
|
853
|
+
exitParameterIntegerValue(ctx: any): void;
|
|
854
|
+
enterColumnConstraintDefinition(ctx: any): void;
|
|
855
|
+
exitColumnConstraintDefinition(ctx: any): void;
|
|
856
|
+
enterColumnConstraint(ctx: any): void;
|
|
857
|
+
exitColumnConstraint(ctx: any): void;
|
|
858
|
+
enterTableConstraintDefinition(ctx: any): void;
|
|
859
|
+
exitTableConstraintDefinition(ctx: any): void;
|
|
860
|
+
enterTableConstraint(ctx: any): void;
|
|
861
|
+
exitTableConstraint(ctx: any): void;
|
|
862
|
+
enterCheckConstraint(ctx: any): void;
|
|
863
|
+
exitCheckConstraint(ctx: any): void;
|
|
864
|
+
enterUniqueSpec(ctx: any): void;
|
|
865
|
+
exitUniqueSpec(ctx: any): void;
|
|
866
|
+
enterUniqueConstraint(ctx: any): void;
|
|
867
|
+
exitUniqueConstraint(ctx: any): void;
|
|
868
|
+
enterReferenceSpec(ctx: any): void;
|
|
869
|
+
exitReferenceSpec(ctx: any): void;
|
|
870
|
+
enterForeignKeyConstraint(ctx: any): void;
|
|
871
|
+
exitForeignKeyConstraint(ctx: any): void;
|
|
872
|
+
enterConstraintCharacteristic(ctx: any): void;
|
|
873
|
+
exitConstraintCharacteristic(ctx: any): void;
|
|
874
|
+
enterEnforcedCharacteristic(ctx: any): void;
|
|
875
|
+
exitEnforcedCharacteristic(ctx: any): void;
|
|
876
|
+
enterRelyCharacteristic(ctx: any): void;
|
|
877
|
+
exitRelyCharacteristic(ctx: any): void;
|
|
878
|
+
enterAlterColumnSpecList(ctx: any): void;
|
|
879
|
+
exitAlterColumnSpecList(ctx: any): void;
|
|
880
|
+
enterAlterColumnSpec(ctx: any): void;
|
|
881
|
+
exitAlterColumnSpec(ctx: any): void;
|
|
882
|
+
enterAlterColumnAction(ctx: any): void;
|
|
883
|
+
exitAlterColumnAction(ctx: any): void;
|
|
884
|
+
enterSingleStringLiteralValue(ctx: any): void;
|
|
885
|
+
exitSingleStringLiteralValue(ctx: any): void;
|
|
886
|
+
enterSingleDoubleQuotedStringLiteralValue(ctx: any): void;
|
|
887
|
+
exitSingleDoubleQuotedStringLiteralValue(ctx: any): void;
|
|
888
|
+
enterSingleStringLit(ctx: any): void;
|
|
889
|
+
exitSingleStringLit(ctx: any): void;
|
|
890
|
+
enterNamedParameterMarkerRule(ctx: any): void;
|
|
891
|
+
exitNamedParameterMarkerRule(ctx: any): void;
|
|
892
|
+
enterPositionalParameterMarkerRule(ctx: any): void;
|
|
893
|
+
exitPositionalParameterMarkerRule(ctx: any): void;
|
|
894
|
+
enterStringLit(ctx: any): void;
|
|
895
|
+
exitStringLit(ctx: any): void;
|
|
896
|
+
enterComment(ctx: any): void;
|
|
897
|
+
exitComment(ctx: any): void;
|
|
898
|
+
enterVersion(ctx: any): void;
|
|
899
|
+
exitVersion(ctx: any): void;
|
|
900
|
+
enterOperatorPipeRightSide(ctx: any): void;
|
|
901
|
+
exitOperatorPipeRightSide(ctx: any): void;
|
|
902
|
+
enterOperatorPipeSetAssignmentSeq(ctx: any): void;
|
|
903
|
+
exitOperatorPipeSetAssignmentSeq(ctx: any): void;
|
|
904
|
+
enterAnsiNonReserved(ctx: any): void;
|
|
905
|
+
exitAnsiNonReserved(ctx: any): void;
|
|
906
|
+
enterStrictNonReserved(ctx: any): void;
|
|
907
|
+
exitStrictNonReserved(ctx: any): void;
|
|
908
|
+
enterNonReserved(ctx: any): void;
|
|
909
|
+
exitNonReserved(ctx: any): void;
|
|
910
|
+
}
|