@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,2730 @@
|
|
|
1
|
+
// Generated from /home/runner/work/fabric-format/fabric-format/packages/core/grammar/SqlBaseParser.g4 by ANTLR 4.13.2
|
|
2
|
+
// jshint ignore: start
|
|
3
|
+
import antlr4 from 'antlr4';
|
|
4
|
+
// This class defines a complete listener for a parse tree produced by SqlBaseParser.
|
|
5
|
+
export default class SqlBaseParserListener extends antlr4.tree.ParseTreeListener {
|
|
6
|
+
// Enter a parse tree produced by SqlBaseParser#compoundOrSingleStatement.
|
|
7
|
+
enterCompoundOrSingleStatement(ctx) {
|
|
8
|
+
}
|
|
9
|
+
// Exit a parse tree produced by SqlBaseParser#compoundOrSingleStatement.
|
|
10
|
+
exitCompoundOrSingleStatement(ctx) {
|
|
11
|
+
}
|
|
12
|
+
// Enter a parse tree produced by SqlBaseParser#singleCompoundStatement.
|
|
13
|
+
enterSingleCompoundStatement(ctx) {
|
|
14
|
+
}
|
|
15
|
+
// Exit a parse tree produced by SqlBaseParser#singleCompoundStatement.
|
|
16
|
+
exitSingleCompoundStatement(ctx) {
|
|
17
|
+
}
|
|
18
|
+
// Enter a parse tree produced by SqlBaseParser#beginEndCompoundBlock.
|
|
19
|
+
enterBeginEndCompoundBlock(ctx) {
|
|
20
|
+
}
|
|
21
|
+
// Exit a parse tree produced by SqlBaseParser#beginEndCompoundBlock.
|
|
22
|
+
exitBeginEndCompoundBlock(ctx) {
|
|
23
|
+
}
|
|
24
|
+
// Enter a parse tree produced by SqlBaseParser#compoundBody.
|
|
25
|
+
enterCompoundBody(ctx) {
|
|
26
|
+
}
|
|
27
|
+
// Exit a parse tree produced by SqlBaseParser#compoundBody.
|
|
28
|
+
exitCompoundBody(ctx) {
|
|
29
|
+
}
|
|
30
|
+
// Enter a parse tree produced by SqlBaseParser#compoundStatement.
|
|
31
|
+
enterCompoundStatement(ctx) {
|
|
32
|
+
}
|
|
33
|
+
// Exit a parse tree produced by SqlBaseParser#compoundStatement.
|
|
34
|
+
exitCompoundStatement(ctx) {
|
|
35
|
+
}
|
|
36
|
+
// Enter a parse tree produced by SqlBaseParser#setVariableInsideSqlScript.
|
|
37
|
+
enterSetVariableInsideSqlScript(ctx) {
|
|
38
|
+
}
|
|
39
|
+
// Exit a parse tree produced by SqlBaseParser#setVariableInsideSqlScript.
|
|
40
|
+
exitSetVariableInsideSqlScript(ctx) {
|
|
41
|
+
}
|
|
42
|
+
// Enter a parse tree produced by SqlBaseParser#sqlStateValue.
|
|
43
|
+
enterSqlStateValue(ctx) {
|
|
44
|
+
}
|
|
45
|
+
// Exit a parse tree produced by SqlBaseParser#sqlStateValue.
|
|
46
|
+
exitSqlStateValue(ctx) {
|
|
47
|
+
}
|
|
48
|
+
// Enter a parse tree produced by SqlBaseParser#declareConditionStatement.
|
|
49
|
+
enterDeclareConditionStatement(ctx) {
|
|
50
|
+
}
|
|
51
|
+
// Exit a parse tree produced by SqlBaseParser#declareConditionStatement.
|
|
52
|
+
exitDeclareConditionStatement(ctx) {
|
|
53
|
+
}
|
|
54
|
+
// Enter a parse tree produced by SqlBaseParser#conditionValue.
|
|
55
|
+
enterConditionValue(ctx) {
|
|
56
|
+
}
|
|
57
|
+
// Exit a parse tree produced by SqlBaseParser#conditionValue.
|
|
58
|
+
exitConditionValue(ctx) {
|
|
59
|
+
}
|
|
60
|
+
// Enter a parse tree produced by SqlBaseParser#conditionValues.
|
|
61
|
+
enterConditionValues(ctx) {
|
|
62
|
+
}
|
|
63
|
+
// Exit a parse tree produced by SqlBaseParser#conditionValues.
|
|
64
|
+
exitConditionValues(ctx) {
|
|
65
|
+
}
|
|
66
|
+
// Enter a parse tree produced by SqlBaseParser#declareHandlerStatement.
|
|
67
|
+
enterDeclareHandlerStatement(ctx) {
|
|
68
|
+
}
|
|
69
|
+
// Exit a parse tree produced by SqlBaseParser#declareHandlerStatement.
|
|
70
|
+
exitDeclareHandlerStatement(ctx) {
|
|
71
|
+
}
|
|
72
|
+
// Enter a parse tree produced by SqlBaseParser#whileStatement.
|
|
73
|
+
enterWhileStatement(ctx) {
|
|
74
|
+
}
|
|
75
|
+
// Exit a parse tree produced by SqlBaseParser#whileStatement.
|
|
76
|
+
exitWhileStatement(ctx) {
|
|
77
|
+
}
|
|
78
|
+
// Enter a parse tree produced by SqlBaseParser#ifElseStatement.
|
|
79
|
+
enterIfElseStatement(ctx) {
|
|
80
|
+
}
|
|
81
|
+
// Exit a parse tree produced by SqlBaseParser#ifElseStatement.
|
|
82
|
+
exitIfElseStatement(ctx) {
|
|
83
|
+
}
|
|
84
|
+
// Enter a parse tree produced by SqlBaseParser#repeatStatement.
|
|
85
|
+
enterRepeatStatement(ctx) {
|
|
86
|
+
}
|
|
87
|
+
// Exit a parse tree produced by SqlBaseParser#repeatStatement.
|
|
88
|
+
exitRepeatStatement(ctx) {
|
|
89
|
+
}
|
|
90
|
+
// Enter a parse tree produced by SqlBaseParser#leaveStatement.
|
|
91
|
+
enterLeaveStatement(ctx) {
|
|
92
|
+
}
|
|
93
|
+
// Exit a parse tree produced by SqlBaseParser#leaveStatement.
|
|
94
|
+
exitLeaveStatement(ctx) {
|
|
95
|
+
}
|
|
96
|
+
// Enter a parse tree produced by SqlBaseParser#iterateStatement.
|
|
97
|
+
enterIterateStatement(ctx) {
|
|
98
|
+
}
|
|
99
|
+
// Exit a parse tree produced by SqlBaseParser#iterateStatement.
|
|
100
|
+
exitIterateStatement(ctx) {
|
|
101
|
+
}
|
|
102
|
+
// Enter a parse tree produced by SqlBaseParser#searchedCaseStatement.
|
|
103
|
+
enterSearchedCaseStatement(ctx) {
|
|
104
|
+
}
|
|
105
|
+
// Exit a parse tree produced by SqlBaseParser#searchedCaseStatement.
|
|
106
|
+
exitSearchedCaseStatement(ctx) {
|
|
107
|
+
}
|
|
108
|
+
// Enter a parse tree produced by SqlBaseParser#simpleCaseStatement.
|
|
109
|
+
enterSimpleCaseStatement(ctx) {
|
|
110
|
+
}
|
|
111
|
+
// Exit a parse tree produced by SqlBaseParser#simpleCaseStatement.
|
|
112
|
+
exitSimpleCaseStatement(ctx) {
|
|
113
|
+
}
|
|
114
|
+
// Enter a parse tree produced by SqlBaseParser#loopStatement.
|
|
115
|
+
enterLoopStatement(ctx) {
|
|
116
|
+
}
|
|
117
|
+
// Exit a parse tree produced by SqlBaseParser#loopStatement.
|
|
118
|
+
exitLoopStatement(ctx) {
|
|
119
|
+
}
|
|
120
|
+
// Enter a parse tree produced by SqlBaseParser#forStatement.
|
|
121
|
+
enterForStatement(ctx) {
|
|
122
|
+
}
|
|
123
|
+
// Exit a parse tree produced by SqlBaseParser#forStatement.
|
|
124
|
+
exitForStatement(ctx) {
|
|
125
|
+
}
|
|
126
|
+
// Enter a parse tree produced by SqlBaseParser#singleStatement.
|
|
127
|
+
enterSingleStatement(ctx) {
|
|
128
|
+
}
|
|
129
|
+
// Exit a parse tree produced by SqlBaseParser#singleStatement.
|
|
130
|
+
exitSingleStatement(ctx) {
|
|
131
|
+
}
|
|
132
|
+
// Enter a parse tree produced by SqlBaseParser#beginLabel.
|
|
133
|
+
enterBeginLabel(ctx) {
|
|
134
|
+
}
|
|
135
|
+
// Exit a parse tree produced by SqlBaseParser#beginLabel.
|
|
136
|
+
exitBeginLabel(ctx) {
|
|
137
|
+
}
|
|
138
|
+
// Enter a parse tree produced by SqlBaseParser#endLabel.
|
|
139
|
+
enterEndLabel(ctx) {
|
|
140
|
+
}
|
|
141
|
+
// Exit a parse tree produced by SqlBaseParser#endLabel.
|
|
142
|
+
exitEndLabel(ctx) {
|
|
143
|
+
}
|
|
144
|
+
// Enter a parse tree produced by SqlBaseParser#singleExpression.
|
|
145
|
+
enterSingleExpression(ctx) {
|
|
146
|
+
}
|
|
147
|
+
// Exit a parse tree produced by SqlBaseParser#singleExpression.
|
|
148
|
+
exitSingleExpression(ctx) {
|
|
149
|
+
}
|
|
150
|
+
// Enter a parse tree produced by SqlBaseParser#singleTableIdentifier.
|
|
151
|
+
enterSingleTableIdentifier(ctx) {
|
|
152
|
+
}
|
|
153
|
+
// Exit a parse tree produced by SqlBaseParser#singleTableIdentifier.
|
|
154
|
+
exitSingleTableIdentifier(ctx) {
|
|
155
|
+
}
|
|
156
|
+
// Enter a parse tree produced by SqlBaseParser#singleMultipartIdentifier.
|
|
157
|
+
enterSingleMultipartIdentifier(ctx) {
|
|
158
|
+
}
|
|
159
|
+
// Exit a parse tree produced by SqlBaseParser#singleMultipartIdentifier.
|
|
160
|
+
exitSingleMultipartIdentifier(ctx) {
|
|
161
|
+
}
|
|
162
|
+
// Enter a parse tree produced by SqlBaseParser#singleFunctionIdentifier.
|
|
163
|
+
enterSingleFunctionIdentifier(ctx) {
|
|
164
|
+
}
|
|
165
|
+
// Exit a parse tree produced by SqlBaseParser#singleFunctionIdentifier.
|
|
166
|
+
exitSingleFunctionIdentifier(ctx) {
|
|
167
|
+
}
|
|
168
|
+
// Enter a parse tree produced by SqlBaseParser#singleDataType.
|
|
169
|
+
enterSingleDataType(ctx) {
|
|
170
|
+
}
|
|
171
|
+
// Exit a parse tree produced by SqlBaseParser#singleDataType.
|
|
172
|
+
exitSingleDataType(ctx) {
|
|
173
|
+
}
|
|
174
|
+
// Enter a parse tree produced by SqlBaseParser#singleTableSchema.
|
|
175
|
+
enterSingleTableSchema(ctx) {
|
|
176
|
+
}
|
|
177
|
+
// Exit a parse tree produced by SqlBaseParser#singleTableSchema.
|
|
178
|
+
exitSingleTableSchema(ctx) {
|
|
179
|
+
}
|
|
180
|
+
// Enter a parse tree produced by SqlBaseParser#singleRoutineParamList.
|
|
181
|
+
enterSingleRoutineParamList(ctx) {
|
|
182
|
+
}
|
|
183
|
+
// Exit a parse tree produced by SqlBaseParser#singleRoutineParamList.
|
|
184
|
+
exitSingleRoutineParamList(ctx) {
|
|
185
|
+
}
|
|
186
|
+
// Enter a parse tree produced by SqlBaseParser#statementDefault.
|
|
187
|
+
enterStatementDefault(ctx) {
|
|
188
|
+
}
|
|
189
|
+
// Exit a parse tree produced by SqlBaseParser#statementDefault.
|
|
190
|
+
exitStatementDefault(ctx) {
|
|
191
|
+
}
|
|
192
|
+
// Enter a parse tree produced by SqlBaseParser#visitExecuteImmediate.
|
|
193
|
+
enterVisitExecuteImmediate(ctx) {
|
|
194
|
+
}
|
|
195
|
+
// Exit a parse tree produced by SqlBaseParser#visitExecuteImmediate.
|
|
196
|
+
exitVisitExecuteImmediate(ctx) {
|
|
197
|
+
}
|
|
198
|
+
// Enter a parse tree produced by SqlBaseParser#dmlStatement.
|
|
199
|
+
enterDmlStatement(ctx) {
|
|
200
|
+
}
|
|
201
|
+
// Exit a parse tree produced by SqlBaseParser#dmlStatement.
|
|
202
|
+
exitDmlStatement(ctx) {
|
|
203
|
+
}
|
|
204
|
+
// Enter a parse tree produced by SqlBaseParser#use.
|
|
205
|
+
enterUse(ctx) {
|
|
206
|
+
}
|
|
207
|
+
// Exit a parse tree produced by SqlBaseParser#use.
|
|
208
|
+
exitUse(ctx) {
|
|
209
|
+
}
|
|
210
|
+
// Enter a parse tree produced by SqlBaseParser#useNamespace.
|
|
211
|
+
enterUseNamespace(ctx) {
|
|
212
|
+
}
|
|
213
|
+
// Exit a parse tree produced by SqlBaseParser#useNamespace.
|
|
214
|
+
exitUseNamespace(ctx) {
|
|
215
|
+
}
|
|
216
|
+
// Enter a parse tree produced by SqlBaseParser#setCatalog.
|
|
217
|
+
enterSetCatalog(ctx) {
|
|
218
|
+
}
|
|
219
|
+
// Exit a parse tree produced by SqlBaseParser#setCatalog.
|
|
220
|
+
exitSetCatalog(ctx) {
|
|
221
|
+
}
|
|
222
|
+
// Enter a parse tree produced by SqlBaseParser#createNamespace.
|
|
223
|
+
enterCreateNamespace(ctx) {
|
|
224
|
+
}
|
|
225
|
+
// Exit a parse tree produced by SqlBaseParser#createNamespace.
|
|
226
|
+
exitCreateNamespace(ctx) {
|
|
227
|
+
}
|
|
228
|
+
// Enter a parse tree produced by SqlBaseParser#setNamespaceProperties.
|
|
229
|
+
enterSetNamespaceProperties(ctx) {
|
|
230
|
+
}
|
|
231
|
+
// Exit a parse tree produced by SqlBaseParser#setNamespaceProperties.
|
|
232
|
+
exitSetNamespaceProperties(ctx) {
|
|
233
|
+
}
|
|
234
|
+
// Enter a parse tree produced by SqlBaseParser#unsetNamespaceProperties.
|
|
235
|
+
enterUnsetNamespaceProperties(ctx) {
|
|
236
|
+
}
|
|
237
|
+
// Exit a parse tree produced by SqlBaseParser#unsetNamespaceProperties.
|
|
238
|
+
exitUnsetNamespaceProperties(ctx) {
|
|
239
|
+
}
|
|
240
|
+
// Enter a parse tree produced by SqlBaseParser#setNamespaceCollation.
|
|
241
|
+
enterSetNamespaceCollation(ctx) {
|
|
242
|
+
}
|
|
243
|
+
// Exit a parse tree produced by SqlBaseParser#setNamespaceCollation.
|
|
244
|
+
exitSetNamespaceCollation(ctx) {
|
|
245
|
+
}
|
|
246
|
+
// Enter a parse tree produced by SqlBaseParser#setNamespaceLocation.
|
|
247
|
+
enterSetNamespaceLocation(ctx) {
|
|
248
|
+
}
|
|
249
|
+
// Exit a parse tree produced by SqlBaseParser#setNamespaceLocation.
|
|
250
|
+
exitSetNamespaceLocation(ctx) {
|
|
251
|
+
}
|
|
252
|
+
// Enter a parse tree produced by SqlBaseParser#dropNamespace.
|
|
253
|
+
enterDropNamespace(ctx) {
|
|
254
|
+
}
|
|
255
|
+
// Exit a parse tree produced by SqlBaseParser#dropNamespace.
|
|
256
|
+
exitDropNamespace(ctx) {
|
|
257
|
+
}
|
|
258
|
+
// Enter a parse tree produced by SqlBaseParser#showNamespaces.
|
|
259
|
+
enterShowNamespaces(ctx) {
|
|
260
|
+
}
|
|
261
|
+
// Exit a parse tree produced by SqlBaseParser#showNamespaces.
|
|
262
|
+
exitShowNamespaces(ctx) {
|
|
263
|
+
}
|
|
264
|
+
// Enter a parse tree produced by SqlBaseParser#createTable.
|
|
265
|
+
enterCreateTable(ctx) {
|
|
266
|
+
}
|
|
267
|
+
// Exit a parse tree produced by SqlBaseParser#createTable.
|
|
268
|
+
exitCreateTable(ctx) {
|
|
269
|
+
}
|
|
270
|
+
// Enter a parse tree produced by SqlBaseParser#createTableLike.
|
|
271
|
+
enterCreateTableLike(ctx) {
|
|
272
|
+
}
|
|
273
|
+
// Exit a parse tree produced by SqlBaseParser#createTableLike.
|
|
274
|
+
exitCreateTableLike(ctx) {
|
|
275
|
+
}
|
|
276
|
+
// Enter a parse tree produced by SqlBaseParser#replaceTable.
|
|
277
|
+
enterReplaceTable(ctx) {
|
|
278
|
+
}
|
|
279
|
+
// Exit a parse tree produced by SqlBaseParser#replaceTable.
|
|
280
|
+
exitReplaceTable(ctx) {
|
|
281
|
+
}
|
|
282
|
+
// Enter a parse tree produced by SqlBaseParser#analyze.
|
|
283
|
+
enterAnalyze(ctx) {
|
|
284
|
+
}
|
|
285
|
+
// Exit a parse tree produced by SqlBaseParser#analyze.
|
|
286
|
+
exitAnalyze(ctx) {
|
|
287
|
+
}
|
|
288
|
+
// Enter a parse tree produced by SqlBaseParser#analyzeTables.
|
|
289
|
+
enterAnalyzeTables(ctx) {
|
|
290
|
+
}
|
|
291
|
+
// Exit a parse tree produced by SqlBaseParser#analyzeTables.
|
|
292
|
+
exitAnalyzeTables(ctx) {
|
|
293
|
+
}
|
|
294
|
+
// Enter a parse tree produced by SqlBaseParser#addTableColumns.
|
|
295
|
+
enterAddTableColumns(ctx) {
|
|
296
|
+
}
|
|
297
|
+
// Exit a parse tree produced by SqlBaseParser#addTableColumns.
|
|
298
|
+
exitAddTableColumns(ctx) {
|
|
299
|
+
}
|
|
300
|
+
// Enter a parse tree produced by SqlBaseParser#renameTableColumn.
|
|
301
|
+
enterRenameTableColumn(ctx) {
|
|
302
|
+
}
|
|
303
|
+
// Exit a parse tree produced by SqlBaseParser#renameTableColumn.
|
|
304
|
+
exitRenameTableColumn(ctx) {
|
|
305
|
+
}
|
|
306
|
+
// Enter a parse tree produced by SqlBaseParser#dropTableColumns.
|
|
307
|
+
enterDropTableColumns(ctx) {
|
|
308
|
+
}
|
|
309
|
+
// Exit a parse tree produced by SqlBaseParser#dropTableColumns.
|
|
310
|
+
exitDropTableColumns(ctx) {
|
|
311
|
+
}
|
|
312
|
+
// Enter a parse tree produced by SqlBaseParser#renameTable.
|
|
313
|
+
enterRenameTable(ctx) {
|
|
314
|
+
}
|
|
315
|
+
// Exit a parse tree produced by SqlBaseParser#renameTable.
|
|
316
|
+
exitRenameTable(ctx) {
|
|
317
|
+
}
|
|
318
|
+
// Enter a parse tree produced by SqlBaseParser#setTableProperties.
|
|
319
|
+
enterSetTableProperties(ctx) {
|
|
320
|
+
}
|
|
321
|
+
// Exit a parse tree produced by SqlBaseParser#setTableProperties.
|
|
322
|
+
exitSetTableProperties(ctx) {
|
|
323
|
+
}
|
|
324
|
+
// Enter a parse tree produced by SqlBaseParser#unsetTableProperties.
|
|
325
|
+
enterUnsetTableProperties(ctx) {
|
|
326
|
+
}
|
|
327
|
+
// Exit a parse tree produced by SqlBaseParser#unsetTableProperties.
|
|
328
|
+
exitUnsetTableProperties(ctx) {
|
|
329
|
+
}
|
|
330
|
+
// Enter a parse tree produced by SqlBaseParser#alterTableAlterColumn.
|
|
331
|
+
enterAlterTableAlterColumn(ctx) {
|
|
332
|
+
}
|
|
333
|
+
// Exit a parse tree produced by SqlBaseParser#alterTableAlterColumn.
|
|
334
|
+
exitAlterTableAlterColumn(ctx) {
|
|
335
|
+
}
|
|
336
|
+
// Enter a parse tree produced by SqlBaseParser#hiveChangeColumn.
|
|
337
|
+
enterHiveChangeColumn(ctx) {
|
|
338
|
+
}
|
|
339
|
+
// Exit a parse tree produced by SqlBaseParser#hiveChangeColumn.
|
|
340
|
+
exitHiveChangeColumn(ctx) {
|
|
341
|
+
}
|
|
342
|
+
// Enter a parse tree produced by SqlBaseParser#hiveReplaceColumns.
|
|
343
|
+
enterHiveReplaceColumns(ctx) {
|
|
344
|
+
}
|
|
345
|
+
// Exit a parse tree produced by SqlBaseParser#hiveReplaceColumns.
|
|
346
|
+
exitHiveReplaceColumns(ctx) {
|
|
347
|
+
}
|
|
348
|
+
// Enter a parse tree produced by SqlBaseParser#setTableSerDe.
|
|
349
|
+
enterSetTableSerDe(ctx) {
|
|
350
|
+
}
|
|
351
|
+
// Exit a parse tree produced by SqlBaseParser#setTableSerDe.
|
|
352
|
+
exitSetTableSerDe(ctx) {
|
|
353
|
+
}
|
|
354
|
+
// Enter a parse tree produced by SqlBaseParser#addTablePartition.
|
|
355
|
+
enterAddTablePartition(ctx) {
|
|
356
|
+
}
|
|
357
|
+
// Exit a parse tree produced by SqlBaseParser#addTablePartition.
|
|
358
|
+
exitAddTablePartition(ctx) {
|
|
359
|
+
}
|
|
360
|
+
// Enter a parse tree produced by SqlBaseParser#renameTablePartition.
|
|
361
|
+
enterRenameTablePartition(ctx) {
|
|
362
|
+
}
|
|
363
|
+
// Exit a parse tree produced by SqlBaseParser#renameTablePartition.
|
|
364
|
+
exitRenameTablePartition(ctx) {
|
|
365
|
+
}
|
|
366
|
+
// Enter a parse tree produced by SqlBaseParser#dropTablePartitions.
|
|
367
|
+
enterDropTablePartitions(ctx) {
|
|
368
|
+
}
|
|
369
|
+
// Exit a parse tree produced by SqlBaseParser#dropTablePartitions.
|
|
370
|
+
exitDropTablePartitions(ctx) {
|
|
371
|
+
}
|
|
372
|
+
// Enter a parse tree produced by SqlBaseParser#setTableLocation.
|
|
373
|
+
enterSetTableLocation(ctx) {
|
|
374
|
+
}
|
|
375
|
+
// Exit a parse tree produced by SqlBaseParser#setTableLocation.
|
|
376
|
+
exitSetTableLocation(ctx) {
|
|
377
|
+
}
|
|
378
|
+
// Enter a parse tree produced by SqlBaseParser#recoverPartitions.
|
|
379
|
+
enterRecoverPartitions(ctx) {
|
|
380
|
+
}
|
|
381
|
+
// Exit a parse tree produced by SqlBaseParser#recoverPartitions.
|
|
382
|
+
exitRecoverPartitions(ctx) {
|
|
383
|
+
}
|
|
384
|
+
// Enter a parse tree produced by SqlBaseParser#alterClusterBy.
|
|
385
|
+
enterAlterClusterBy(ctx) {
|
|
386
|
+
}
|
|
387
|
+
// Exit a parse tree produced by SqlBaseParser#alterClusterBy.
|
|
388
|
+
exitAlterClusterBy(ctx) {
|
|
389
|
+
}
|
|
390
|
+
// Enter a parse tree produced by SqlBaseParser#alterTableCollation.
|
|
391
|
+
enterAlterTableCollation(ctx) {
|
|
392
|
+
}
|
|
393
|
+
// Exit a parse tree produced by SqlBaseParser#alterTableCollation.
|
|
394
|
+
exitAlterTableCollation(ctx) {
|
|
395
|
+
}
|
|
396
|
+
// Enter a parse tree produced by SqlBaseParser#addTableConstraint.
|
|
397
|
+
enterAddTableConstraint(ctx) {
|
|
398
|
+
}
|
|
399
|
+
// Exit a parse tree produced by SqlBaseParser#addTableConstraint.
|
|
400
|
+
exitAddTableConstraint(ctx) {
|
|
401
|
+
}
|
|
402
|
+
// Enter a parse tree produced by SqlBaseParser#dropTableConstraint.
|
|
403
|
+
enterDropTableConstraint(ctx) {
|
|
404
|
+
}
|
|
405
|
+
// Exit a parse tree produced by SqlBaseParser#dropTableConstraint.
|
|
406
|
+
exitDropTableConstraint(ctx) {
|
|
407
|
+
}
|
|
408
|
+
// Enter a parse tree produced by SqlBaseParser#dropTable.
|
|
409
|
+
enterDropTable(ctx) {
|
|
410
|
+
}
|
|
411
|
+
// Exit a parse tree produced by SqlBaseParser#dropTable.
|
|
412
|
+
exitDropTable(ctx) {
|
|
413
|
+
}
|
|
414
|
+
// Enter a parse tree produced by SqlBaseParser#dropView.
|
|
415
|
+
enterDropView(ctx) {
|
|
416
|
+
}
|
|
417
|
+
// Exit a parse tree produced by SqlBaseParser#dropView.
|
|
418
|
+
exitDropView(ctx) {
|
|
419
|
+
}
|
|
420
|
+
// Enter a parse tree produced by SqlBaseParser#createView.
|
|
421
|
+
enterCreateView(ctx) {
|
|
422
|
+
}
|
|
423
|
+
// Exit a parse tree produced by SqlBaseParser#createView.
|
|
424
|
+
exitCreateView(ctx) {
|
|
425
|
+
}
|
|
426
|
+
// Enter a parse tree produced by SqlBaseParser#createMetricView.
|
|
427
|
+
enterCreateMetricView(ctx) {
|
|
428
|
+
}
|
|
429
|
+
// Exit a parse tree produced by SqlBaseParser#createMetricView.
|
|
430
|
+
exitCreateMetricView(ctx) {
|
|
431
|
+
}
|
|
432
|
+
// Enter a parse tree produced by SqlBaseParser#createTempViewUsing.
|
|
433
|
+
enterCreateTempViewUsing(ctx) {
|
|
434
|
+
}
|
|
435
|
+
// Exit a parse tree produced by SqlBaseParser#createTempViewUsing.
|
|
436
|
+
exitCreateTempViewUsing(ctx) {
|
|
437
|
+
}
|
|
438
|
+
// Enter a parse tree produced by SqlBaseParser#alterViewQuery.
|
|
439
|
+
enterAlterViewQuery(ctx) {
|
|
440
|
+
}
|
|
441
|
+
// Exit a parse tree produced by SqlBaseParser#alterViewQuery.
|
|
442
|
+
exitAlterViewQuery(ctx) {
|
|
443
|
+
}
|
|
444
|
+
// Enter a parse tree produced by SqlBaseParser#alterViewSchemaBinding.
|
|
445
|
+
enterAlterViewSchemaBinding(ctx) {
|
|
446
|
+
}
|
|
447
|
+
// Exit a parse tree produced by SqlBaseParser#alterViewSchemaBinding.
|
|
448
|
+
exitAlterViewSchemaBinding(ctx) {
|
|
449
|
+
}
|
|
450
|
+
// Enter a parse tree produced by SqlBaseParser#createFunction.
|
|
451
|
+
enterCreateFunction(ctx) {
|
|
452
|
+
}
|
|
453
|
+
// Exit a parse tree produced by SqlBaseParser#createFunction.
|
|
454
|
+
exitCreateFunction(ctx) {
|
|
455
|
+
}
|
|
456
|
+
// Enter a parse tree produced by SqlBaseParser#createUserDefinedFunction.
|
|
457
|
+
enterCreateUserDefinedFunction(ctx) {
|
|
458
|
+
}
|
|
459
|
+
// Exit a parse tree produced by SqlBaseParser#createUserDefinedFunction.
|
|
460
|
+
exitCreateUserDefinedFunction(ctx) {
|
|
461
|
+
}
|
|
462
|
+
// Enter a parse tree produced by SqlBaseParser#dropFunction.
|
|
463
|
+
enterDropFunction(ctx) {
|
|
464
|
+
}
|
|
465
|
+
// Exit a parse tree produced by SqlBaseParser#dropFunction.
|
|
466
|
+
exitDropFunction(ctx) {
|
|
467
|
+
}
|
|
468
|
+
// Enter a parse tree produced by SqlBaseParser#createVariable.
|
|
469
|
+
enterCreateVariable(ctx) {
|
|
470
|
+
}
|
|
471
|
+
// Exit a parse tree produced by SqlBaseParser#createVariable.
|
|
472
|
+
exitCreateVariable(ctx) {
|
|
473
|
+
}
|
|
474
|
+
// Enter a parse tree produced by SqlBaseParser#dropVariable.
|
|
475
|
+
enterDropVariable(ctx) {
|
|
476
|
+
}
|
|
477
|
+
// Exit a parse tree produced by SqlBaseParser#dropVariable.
|
|
478
|
+
exitDropVariable(ctx) {
|
|
479
|
+
}
|
|
480
|
+
// Enter a parse tree produced by SqlBaseParser#explain.
|
|
481
|
+
enterExplain(ctx) {
|
|
482
|
+
}
|
|
483
|
+
// Exit a parse tree produced by SqlBaseParser#explain.
|
|
484
|
+
exitExplain(ctx) {
|
|
485
|
+
}
|
|
486
|
+
// Enter a parse tree produced by SqlBaseParser#showTables.
|
|
487
|
+
enterShowTables(ctx) {
|
|
488
|
+
}
|
|
489
|
+
// Exit a parse tree produced by SqlBaseParser#showTables.
|
|
490
|
+
exitShowTables(ctx) {
|
|
491
|
+
}
|
|
492
|
+
// Enter a parse tree produced by SqlBaseParser#showTableExtended.
|
|
493
|
+
enterShowTableExtended(ctx) {
|
|
494
|
+
}
|
|
495
|
+
// Exit a parse tree produced by SqlBaseParser#showTableExtended.
|
|
496
|
+
exitShowTableExtended(ctx) {
|
|
497
|
+
}
|
|
498
|
+
// Enter a parse tree produced by SqlBaseParser#showTblProperties.
|
|
499
|
+
enterShowTblProperties(ctx) {
|
|
500
|
+
}
|
|
501
|
+
// Exit a parse tree produced by SqlBaseParser#showTblProperties.
|
|
502
|
+
exitShowTblProperties(ctx) {
|
|
503
|
+
}
|
|
504
|
+
// Enter a parse tree produced by SqlBaseParser#showColumns.
|
|
505
|
+
enterShowColumns(ctx) {
|
|
506
|
+
}
|
|
507
|
+
// Exit a parse tree produced by SqlBaseParser#showColumns.
|
|
508
|
+
exitShowColumns(ctx) {
|
|
509
|
+
}
|
|
510
|
+
// Enter a parse tree produced by SqlBaseParser#showViews.
|
|
511
|
+
enterShowViews(ctx) {
|
|
512
|
+
}
|
|
513
|
+
// Exit a parse tree produced by SqlBaseParser#showViews.
|
|
514
|
+
exitShowViews(ctx) {
|
|
515
|
+
}
|
|
516
|
+
// Enter a parse tree produced by SqlBaseParser#showPartitions.
|
|
517
|
+
enterShowPartitions(ctx) {
|
|
518
|
+
}
|
|
519
|
+
// Exit a parse tree produced by SqlBaseParser#showPartitions.
|
|
520
|
+
exitShowPartitions(ctx) {
|
|
521
|
+
}
|
|
522
|
+
// Enter a parse tree produced by SqlBaseParser#showFunctions.
|
|
523
|
+
enterShowFunctions(ctx) {
|
|
524
|
+
}
|
|
525
|
+
// Exit a parse tree produced by SqlBaseParser#showFunctions.
|
|
526
|
+
exitShowFunctions(ctx) {
|
|
527
|
+
}
|
|
528
|
+
// Enter a parse tree produced by SqlBaseParser#showProcedures.
|
|
529
|
+
enterShowProcedures(ctx) {
|
|
530
|
+
}
|
|
531
|
+
// Exit a parse tree produced by SqlBaseParser#showProcedures.
|
|
532
|
+
exitShowProcedures(ctx) {
|
|
533
|
+
}
|
|
534
|
+
// Enter a parse tree produced by SqlBaseParser#showCreateTable.
|
|
535
|
+
enterShowCreateTable(ctx) {
|
|
536
|
+
}
|
|
537
|
+
// Exit a parse tree produced by SqlBaseParser#showCreateTable.
|
|
538
|
+
exitShowCreateTable(ctx) {
|
|
539
|
+
}
|
|
540
|
+
// Enter a parse tree produced by SqlBaseParser#showCurrentNamespace.
|
|
541
|
+
enterShowCurrentNamespace(ctx) {
|
|
542
|
+
}
|
|
543
|
+
// Exit a parse tree produced by SqlBaseParser#showCurrentNamespace.
|
|
544
|
+
exitShowCurrentNamespace(ctx) {
|
|
545
|
+
}
|
|
546
|
+
// Enter a parse tree produced by SqlBaseParser#showCatalogs.
|
|
547
|
+
enterShowCatalogs(ctx) {
|
|
548
|
+
}
|
|
549
|
+
// Exit a parse tree produced by SqlBaseParser#showCatalogs.
|
|
550
|
+
exitShowCatalogs(ctx) {
|
|
551
|
+
}
|
|
552
|
+
// Enter a parse tree produced by SqlBaseParser#describeFunction.
|
|
553
|
+
enterDescribeFunction(ctx) {
|
|
554
|
+
}
|
|
555
|
+
// Exit a parse tree produced by SqlBaseParser#describeFunction.
|
|
556
|
+
exitDescribeFunction(ctx) {
|
|
557
|
+
}
|
|
558
|
+
// Enter a parse tree produced by SqlBaseParser#describeProcedure.
|
|
559
|
+
enterDescribeProcedure(ctx) {
|
|
560
|
+
}
|
|
561
|
+
// Exit a parse tree produced by SqlBaseParser#describeProcedure.
|
|
562
|
+
exitDescribeProcedure(ctx) {
|
|
563
|
+
}
|
|
564
|
+
// Enter a parse tree produced by SqlBaseParser#describeNamespace.
|
|
565
|
+
enterDescribeNamespace(ctx) {
|
|
566
|
+
}
|
|
567
|
+
// Exit a parse tree produced by SqlBaseParser#describeNamespace.
|
|
568
|
+
exitDescribeNamespace(ctx) {
|
|
569
|
+
}
|
|
570
|
+
// Enter a parse tree produced by SqlBaseParser#describeRelation.
|
|
571
|
+
enterDescribeRelation(ctx) {
|
|
572
|
+
}
|
|
573
|
+
// Exit a parse tree produced by SqlBaseParser#describeRelation.
|
|
574
|
+
exitDescribeRelation(ctx) {
|
|
575
|
+
}
|
|
576
|
+
// Enter a parse tree produced by SqlBaseParser#describeQuery.
|
|
577
|
+
enterDescribeQuery(ctx) {
|
|
578
|
+
}
|
|
579
|
+
// Exit a parse tree produced by SqlBaseParser#describeQuery.
|
|
580
|
+
exitDescribeQuery(ctx) {
|
|
581
|
+
}
|
|
582
|
+
// Enter a parse tree produced by SqlBaseParser#commentNamespace.
|
|
583
|
+
enterCommentNamespace(ctx) {
|
|
584
|
+
}
|
|
585
|
+
// Exit a parse tree produced by SqlBaseParser#commentNamespace.
|
|
586
|
+
exitCommentNamespace(ctx) {
|
|
587
|
+
}
|
|
588
|
+
// Enter a parse tree produced by SqlBaseParser#commentTable.
|
|
589
|
+
enterCommentTable(ctx) {
|
|
590
|
+
}
|
|
591
|
+
// Exit a parse tree produced by SqlBaseParser#commentTable.
|
|
592
|
+
exitCommentTable(ctx) {
|
|
593
|
+
}
|
|
594
|
+
// Enter a parse tree produced by SqlBaseParser#refreshTable.
|
|
595
|
+
enterRefreshTable(ctx) {
|
|
596
|
+
}
|
|
597
|
+
// Exit a parse tree produced by SqlBaseParser#refreshTable.
|
|
598
|
+
exitRefreshTable(ctx) {
|
|
599
|
+
}
|
|
600
|
+
// Enter a parse tree produced by SqlBaseParser#refreshFunction.
|
|
601
|
+
enterRefreshFunction(ctx) {
|
|
602
|
+
}
|
|
603
|
+
// Exit a parse tree produced by SqlBaseParser#refreshFunction.
|
|
604
|
+
exitRefreshFunction(ctx) {
|
|
605
|
+
}
|
|
606
|
+
// Enter a parse tree produced by SqlBaseParser#refreshResource.
|
|
607
|
+
enterRefreshResource(ctx) {
|
|
608
|
+
}
|
|
609
|
+
// Exit a parse tree produced by SqlBaseParser#refreshResource.
|
|
610
|
+
exitRefreshResource(ctx) {
|
|
611
|
+
}
|
|
612
|
+
// Enter a parse tree produced by SqlBaseParser#cacheTable.
|
|
613
|
+
enterCacheTable(ctx) {
|
|
614
|
+
}
|
|
615
|
+
// Exit a parse tree produced by SqlBaseParser#cacheTable.
|
|
616
|
+
exitCacheTable(ctx) {
|
|
617
|
+
}
|
|
618
|
+
// Enter a parse tree produced by SqlBaseParser#uncacheTable.
|
|
619
|
+
enterUncacheTable(ctx) {
|
|
620
|
+
}
|
|
621
|
+
// Exit a parse tree produced by SqlBaseParser#uncacheTable.
|
|
622
|
+
exitUncacheTable(ctx) {
|
|
623
|
+
}
|
|
624
|
+
// Enter a parse tree produced by SqlBaseParser#clearCache.
|
|
625
|
+
enterClearCache(ctx) {
|
|
626
|
+
}
|
|
627
|
+
// Exit a parse tree produced by SqlBaseParser#clearCache.
|
|
628
|
+
exitClearCache(ctx) {
|
|
629
|
+
}
|
|
630
|
+
// Enter a parse tree produced by SqlBaseParser#loadData.
|
|
631
|
+
enterLoadData(ctx) {
|
|
632
|
+
}
|
|
633
|
+
// Exit a parse tree produced by SqlBaseParser#loadData.
|
|
634
|
+
exitLoadData(ctx) {
|
|
635
|
+
}
|
|
636
|
+
// Enter a parse tree produced by SqlBaseParser#truncateTable.
|
|
637
|
+
enterTruncateTable(ctx) {
|
|
638
|
+
}
|
|
639
|
+
// Exit a parse tree produced by SqlBaseParser#truncateTable.
|
|
640
|
+
exitTruncateTable(ctx) {
|
|
641
|
+
}
|
|
642
|
+
// Enter a parse tree produced by SqlBaseParser#repairTable.
|
|
643
|
+
enterRepairTable(ctx) {
|
|
644
|
+
}
|
|
645
|
+
// Exit a parse tree produced by SqlBaseParser#repairTable.
|
|
646
|
+
exitRepairTable(ctx) {
|
|
647
|
+
}
|
|
648
|
+
// Enter a parse tree produced by SqlBaseParser#manageResource.
|
|
649
|
+
enterManageResource(ctx) {
|
|
650
|
+
}
|
|
651
|
+
// Exit a parse tree produced by SqlBaseParser#manageResource.
|
|
652
|
+
exitManageResource(ctx) {
|
|
653
|
+
}
|
|
654
|
+
// Enter a parse tree produced by SqlBaseParser#createIndex.
|
|
655
|
+
enterCreateIndex(ctx) {
|
|
656
|
+
}
|
|
657
|
+
// Exit a parse tree produced by SqlBaseParser#createIndex.
|
|
658
|
+
exitCreateIndex(ctx) {
|
|
659
|
+
}
|
|
660
|
+
// Enter a parse tree produced by SqlBaseParser#dropIndex.
|
|
661
|
+
enterDropIndex(ctx) {
|
|
662
|
+
}
|
|
663
|
+
// Exit a parse tree produced by SqlBaseParser#dropIndex.
|
|
664
|
+
exitDropIndex(ctx) {
|
|
665
|
+
}
|
|
666
|
+
// Enter a parse tree produced by SqlBaseParser#call.
|
|
667
|
+
enterCall(ctx) {
|
|
668
|
+
}
|
|
669
|
+
// Exit a parse tree produced by SqlBaseParser#call.
|
|
670
|
+
exitCall(ctx) {
|
|
671
|
+
}
|
|
672
|
+
// Enter a parse tree produced by SqlBaseParser#failNativeCommand.
|
|
673
|
+
enterFailNativeCommand(ctx) {
|
|
674
|
+
}
|
|
675
|
+
// Exit a parse tree produced by SqlBaseParser#failNativeCommand.
|
|
676
|
+
exitFailNativeCommand(ctx) {
|
|
677
|
+
}
|
|
678
|
+
// Enter a parse tree produced by SqlBaseParser#createPipelineDataset.
|
|
679
|
+
enterCreatePipelineDataset(ctx) {
|
|
680
|
+
}
|
|
681
|
+
// Exit a parse tree produced by SqlBaseParser#createPipelineDataset.
|
|
682
|
+
exitCreatePipelineDataset(ctx) {
|
|
683
|
+
}
|
|
684
|
+
// Enter a parse tree produced by SqlBaseParser#createPipelineInsertIntoFlow.
|
|
685
|
+
enterCreatePipelineInsertIntoFlow(ctx) {
|
|
686
|
+
}
|
|
687
|
+
// Exit a parse tree produced by SqlBaseParser#createPipelineInsertIntoFlow.
|
|
688
|
+
exitCreatePipelineInsertIntoFlow(ctx) {
|
|
689
|
+
}
|
|
690
|
+
// Enter a parse tree produced by SqlBaseParser#materializedView.
|
|
691
|
+
enterMaterializedView(ctx) {
|
|
692
|
+
}
|
|
693
|
+
// Exit a parse tree produced by SqlBaseParser#materializedView.
|
|
694
|
+
exitMaterializedView(ctx) {
|
|
695
|
+
}
|
|
696
|
+
// Enter a parse tree produced by SqlBaseParser#streamingTable.
|
|
697
|
+
enterStreamingTable(ctx) {
|
|
698
|
+
}
|
|
699
|
+
// Exit a parse tree produced by SqlBaseParser#streamingTable.
|
|
700
|
+
exitStreamingTable(ctx) {
|
|
701
|
+
}
|
|
702
|
+
// Enter a parse tree produced by SqlBaseParser#createPipelineDatasetHeader.
|
|
703
|
+
enterCreatePipelineDatasetHeader(ctx) {
|
|
704
|
+
}
|
|
705
|
+
// Exit a parse tree produced by SqlBaseParser#createPipelineDatasetHeader.
|
|
706
|
+
exitCreatePipelineDatasetHeader(ctx) {
|
|
707
|
+
}
|
|
708
|
+
// Enter a parse tree produced by SqlBaseParser#streamTableName.
|
|
709
|
+
enterStreamTableName(ctx) {
|
|
710
|
+
}
|
|
711
|
+
// Exit a parse tree produced by SqlBaseParser#streamTableName.
|
|
712
|
+
exitStreamTableName(ctx) {
|
|
713
|
+
}
|
|
714
|
+
// Enter a parse tree produced by SqlBaseParser#failSetRole.
|
|
715
|
+
enterFailSetRole(ctx) {
|
|
716
|
+
}
|
|
717
|
+
// Exit a parse tree produced by SqlBaseParser#failSetRole.
|
|
718
|
+
exitFailSetRole(ctx) {
|
|
719
|
+
}
|
|
720
|
+
// Enter a parse tree produced by SqlBaseParser#setTimeZone.
|
|
721
|
+
enterSetTimeZone(ctx) {
|
|
722
|
+
}
|
|
723
|
+
// Exit a parse tree produced by SqlBaseParser#setTimeZone.
|
|
724
|
+
exitSetTimeZone(ctx) {
|
|
725
|
+
}
|
|
726
|
+
// Enter a parse tree produced by SqlBaseParser#setVariable.
|
|
727
|
+
enterSetVariable(ctx) {
|
|
728
|
+
}
|
|
729
|
+
// Exit a parse tree produced by SqlBaseParser#setVariable.
|
|
730
|
+
exitSetVariable(ctx) {
|
|
731
|
+
}
|
|
732
|
+
// Enter a parse tree produced by SqlBaseParser#setQuotedConfiguration.
|
|
733
|
+
enterSetQuotedConfiguration(ctx) {
|
|
734
|
+
}
|
|
735
|
+
// Exit a parse tree produced by SqlBaseParser#setQuotedConfiguration.
|
|
736
|
+
exitSetQuotedConfiguration(ctx) {
|
|
737
|
+
}
|
|
738
|
+
// Enter a parse tree produced by SqlBaseParser#setConfiguration.
|
|
739
|
+
enterSetConfiguration(ctx) {
|
|
740
|
+
}
|
|
741
|
+
// Exit a parse tree produced by SqlBaseParser#setConfiguration.
|
|
742
|
+
exitSetConfiguration(ctx) {
|
|
743
|
+
}
|
|
744
|
+
// Enter a parse tree produced by SqlBaseParser#resetQuotedConfiguration.
|
|
745
|
+
enterResetQuotedConfiguration(ctx) {
|
|
746
|
+
}
|
|
747
|
+
// Exit a parse tree produced by SqlBaseParser#resetQuotedConfiguration.
|
|
748
|
+
exitResetQuotedConfiguration(ctx) {
|
|
749
|
+
}
|
|
750
|
+
// Enter a parse tree produced by SqlBaseParser#resetConfiguration.
|
|
751
|
+
enterResetConfiguration(ctx) {
|
|
752
|
+
}
|
|
753
|
+
// Exit a parse tree produced by SqlBaseParser#resetConfiguration.
|
|
754
|
+
exitResetConfiguration(ctx) {
|
|
755
|
+
}
|
|
756
|
+
// Enter a parse tree produced by SqlBaseParser#executeImmediate.
|
|
757
|
+
enterExecuteImmediate(ctx) {
|
|
758
|
+
}
|
|
759
|
+
// Exit a parse tree produced by SqlBaseParser#executeImmediate.
|
|
760
|
+
exitExecuteImmediate(ctx) {
|
|
761
|
+
}
|
|
762
|
+
// Enter a parse tree produced by SqlBaseParser#executeImmediateUsing.
|
|
763
|
+
enterExecuteImmediateUsing(ctx) {
|
|
764
|
+
}
|
|
765
|
+
// Exit a parse tree produced by SqlBaseParser#executeImmediateUsing.
|
|
766
|
+
exitExecuteImmediateUsing(ctx) {
|
|
767
|
+
}
|
|
768
|
+
// Enter a parse tree produced by SqlBaseParser#timezone.
|
|
769
|
+
enterTimezone(ctx) {
|
|
770
|
+
}
|
|
771
|
+
// Exit a parse tree produced by SqlBaseParser#timezone.
|
|
772
|
+
exitTimezone(ctx) {
|
|
773
|
+
}
|
|
774
|
+
// Enter a parse tree produced by SqlBaseParser#configKey.
|
|
775
|
+
enterConfigKey(ctx) {
|
|
776
|
+
}
|
|
777
|
+
// Exit a parse tree produced by SqlBaseParser#configKey.
|
|
778
|
+
exitConfigKey(ctx) {
|
|
779
|
+
}
|
|
780
|
+
// Enter a parse tree produced by SqlBaseParser#configValue.
|
|
781
|
+
enterConfigValue(ctx) {
|
|
782
|
+
}
|
|
783
|
+
// Exit a parse tree produced by SqlBaseParser#configValue.
|
|
784
|
+
exitConfigValue(ctx) {
|
|
785
|
+
}
|
|
786
|
+
// Enter a parse tree produced by SqlBaseParser#unsupportedHiveNativeCommands.
|
|
787
|
+
enterUnsupportedHiveNativeCommands(ctx) {
|
|
788
|
+
}
|
|
789
|
+
// Exit a parse tree produced by SqlBaseParser#unsupportedHiveNativeCommands.
|
|
790
|
+
exitUnsupportedHiveNativeCommands(ctx) {
|
|
791
|
+
}
|
|
792
|
+
// Enter a parse tree produced by SqlBaseParser#createTableHeader.
|
|
793
|
+
enterCreateTableHeader(ctx) {
|
|
794
|
+
}
|
|
795
|
+
// Exit a parse tree produced by SqlBaseParser#createTableHeader.
|
|
796
|
+
exitCreateTableHeader(ctx) {
|
|
797
|
+
}
|
|
798
|
+
// Enter a parse tree produced by SqlBaseParser#replaceTableHeader.
|
|
799
|
+
enterReplaceTableHeader(ctx) {
|
|
800
|
+
}
|
|
801
|
+
// Exit a parse tree produced by SqlBaseParser#replaceTableHeader.
|
|
802
|
+
exitReplaceTableHeader(ctx) {
|
|
803
|
+
}
|
|
804
|
+
// Enter a parse tree produced by SqlBaseParser#clusterBySpec.
|
|
805
|
+
enterClusterBySpec(ctx) {
|
|
806
|
+
}
|
|
807
|
+
// Exit a parse tree produced by SqlBaseParser#clusterBySpec.
|
|
808
|
+
exitClusterBySpec(ctx) {
|
|
809
|
+
}
|
|
810
|
+
// Enter a parse tree produced by SqlBaseParser#bucketSpec.
|
|
811
|
+
enterBucketSpec(ctx) {
|
|
812
|
+
}
|
|
813
|
+
// Exit a parse tree produced by SqlBaseParser#bucketSpec.
|
|
814
|
+
exitBucketSpec(ctx) {
|
|
815
|
+
}
|
|
816
|
+
// Enter a parse tree produced by SqlBaseParser#skewSpec.
|
|
817
|
+
enterSkewSpec(ctx) {
|
|
818
|
+
}
|
|
819
|
+
// Exit a parse tree produced by SqlBaseParser#skewSpec.
|
|
820
|
+
exitSkewSpec(ctx) {
|
|
821
|
+
}
|
|
822
|
+
// Enter a parse tree produced by SqlBaseParser#locationSpec.
|
|
823
|
+
enterLocationSpec(ctx) {
|
|
824
|
+
}
|
|
825
|
+
// Exit a parse tree produced by SqlBaseParser#locationSpec.
|
|
826
|
+
exitLocationSpec(ctx) {
|
|
827
|
+
}
|
|
828
|
+
// Enter a parse tree produced by SqlBaseParser#schemaBinding.
|
|
829
|
+
enterSchemaBinding(ctx) {
|
|
830
|
+
}
|
|
831
|
+
// Exit a parse tree produced by SqlBaseParser#schemaBinding.
|
|
832
|
+
exitSchemaBinding(ctx) {
|
|
833
|
+
}
|
|
834
|
+
// Enter a parse tree produced by SqlBaseParser#commentSpec.
|
|
835
|
+
enterCommentSpec(ctx) {
|
|
836
|
+
}
|
|
837
|
+
// Exit a parse tree produced by SqlBaseParser#commentSpec.
|
|
838
|
+
exitCommentSpec(ctx) {
|
|
839
|
+
}
|
|
840
|
+
// Enter a parse tree produced by SqlBaseParser#singleQuery.
|
|
841
|
+
enterSingleQuery(ctx) {
|
|
842
|
+
}
|
|
843
|
+
// Exit a parse tree produced by SqlBaseParser#singleQuery.
|
|
844
|
+
exitSingleQuery(ctx) {
|
|
845
|
+
}
|
|
846
|
+
// Enter a parse tree produced by SqlBaseParser#query.
|
|
847
|
+
enterQuery(ctx) {
|
|
848
|
+
}
|
|
849
|
+
// Exit a parse tree produced by SqlBaseParser#query.
|
|
850
|
+
exitQuery(ctx) {
|
|
851
|
+
}
|
|
852
|
+
// Enter a parse tree produced by SqlBaseParser#insertOverwriteTable.
|
|
853
|
+
enterInsertOverwriteTable(ctx) {
|
|
854
|
+
}
|
|
855
|
+
// Exit a parse tree produced by SqlBaseParser#insertOverwriteTable.
|
|
856
|
+
exitInsertOverwriteTable(ctx) {
|
|
857
|
+
}
|
|
858
|
+
// Enter a parse tree produced by SqlBaseParser#insertIntoTable.
|
|
859
|
+
enterInsertIntoTable(ctx) {
|
|
860
|
+
}
|
|
861
|
+
// Exit a parse tree produced by SqlBaseParser#insertIntoTable.
|
|
862
|
+
exitInsertIntoTable(ctx) {
|
|
863
|
+
}
|
|
864
|
+
// Enter a parse tree produced by SqlBaseParser#insertIntoReplaceWhere.
|
|
865
|
+
enterInsertIntoReplaceWhere(ctx) {
|
|
866
|
+
}
|
|
867
|
+
// Exit a parse tree produced by SqlBaseParser#insertIntoReplaceWhere.
|
|
868
|
+
exitInsertIntoReplaceWhere(ctx) {
|
|
869
|
+
}
|
|
870
|
+
// Enter a parse tree produced by SqlBaseParser#insertOverwriteHiveDir.
|
|
871
|
+
enterInsertOverwriteHiveDir(ctx) {
|
|
872
|
+
}
|
|
873
|
+
// Exit a parse tree produced by SqlBaseParser#insertOverwriteHiveDir.
|
|
874
|
+
exitInsertOverwriteHiveDir(ctx) {
|
|
875
|
+
}
|
|
876
|
+
// Enter a parse tree produced by SqlBaseParser#insertOverwriteDir.
|
|
877
|
+
enterInsertOverwriteDir(ctx) {
|
|
878
|
+
}
|
|
879
|
+
// Exit a parse tree produced by SqlBaseParser#insertOverwriteDir.
|
|
880
|
+
exitInsertOverwriteDir(ctx) {
|
|
881
|
+
}
|
|
882
|
+
// Enter a parse tree produced by SqlBaseParser#partitionSpecLocation.
|
|
883
|
+
enterPartitionSpecLocation(ctx) {
|
|
884
|
+
}
|
|
885
|
+
// Exit a parse tree produced by SqlBaseParser#partitionSpecLocation.
|
|
886
|
+
exitPartitionSpecLocation(ctx) {
|
|
887
|
+
}
|
|
888
|
+
// Enter a parse tree produced by SqlBaseParser#partitionSpec.
|
|
889
|
+
enterPartitionSpec(ctx) {
|
|
890
|
+
}
|
|
891
|
+
// Exit a parse tree produced by SqlBaseParser#partitionSpec.
|
|
892
|
+
exitPartitionSpec(ctx) {
|
|
893
|
+
}
|
|
894
|
+
// Enter a parse tree produced by SqlBaseParser#partitionVal.
|
|
895
|
+
enterPartitionVal(ctx) {
|
|
896
|
+
}
|
|
897
|
+
// Exit a parse tree produced by SqlBaseParser#partitionVal.
|
|
898
|
+
exitPartitionVal(ctx) {
|
|
899
|
+
}
|
|
900
|
+
// Enter a parse tree produced by SqlBaseParser#createPipelineFlowHeader.
|
|
901
|
+
enterCreatePipelineFlowHeader(ctx) {
|
|
902
|
+
}
|
|
903
|
+
// Exit a parse tree produced by SqlBaseParser#createPipelineFlowHeader.
|
|
904
|
+
exitCreatePipelineFlowHeader(ctx) {
|
|
905
|
+
}
|
|
906
|
+
// Enter a parse tree produced by SqlBaseParser#namespace.
|
|
907
|
+
enterNamespace(ctx) {
|
|
908
|
+
}
|
|
909
|
+
// Exit a parse tree produced by SqlBaseParser#namespace.
|
|
910
|
+
exitNamespace(ctx) {
|
|
911
|
+
}
|
|
912
|
+
// Enter a parse tree produced by SqlBaseParser#namespaces.
|
|
913
|
+
enterNamespaces(ctx) {
|
|
914
|
+
}
|
|
915
|
+
// Exit a parse tree produced by SqlBaseParser#namespaces.
|
|
916
|
+
exitNamespaces(ctx) {
|
|
917
|
+
}
|
|
918
|
+
// Enter a parse tree produced by SqlBaseParser#variable.
|
|
919
|
+
enterVariable(ctx) {
|
|
920
|
+
}
|
|
921
|
+
// Exit a parse tree produced by SqlBaseParser#variable.
|
|
922
|
+
exitVariable(ctx) {
|
|
923
|
+
}
|
|
924
|
+
// Enter a parse tree produced by SqlBaseParser#describeFuncName.
|
|
925
|
+
enterDescribeFuncName(ctx) {
|
|
926
|
+
}
|
|
927
|
+
// Exit a parse tree produced by SqlBaseParser#describeFuncName.
|
|
928
|
+
exitDescribeFuncName(ctx) {
|
|
929
|
+
}
|
|
930
|
+
// Enter a parse tree produced by SqlBaseParser#describeColName.
|
|
931
|
+
enterDescribeColName(ctx) {
|
|
932
|
+
}
|
|
933
|
+
// Exit a parse tree produced by SqlBaseParser#describeColName.
|
|
934
|
+
exitDescribeColName(ctx) {
|
|
935
|
+
}
|
|
936
|
+
// Enter a parse tree produced by SqlBaseParser#ctes.
|
|
937
|
+
enterCtes(ctx) {
|
|
938
|
+
}
|
|
939
|
+
// Exit a parse tree produced by SqlBaseParser#ctes.
|
|
940
|
+
exitCtes(ctx) {
|
|
941
|
+
}
|
|
942
|
+
// Enter a parse tree produced by SqlBaseParser#namedQuery.
|
|
943
|
+
enterNamedQuery(ctx) {
|
|
944
|
+
}
|
|
945
|
+
// Exit a parse tree produced by SqlBaseParser#namedQuery.
|
|
946
|
+
exitNamedQuery(ctx) {
|
|
947
|
+
}
|
|
948
|
+
// Enter a parse tree produced by SqlBaseParser#tableProvider.
|
|
949
|
+
enterTableProvider(ctx) {
|
|
950
|
+
}
|
|
951
|
+
// Exit a parse tree produced by SqlBaseParser#tableProvider.
|
|
952
|
+
exitTableProvider(ctx) {
|
|
953
|
+
}
|
|
954
|
+
// Enter a parse tree produced by SqlBaseParser#createTableClauses.
|
|
955
|
+
enterCreateTableClauses(ctx) {
|
|
956
|
+
}
|
|
957
|
+
// Exit a parse tree produced by SqlBaseParser#createTableClauses.
|
|
958
|
+
exitCreateTableClauses(ctx) {
|
|
959
|
+
}
|
|
960
|
+
// Enter a parse tree produced by SqlBaseParser#propertyList.
|
|
961
|
+
enterPropertyList(ctx) {
|
|
962
|
+
}
|
|
963
|
+
// Exit a parse tree produced by SqlBaseParser#propertyList.
|
|
964
|
+
exitPropertyList(ctx) {
|
|
965
|
+
}
|
|
966
|
+
// Enter a parse tree produced by SqlBaseParser#propertyWithKeyAndEquals.
|
|
967
|
+
enterPropertyWithKeyAndEquals(ctx) {
|
|
968
|
+
}
|
|
969
|
+
// Exit a parse tree produced by SqlBaseParser#propertyWithKeyAndEquals.
|
|
970
|
+
exitPropertyWithKeyAndEquals(ctx) {
|
|
971
|
+
}
|
|
972
|
+
// Enter a parse tree produced by SqlBaseParser#propertyWithKeyNoEquals.
|
|
973
|
+
enterPropertyWithKeyNoEquals(ctx) {
|
|
974
|
+
}
|
|
975
|
+
// Exit a parse tree produced by SqlBaseParser#propertyWithKeyNoEquals.
|
|
976
|
+
exitPropertyWithKeyNoEquals(ctx) {
|
|
977
|
+
}
|
|
978
|
+
// Enter a parse tree produced by SqlBaseParser#propertyKey.
|
|
979
|
+
enterPropertyKey(ctx) {
|
|
980
|
+
}
|
|
981
|
+
// Exit a parse tree produced by SqlBaseParser#propertyKey.
|
|
982
|
+
exitPropertyKey(ctx) {
|
|
983
|
+
}
|
|
984
|
+
// Enter a parse tree produced by SqlBaseParser#propertyKeyOrStringLit.
|
|
985
|
+
enterPropertyKeyOrStringLit(ctx) {
|
|
986
|
+
}
|
|
987
|
+
// Exit a parse tree produced by SqlBaseParser#propertyKeyOrStringLit.
|
|
988
|
+
exitPropertyKeyOrStringLit(ctx) {
|
|
989
|
+
}
|
|
990
|
+
// Enter a parse tree produced by SqlBaseParser#propertyKeyOrStringLitNoCoalesce.
|
|
991
|
+
enterPropertyKeyOrStringLitNoCoalesce(ctx) {
|
|
992
|
+
}
|
|
993
|
+
// Exit a parse tree produced by SqlBaseParser#propertyKeyOrStringLitNoCoalesce.
|
|
994
|
+
exitPropertyKeyOrStringLitNoCoalesce(ctx) {
|
|
995
|
+
}
|
|
996
|
+
// Enter a parse tree produced by SqlBaseParser#propertyValue.
|
|
997
|
+
enterPropertyValue(ctx) {
|
|
998
|
+
}
|
|
999
|
+
// Exit a parse tree produced by SqlBaseParser#propertyValue.
|
|
1000
|
+
exitPropertyValue(ctx) {
|
|
1001
|
+
}
|
|
1002
|
+
// Enter a parse tree produced by SqlBaseParser#expressionPropertyList.
|
|
1003
|
+
enterExpressionPropertyList(ctx) {
|
|
1004
|
+
}
|
|
1005
|
+
// Exit a parse tree produced by SqlBaseParser#expressionPropertyList.
|
|
1006
|
+
exitExpressionPropertyList(ctx) {
|
|
1007
|
+
}
|
|
1008
|
+
// Enter a parse tree produced by SqlBaseParser#expressionPropertyWithKeyAndEquals.
|
|
1009
|
+
enterExpressionPropertyWithKeyAndEquals(ctx) {
|
|
1010
|
+
}
|
|
1011
|
+
// Exit a parse tree produced by SqlBaseParser#expressionPropertyWithKeyAndEquals.
|
|
1012
|
+
exitExpressionPropertyWithKeyAndEquals(ctx) {
|
|
1013
|
+
}
|
|
1014
|
+
// Enter a parse tree produced by SqlBaseParser#expressionPropertyWithKeyNoEquals.
|
|
1015
|
+
enterExpressionPropertyWithKeyNoEquals(ctx) {
|
|
1016
|
+
}
|
|
1017
|
+
// Exit a parse tree produced by SqlBaseParser#expressionPropertyWithKeyNoEquals.
|
|
1018
|
+
exitExpressionPropertyWithKeyNoEquals(ctx) {
|
|
1019
|
+
}
|
|
1020
|
+
// Enter a parse tree produced by SqlBaseParser#constantList.
|
|
1021
|
+
enterConstantList(ctx) {
|
|
1022
|
+
}
|
|
1023
|
+
// Exit a parse tree produced by SqlBaseParser#constantList.
|
|
1024
|
+
exitConstantList(ctx) {
|
|
1025
|
+
}
|
|
1026
|
+
// Enter a parse tree produced by SqlBaseParser#nestedConstantList.
|
|
1027
|
+
enterNestedConstantList(ctx) {
|
|
1028
|
+
}
|
|
1029
|
+
// Exit a parse tree produced by SqlBaseParser#nestedConstantList.
|
|
1030
|
+
exitNestedConstantList(ctx) {
|
|
1031
|
+
}
|
|
1032
|
+
// Enter a parse tree produced by SqlBaseParser#createFileFormat.
|
|
1033
|
+
enterCreateFileFormat(ctx) {
|
|
1034
|
+
}
|
|
1035
|
+
// Exit a parse tree produced by SqlBaseParser#createFileFormat.
|
|
1036
|
+
exitCreateFileFormat(ctx) {
|
|
1037
|
+
}
|
|
1038
|
+
// Enter a parse tree produced by SqlBaseParser#tableFileFormat.
|
|
1039
|
+
enterTableFileFormat(ctx) {
|
|
1040
|
+
}
|
|
1041
|
+
// Exit a parse tree produced by SqlBaseParser#tableFileFormat.
|
|
1042
|
+
exitTableFileFormat(ctx) {
|
|
1043
|
+
}
|
|
1044
|
+
// Enter a parse tree produced by SqlBaseParser#genericFileFormat.
|
|
1045
|
+
enterGenericFileFormat(ctx) {
|
|
1046
|
+
}
|
|
1047
|
+
// Exit a parse tree produced by SqlBaseParser#genericFileFormat.
|
|
1048
|
+
exitGenericFileFormat(ctx) {
|
|
1049
|
+
}
|
|
1050
|
+
// Enter a parse tree produced by SqlBaseParser#storageHandler.
|
|
1051
|
+
enterStorageHandler(ctx) {
|
|
1052
|
+
}
|
|
1053
|
+
// Exit a parse tree produced by SqlBaseParser#storageHandler.
|
|
1054
|
+
exitStorageHandler(ctx) {
|
|
1055
|
+
}
|
|
1056
|
+
// Enter a parse tree produced by SqlBaseParser#resource.
|
|
1057
|
+
enterResource(ctx) {
|
|
1058
|
+
}
|
|
1059
|
+
// Exit a parse tree produced by SqlBaseParser#resource.
|
|
1060
|
+
exitResource(ctx) {
|
|
1061
|
+
}
|
|
1062
|
+
// Enter a parse tree produced by SqlBaseParser#singleInsertQuery.
|
|
1063
|
+
enterSingleInsertQuery(ctx) {
|
|
1064
|
+
}
|
|
1065
|
+
// Exit a parse tree produced by SqlBaseParser#singleInsertQuery.
|
|
1066
|
+
exitSingleInsertQuery(ctx) {
|
|
1067
|
+
}
|
|
1068
|
+
// Enter a parse tree produced by SqlBaseParser#multiInsertQuery.
|
|
1069
|
+
enterMultiInsertQuery(ctx) {
|
|
1070
|
+
}
|
|
1071
|
+
// Exit a parse tree produced by SqlBaseParser#multiInsertQuery.
|
|
1072
|
+
exitMultiInsertQuery(ctx) {
|
|
1073
|
+
}
|
|
1074
|
+
// Enter a parse tree produced by SqlBaseParser#deleteFromTable.
|
|
1075
|
+
enterDeleteFromTable(ctx) {
|
|
1076
|
+
}
|
|
1077
|
+
// Exit a parse tree produced by SqlBaseParser#deleteFromTable.
|
|
1078
|
+
exitDeleteFromTable(ctx) {
|
|
1079
|
+
}
|
|
1080
|
+
// Enter a parse tree produced by SqlBaseParser#updateTable.
|
|
1081
|
+
enterUpdateTable(ctx) {
|
|
1082
|
+
}
|
|
1083
|
+
// Exit a parse tree produced by SqlBaseParser#updateTable.
|
|
1084
|
+
exitUpdateTable(ctx) {
|
|
1085
|
+
}
|
|
1086
|
+
// Enter a parse tree produced by SqlBaseParser#mergeIntoTable.
|
|
1087
|
+
enterMergeIntoTable(ctx) {
|
|
1088
|
+
}
|
|
1089
|
+
// Exit a parse tree produced by SqlBaseParser#mergeIntoTable.
|
|
1090
|
+
exitMergeIntoTable(ctx) {
|
|
1091
|
+
}
|
|
1092
|
+
// Enter a parse tree produced by SqlBaseParser#identifierReference.
|
|
1093
|
+
enterIdentifierReference(ctx) {
|
|
1094
|
+
}
|
|
1095
|
+
// Exit a parse tree produced by SqlBaseParser#identifierReference.
|
|
1096
|
+
exitIdentifierReference(ctx) {
|
|
1097
|
+
}
|
|
1098
|
+
// Enter a parse tree produced by SqlBaseParser#catalogIdentifierReference.
|
|
1099
|
+
enterCatalogIdentifierReference(ctx) {
|
|
1100
|
+
}
|
|
1101
|
+
// Exit a parse tree produced by SqlBaseParser#catalogIdentifierReference.
|
|
1102
|
+
exitCatalogIdentifierReference(ctx) {
|
|
1103
|
+
}
|
|
1104
|
+
// Enter a parse tree produced by SqlBaseParser#queryOrganization.
|
|
1105
|
+
enterQueryOrganization(ctx) {
|
|
1106
|
+
}
|
|
1107
|
+
// Exit a parse tree produced by SqlBaseParser#queryOrganization.
|
|
1108
|
+
exitQueryOrganization(ctx) {
|
|
1109
|
+
}
|
|
1110
|
+
// Enter a parse tree produced by SqlBaseParser#multiInsertQueryBody.
|
|
1111
|
+
enterMultiInsertQueryBody(ctx) {
|
|
1112
|
+
}
|
|
1113
|
+
// Exit a parse tree produced by SqlBaseParser#multiInsertQueryBody.
|
|
1114
|
+
exitMultiInsertQueryBody(ctx) {
|
|
1115
|
+
}
|
|
1116
|
+
// Enter a parse tree produced by SqlBaseParser#operatorPipeStatement.
|
|
1117
|
+
enterOperatorPipeStatement(ctx) {
|
|
1118
|
+
}
|
|
1119
|
+
// Exit a parse tree produced by SqlBaseParser#operatorPipeStatement.
|
|
1120
|
+
exitOperatorPipeStatement(ctx) {
|
|
1121
|
+
}
|
|
1122
|
+
// Enter a parse tree produced by SqlBaseParser#queryTermDefault.
|
|
1123
|
+
enterQueryTermDefault(ctx) {
|
|
1124
|
+
}
|
|
1125
|
+
// Exit a parse tree produced by SqlBaseParser#queryTermDefault.
|
|
1126
|
+
exitQueryTermDefault(ctx) {
|
|
1127
|
+
}
|
|
1128
|
+
// Enter a parse tree produced by SqlBaseParser#setOperation.
|
|
1129
|
+
enterSetOperation(ctx) {
|
|
1130
|
+
}
|
|
1131
|
+
// Exit a parse tree produced by SqlBaseParser#setOperation.
|
|
1132
|
+
exitSetOperation(ctx) {
|
|
1133
|
+
}
|
|
1134
|
+
// Enter a parse tree produced by SqlBaseParser#queryPrimaryDefault.
|
|
1135
|
+
enterQueryPrimaryDefault(ctx) {
|
|
1136
|
+
}
|
|
1137
|
+
// Exit a parse tree produced by SqlBaseParser#queryPrimaryDefault.
|
|
1138
|
+
exitQueryPrimaryDefault(ctx) {
|
|
1139
|
+
}
|
|
1140
|
+
// Enter a parse tree produced by SqlBaseParser#fromStmt.
|
|
1141
|
+
enterFromStmt(ctx) {
|
|
1142
|
+
}
|
|
1143
|
+
// Exit a parse tree produced by SqlBaseParser#fromStmt.
|
|
1144
|
+
exitFromStmt(ctx) {
|
|
1145
|
+
}
|
|
1146
|
+
// Enter a parse tree produced by SqlBaseParser#table.
|
|
1147
|
+
enterTable(ctx) {
|
|
1148
|
+
}
|
|
1149
|
+
// Exit a parse tree produced by SqlBaseParser#table.
|
|
1150
|
+
exitTable(ctx) {
|
|
1151
|
+
}
|
|
1152
|
+
// Enter a parse tree produced by SqlBaseParser#inlineTableDefault1.
|
|
1153
|
+
enterInlineTableDefault1(ctx) {
|
|
1154
|
+
}
|
|
1155
|
+
// Exit a parse tree produced by SqlBaseParser#inlineTableDefault1.
|
|
1156
|
+
exitInlineTableDefault1(ctx) {
|
|
1157
|
+
}
|
|
1158
|
+
// Enter a parse tree produced by SqlBaseParser#subquery.
|
|
1159
|
+
enterSubquery(ctx) {
|
|
1160
|
+
}
|
|
1161
|
+
// Exit a parse tree produced by SqlBaseParser#subquery.
|
|
1162
|
+
exitSubquery(ctx) {
|
|
1163
|
+
}
|
|
1164
|
+
// Enter a parse tree produced by SqlBaseParser#sortItem.
|
|
1165
|
+
enterSortItem(ctx) {
|
|
1166
|
+
}
|
|
1167
|
+
// Exit a parse tree produced by SqlBaseParser#sortItem.
|
|
1168
|
+
exitSortItem(ctx) {
|
|
1169
|
+
}
|
|
1170
|
+
// Enter a parse tree produced by SqlBaseParser#fromStatement.
|
|
1171
|
+
enterFromStatement(ctx) {
|
|
1172
|
+
}
|
|
1173
|
+
// Exit a parse tree produced by SqlBaseParser#fromStatement.
|
|
1174
|
+
exitFromStatement(ctx) {
|
|
1175
|
+
}
|
|
1176
|
+
// Enter a parse tree produced by SqlBaseParser#fromStatementBody.
|
|
1177
|
+
enterFromStatementBody(ctx) {
|
|
1178
|
+
}
|
|
1179
|
+
// Exit a parse tree produced by SqlBaseParser#fromStatementBody.
|
|
1180
|
+
exitFromStatementBody(ctx) {
|
|
1181
|
+
}
|
|
1182
|
+
// Enter a parse tree produced by SqlBaseParser#transformQuerySpecification.
|
|
1183
|
+
enterTransformQuerySpecification(ctx) {
|
|
1184
|
+
}
|
|
1185
|
+
// Exit a parse tree produced by SqlBaseParser#transformQuerySpecification.
|
|
1186
|
+
exitTransformQuerySpecification(ctx) {
|
|
1187
|
+
}
|
|
1188
|
+
// Enter a parse tree produced by SqlBaseParser#regularQuerySpecification.
|
|
1189
|
+
enterRegularQuerySpecification(ctx) {
|
|
1190
|
+
}
|
|
1191
|
+
// Exit a parse tree produced by SqlBaseParser#regularQuerySpecification.
|
|
1192
|
+
exitRegularQuerySpecification(ctx) {
|
|
1193
|
+
}
|
|
1194
|
+
// Enter a parse tree produced by SqlBaseParser#transformClause.
|
|
1195
|
+
enterTransformClause(ctx) {
|
|
1196
|
+
}
|
|
1197
|
+
// Exit a parse tree produced by SqlBaseParser#transformClause.
|
|
1198
|
+
exitTransformClause(ctx) {
|
|
1199
|
+
}
|
|
1200
|
+
// Enter a parse tree produced by SqlBaseParser#selectClause.
|
|
1201
|
+
enterSelectClause(ctx) {
|
|
1202
|
+
}
|
|
1203
|
+
// Exit a parse tree produced by SqlBaseParser#selectClause.
|
|
1204
|
+
exitSelectClause(ctx) {
|
|
1205
|
+
}
|
|
1206
|
+
// Enter a parse tree produced by SqlBaseParser#setClause.
|
|
1207
|
+
enterSetClause(ctx) {
|
|
1208
|
+
}
|
|
1209
|
+
// Exit a parse tree produced by SqlBaseParser#setClause.
|
|
1210
|
+
exitSetClause(ctx) {
|
|
1211
|
+
}
|
|
1212
|
+
// Enter a parse tree produced by SqlBaseParser#matchedClause.
|
|
1213
|
+
enterMatchedClause(ctx) {
|
|
1214
|
+
}
|
|
1215
|
+
// Exit a parse tree produced by SqlBaseParser#matchedClause.
|
|
1216
|
+
exitMatchedClause(ctx) {
|
|
1217
|
+
}
|
|
1218
|
+
// Enter a parse tree produced by SqlBaseParser#notMatchedClause.
|
|
1219
|
+
enterNotMatchedClause(ctx) {
|
|
1220
|
+
}
|
|
1221
|
+
// Exit a parse tree produced by SqlBaseParser#notMatchedClause.
|
|
1222
|
+
exitNotMatchedClause(ctx) {
|
|
1223
|
+
}
|
|
1224
|
+
// Enter a parse tree produced by SqlBaseParser#notMatchedBySourceClause.
|
|
1225
|
+
enterNotMatchedBySourceClause(ctx) {
|
|
1226
|
+
}
|
|
1227
|
+
// Exit a parse tree produced by SqlBaseParser#notMatchedBySourceClause.
|
|
1228
|
+
exitNotMatchedBySourceClause(ctx) {
|
|
1229
|
+
}
|
|
1230
|
+
// Enter a parse tree produced by SqlBaseParser#matchedAction.
|
|
1231
|
+
enterMatchedAction(ctx) {
|
|
1232
|
+
}
|
|
1233
|
+
// Exit a parse tree produced by SqlBaseParser#matchedAction.
|
|
1234
|
+
exitMatchedAction(ctx) {
|
|
1235
|
+
}
|
|
1236
|
+
// Enter a parse tree produced by SqlBaseParser#notMatchedAction.
|
|
1237
|
+
enterNotMatchedAction(ctx) {
|
|
1238
|
+
}
|
|
1239
|
+
// Exit a parse tree produced by SqlBaseParser#notMatchedAction.
|
|
1240
|
+
exitNotMatchedAction(ctx) {
|
|
1241
|
+
}
|
|
1242
|
+
// Enter a parse tree produced by SqlBaseParser#notMatchedBySourceAction.
|
|
1243
|
+
enterNotMatchedBySourceAction(ctx) {
|
|
1244
|
+
}
|
|
1245
|
+
// Exit a parse tree produced by SqlBaseParser#notMatchedBySourceAction.
|
|
1246
|
+
exitNotMatchedBySourceAction(ctx) {
|
|
1247
|
+
}
|
|
1248
|
+
// Enter a parse tree produced by SqlBaseParser#exceptClause.
|
|
1249
|
+
enterExceptClause(ctx) {
|
|
1250
|
+
}
|
|
1251
|
+
// Exit a parse tree produced by SqlBaseParser#exceptClause.
|
|
1252
|
+
exitExceptClause(ctx) {
|
|
1253
|
+
}
|
|
1254
|
+
// Enter a parse tree produced by SqlBaseParser#assignmentList.
|
|
1255
|
+
enterAssignmentList(ctx) {
|
|
1256
|
+
}
|
|
1257
|
+
// Exit a parse tree produced by SqlBaseParser#assignmentList.
|
|
1258
|
+
exitAssignmentList(ctx) {
|
|
1259
|
+
}
|
|
1260
|
+
// Enter a parse tree produced by SqlBaseParser#assignment.
|
|
1261
|
+
enterAssignment(ctx) {
|
|
1262
|
+
}
|
|
1263
|
+
// Exit a parse tree produced by SqlBaseParser#assignment.
|
|
1264
|
+
exitAssignment(ctx) {
|
|
1265
|
+
}
|
|
1266
|
+
// Enter a parse tree produced by SqlBaseParser#whereClause.
|
|
1267
|
+
enterWhereClause(ctx) {
|
|
1268
|
+
}
|
|
1269
|
+
// Exit a parse tree produced by SqlBaseParser#whereClause.
|
|
1270
|
+
exitWhereClause(ctx) {
|
|
1271
|
+
}
|
|
1272
|
+
// Enter a parse tree produced by SqlBaseParser#havingClause.
|
|
1273
|
+
enterHavingClause(ctx) {
|
|
1274
|
+
}
|
|
1275
|
+
// Exit a parse tree produced by SqlBaseParser#havingClause.
|
|
1276
|
+
exitHavingClause(ctx) {
|
|
1277
|
+
}
|
|
1278
|
+
// Enter a parse tree produced by SqlBaseParser#hint.
|
|
1279
|
+
enterHint(ctx) {
|
|
1280
|
+
}
|
|
1281
|
+
// Exit a parse tree produced by SqlBaseParser#hint.
|
|
1282
|
+
exitHint(ctx) {
|
|
1283
|
+
}
|
|
1284
|
+
// Enter a parse tree produced by SqlBaseParser#hintStatement.
|
|
1285
|
+
enterHintStatement(ctx) {
|
|
1286
|
+
}
|
|
1287
|
+
// Exit a parse tree produced by SqlBaseParser#hintStatement.
|
|
1288
|
+
exitHintStatement(ctx) {
|
|
1289
|
+
}
|
|
1290
|
+
// Enter a parse tree produced by SqlBaseParser#fromClause.
|
|
1291
|
+
enterFromClause(ctx) {
|
|
1292
|
+
}
|
|
1293
|
+
// Exit a parse tree produced by SqlBaseParser#fromClause.
|
|
1294
|
+
exitFromClause(ctx) {
|
|
1295
|
+
}
|
|
1296
|
+
// Enter a parse tree produced by SqlBaseParser#temporalClause.
|
|
1297
|
+
enterTemporalClause(ctx) {
|
|
1298
|
+
}
|
|
1299
|
+
// Exit a parse tree produced by SqlBaseParser#temporalClause.
|
|
1300
|
+
exitTemporalClause(ctx) {
|
|
1301
|
+
}
|
|
1302
|
+
// Enter a parse tree produced by SqlBaseParser#aggregationClause.
|
|
1303
|
+
enterAggregationClause(ctx) {
|
|
1304
|
+
}
|
|
1305
|
+
// Exit a parse tree produced by SqlBaseParser#aggregationClause.
|
|
1306
|
+
exitAggregationClause(ctx) {
|
|
1307
|
+
}
|
|
1308
|
+
// Enter a parse tree produced by SqlBaseParser#groupByClause.
|
|
1309
|
+
enterGroupByClause(ctx) {
|
|
1310
|
+
}
|
|
1311
|
+
// Exit a parse tree produced by SqlBaseParser#groupByClause.
|
|
1312
|
+
exitGroupByClause(ctx) {
|
|
1313
|
+
}
|
|
1314
|
+
// Enter a parse tree produced by SqlBaseParser#groupingAnalytics.
|
|
1315
|
+
enterGroupingAnalytics(ctx) {
|
|
1316
|
+
}
|
|
1317
|
+
// Exit a parse tree produced by SqlBaseParser#groupingAnalytics.
|
|
1318
|
+
exitGroupingAnalytics(ctx) {
|
|
1319
|
+
}
|
|
1320
|
+
// Enter a parse tree produced by SqlBaseParser#groupingElement.
|
|
1321
|
+
enterGroupingElement(ctx) {
|
|
1322
|
+
}
|
|
1323
|
+
// Exit a parse tree produced by SqlBaseParser#groupingElement.
|
|
1324
|
+
exitGroupingElement(ctx) {
|
|
1325
|
+
}
|
|
1326
|
+
// Enter a parse tree produced by SqlBaseParser#groupingSet.
|
|
1327
|
+
enterGroupingSet(ctx) {
|
|
1328
|
+
}
|
|
1329
|
+
// Exit a parse tree produced by SqlBaseParser#groupingSet.
|
|
1330
|
+
exitGroupingSet(ctx) {
|
|
1331
|
+
}
|
|
1332
|
+
// Enter a parse tree produced by SqlBaseParser#pivotClause.
|
|
1333
|
+
enterPivotClause(ctx) {
|
|
1334
|
+
}
|
|
1335
|
+
// Exit a parse tree produced by SqlBaseParser#pivotClause.
|
|
1336
|
+
exitPivotClause(ctx) {
|
|
1337
|
+
}
|
|
1338
|
+
// Enter a parse tree produced by SqlBaseParser#pivotColumn.
|
|
1339
|
+
enterPivotColumn(ctx) {
|
|
1340
|
+
}
|
|
1341
|
+
// Exit a parse tree produced by SqlBaseParser#pivotColumn.
|
|
1342
|
+
exitPivotColumn(ctx) {
|
|
1343
|
+
}
|
|
1344
|
+
// Enter a parse tree produced by SqlBaseParser#pivotValue.
|
|
1345
|
+
enterPivotValue(ctx) {
|
|
1346
|
+
}
|
|
1347
|
+
// Exit a parse tree produced by SqlBaseParser#pivotValue.
|
|
1348
|
+
exitPivotValue(ctx) {
|
|
1349
|
+
}
|
|
1350
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotClause.
|
|
1351
|
+
enterUnpivotClause(ctx) {
|
|
1352
|
+
}
|
|
1353
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotClause.
|
|
1354
|
+
exitUnpivotClause(ctx) {
|
|
1355
|
+
}
|
|
1356
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotNullClause.
|
|
1357
|
+
enterUnpivotNullClause(ctx) {
|
|
1358
|
+
}
|
|
1359
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotNullClause.
|
|
1360
|
+
exitUnpivotNullClause(ctx) {
|
|
1361
|
+
}
|
|
1362
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotOperator.
|
|
1363
|
+
enterUnpivotOperator(ctx) {
|
|
1364
|
+
}
|
|
1365
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotOperator.
|
|
1366
|
+
exitUnpivotOperator(ctx) {
|
|
1367
|
+
}
|
|
1368
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotSingleValueColumnClause.
|
|
1369
|
+
enterUnpivotSingleValueColumnClause(ctx) {
|
|
1370
|
+
}
|
|
1371
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotSingleValueColumnClause.
|
|
1372
|
+
exitUnpivotSingleValueColumnClause(ctx) {
|
|
1373
|
+
}
|
|
1374
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotMultiValueColumnClause.
|
|
1375
|
+
enterUnpivotMultiValueColumnClause(ctx) {
|
|
1376
|
+
}
|
|
1377
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotMultiValueColumnClause.
|
|
1378
|
+
exitUnpivotMultiValueColumnClause(ctx) {
|
|
1379
|
+
}
|
|
1380
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotColumnSet.
|
|
1381
|
+
enterUnpivotColumnSet(ctx) {
|
|
1382
|
+
}
|
|
1383
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotColumnSet.
|
|
1384
|
+
exitUnpivotColumnSet(ctx) {
|
|
1385
|
+
}
|
|
1386
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotValueColumn.
|
|
1387
|
+
enterUnpivotValueColumn(ctx) {
|
|
1388
|
+
}
|
|
1389
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotValueColumn.
|
|
1390
|
+
exitUnpivotValueColumn(ctx) {
|
|
1391
|
+
}
|
|
1392
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotNameColumn.
|
|
1393
|
+
enterUnpivotNameColumn(ctx) {
|
|
1394
|
+
}
|
|
1395
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotNameColumn.
|
|
1396
|
+
exitUnpivotNameColumn(ctx) {
|
|
1397
|
+
}
|
|
1398
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotColumnAndAlias.
|
|
1399
|
+
enterUnpivotColumnAndAlias(ctx) {
|
|
1400
|
+
}
|
|
1401
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotColumnAndAlias.
|
|
1402
|
+
exitUnpivotColumnAndAlias(ctx) {
|
|
1403
|
+
}
|
|
1404
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotColumn.
|
|
1405
|
+
enterUnpivotColumn(ctx) {
|
|
1406
|
+
}
|
|
1407
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotColumn.
|
|
1408
|
+
exitUnpivotColumn(ctx) {
|
|
1409
|
+
}
|
|
1410
|
+
// Enter a parse tree produced by SqlBaseParser#unpivotAlias.
|
|
1411
|
+
enterUnpivotAlias(ctx) {
|
|
1412
|
+
}
|
|
1413
|
+
// Exit a parse tree produced by SqlBaseParser#unpivotAlias.
|
|
1414
|
+
exitUnpivotAlias(ctx) {
|
|
1415
|
+
}
|
|
1416
|
+
// Enter a parse tree produced by SqlBaseParser#lateralView.
|
|
1417
|
+
enterLateralView(ctx) {
|
|
1418
|
+
}
|
|
1419
|
+
// Exit a parse tree produced by SqlBaseParser#lateralView.
|
|
1420
|
+
exitLateralView(ctx) {
|
|
1421
|
+
}
|
|
1422
|
+
// Enter a parse tree produced by SqlBaseParser#watermarkClause.
|
|
1423
|
+
enterWatermarkClause(ctx) {
|
|
1424
|
+
}
|
|
1425
|
+
// Exit a parse tree produced by SqlBaseParser#watermarkClause.
|
|
1426
|
+
exitWatermarkClause(ctx) {
|
|
1427
|
+
}
|
|
1428
|
+
// Enter a parse tree produced by SqlBaseParser#setQuantifier.
|
|
1429
|
+
enterSetQuantifier(ctx) {
|
|
1430
|
+
}
|
|
1431
|
+
// Exit a parse tree produced by SqlBaseParser#setQuantifier.
|
|
1432
|
+
exitSetQuantifier(ctx) {
|
|
1433
|
+
}
|
|
1434
|
+
// Enter a parse tree produced by SqlBaseParser#relation.
|
|
1435
|
+
enterRelation(ctx) {
|
|
1436
|
+
}
|
|
1437
|
+
// Exit a parse tree produced by SqlBaseParser#relation.
|
|
1438
|
+
exitRelation(ctx) {
|
|
1439
|
+
}
|
|
1440
|
+
// Enter a parse tree produced by SqlBaseParser#relationExtension.
|
|
1441
|
+
enterRelationExtension(ctx) {
|
|
1442
|
+
}
|
|
1443
|
+
// Exit a parse tree produced by SqlBaseParser#relationExtension.
|
|
1444
|
+
exitRelationExtension(ctx) {
|
|
1445
|
+
}
|
|
1446
|
+
// Enter a parse tree produced by SqlBaseParser#joinRelation.
|
|
1447
|
+
enterJoinRelation(ctx) {
|
|
1448
|
+
}
|
|
1449
|
+
// Exit a parse tree produced by SqlBaseParser#joinRelation.
|
|
1450
|
+
exitJoinRelation(ctx) {
|
|
1451
|
+
}
|
|
1452
|
+
// Enter a parse tree produced by SqlBaseParser#joinType.
|
|
1453
|
+
enterJoinType(ctx) {
|
|
1454
|
+
}
|
|
1455
|
+
// Exit a parse tree produced by SqlBaseParser#joinType.
|
|
1456
|
+
exitJoinType(ctx) {
|
|
1457
|
+
}
|
|
1458
|
+
// Enter a parse tree produced by SqlBaseParser#joinCriteria.
|
|
1459
|
+
enterJoinCriteria(ctx) {
|
|
1460
|
+
}
|
|
1461
|
+
// Exit a parse tree produced by SqlBaseParser#joinCriteria.
|
|
1462
|
+
exitJoinCriteria(ctx) {
|
|
1463
|
+
}
|
|
1464
|
+
// Enter a parse tree produced by SqlBaseParser#sample.
|
|
1465
|
+
enterSample(ctx) {
|
|
1466
|
+
}
|
|
1467
|
+
// Exit a parse tree produced by SqlBaseParser#sample.
|
|
1468
|
+
exitSample(ctx) {
|
|
1469
|
+
}
|
|
1470
|
+
// Enter a parse tree produced by SqlBaseParser#sampleByPercentile.
|
|
1471
|
+
enterSampleByPercentile(ctx) {
|
|
1472
|
+
}
|
|
1473
|
+
// Exit a parse tree produced by SqlBaseParser#sampleByPercentile.
|
|
1474
|
+
exitSampleByPercentile(ctx) {
|
|
1475
|
+
}
|
|
1476
|
+
// Enter a parse tree produced by SqlBaseParser#sampleByRows.
|
|
1477
|
+
enterSampleByRows(ctx) {
|
|
1478
|
+
}
|
|
1479
|
+
// Exit a parse tree produced by SqlBaseParser#sampleByRows.
|
|
1480
|
+
exitSampleByRows(ctx) {
|
|
1481
|
+
}
|
|
1482
|
+
// Enter a parse tree produced by SqlBaseParser#sampleByBucket.
|
|
1483
|
+
enterSampleByBucket(ctx) {
|
|
1484
|
+
}
|
|
1485
|
+
// Exit a parse tree produced by SqlBaseParser#sampleByBucket.
|
|
1486
|
+
exitSampleByBucket(ctx) {
|
|
1487
|
+
}
|
|
1488
|
+
// Enter a parse tree produced by SqlBaseParser#sampleByBytes.
|
|
1489
|
+
enterSampleByBytes(ctx) {
|
|
1490
|
+
}
|
|
1491
|
+
// Exit a parse tree produced by SqlBaseParser#sampleByBytes.
|
|
1492
|
+
exitSampleByBytes(ctx) {
|
|
1493
|
+
}
|
|
1494
|
+
// Enter a parse tree produced by SqlBaseParser#identifierList.
|
|
1495
|
+
enterIdentifierList(ctx) {
|
|
1496
|
+
}
|
|
1497
|
+
// Exit a parse tree produced by SqlBaseParser#identifierList.
|
|
1498
|
+
exitIdentifierList(ctx) {
|
|
1499
|
+
}
|
|
1500
|
+
// Enter a parse tree produced by SqlBaseParser#identifierSeq.
|
|
1501
|
+
enterIdentifierSeq(ctx) {
|
|
1502
|
+
}
|
|
1503
|
+
// Exit a parse tree produced by SqlBaseParser#identifierSeq.
|
|
1504
|
+
exitIdentifierSeq(ctx) {
|
|
1505
|
+
}
|
|
1506
|
+
// Enter a parse tree produced by SqlBaseParser#orderedIdentifierList.
|
|
1507
|
+
enterOrderedIdentifierList(ctx) {
|
|
1508
|
+
}
|
|
1509
|
+
// Exit a parse tree produced by SqlBaseParser#orderedIdentifierList.
|
|
1510
|
+
exitOrderedIdentifierList(ctx) {
|
|
1511
|
+
}
|
|
1512
|
+
// Enter a parse tree produced by SqlBaseParser#orderedIdentifier.
|
|
1513
|
+
enterOrderedIdentifier(ctx) {
|
|
1514
|
+
}
|
|
1515
|
+
// Exit a parse tree produced by SqlBaseParser#orderedIdentifier.
|
|
1516
|
+
exitOrderedIdentifier(ctx) {
|
|
1517
|
+
}
|
|
1518
|
+
// Enter a parse tree produced by SqlBaseParser#identifierCommentList.
|
|
1519
|
+
enterIdentifierCommentList(ctx) {
|
|
1520
|
+
}
|
|
1521
|
+
// Exit a parse tree produced by SqlBaseParser#identifierCommentList.
|
|
1522
|
+
exitIdentifierCommentList(ctx) {
|
|
1523
|
+
}
|
|
1524
|
+
// Enter a parse tree produced by SqlBaseParser#identifierComment.
|
|
1525
|
+
enterIdentifierComment(ctx) {
|
|
1526
|
+
}
|
|
1527
|
+
// Exit a parse tree produced by SqlBaseParser#identifierComment.
|
|
1528
|
+
exitIdentifierComment(ctx) {
|
|
1529
|
+
}
|
|
1530
|
+
// Enter a parse tree produced by SqlBaseParser#streamRelation.
|
|
1531
|
+
enterStreamRelation(ctx) {
|
|
1532
|
+
}
|
|
1533
|
+
// Exit a parse tree produced by SqlBaseParser#streamRelation.
|
|
1534
|
+
exitStreamRelation(ctx) {
|
|
1535
|
+
}
|
|
1536
|
+
// Enter a parse tree produced by SqlBaseParser#tableName.
|
|
1537
|
+
enterTableName(ctx) {
|
|
1538
|
+
}
|
|
1539
|
+
// Exit a parse tree produced by SqlBaseParser#tableName.
|
|
1540
|
+
exitTableName(ctx) {
|
|
1541
|
+
}
|
|
1542
|
+
// Enter a parse tree produced by SqlBaseParser#aliasedQuery.
|
|
1543
|
+
enterAliasedQuery(ctx) {
|
|
1544
|
+
}
|
|
1545
|
+
// Exit a parse tree produced by SqlBaseParser#aliasedQuery.
|
|
1546
|
+
exitAliasedQuery(ctx) {
|
|
1547
|
+
}
|
|
1548
|
+
// Enter a parse tree produced by SqlBaseParser#aliasedRelation.
|
|
1549
|
+
enterAliasedRelation(ctx) {
|
|
1550
|
+
}
|
|
1551
|
+
// Exit a parse tree produced by SqlBaseParser#aliasedRelation.
|
|
1552
|
+
exitAliasedRelation(ctx) {
|
|
1553
|
+
}
|
|
1554
|
+
// Enter a parse tree produced by SqlBaseParser#inlineTableDefault2.
|
|
1555
|
+
enterInlineTableDefault2(ctx) {
|
|
1556
|
+
}
|
|
1557
|
+
// Exit a parse tree produced by SqlBaseParser#inlineTableDefault2.
|
|
1558
|
+
exitInlineTableDefault2(ctx) {
|
|
1559
|
+
}
|
|
1560
|
+
// Enter a parse tree produced by SqlBaseParser#tableValuedFunction.
|
|
1561
|
+
enterTableValuedFunction(ctx) {
|
|
1562
|
+
}
|
|
1563
|
+
// Exit a parse tree produced by SqlBaseParser#tableValuedFunction.
|
|
1564
|
+
exitTableValuedFunction(ctx) {
|
|
1565
|
+
}
|
|
1566
|
+
// Enter a parse tree produced by SqlBaseParser#optionsClause.
|
|
1567
|
+
enterOptionsClause(ctx) {
|
|
1568
|
+
}
|
|
1569
|
+
// Exit a parse tree produced by SqlBaseParser#optionsClause.
|
|
1570
|
+
exitOptionsClause(ctx) {
|
|
1571
|
+
}
|
|
1572
|
+
// Enter a parse tree produced by SqlBaseParser#inlineTable.
|
|
1573
|
+
enterInlineTable(ctx) {
|
|
1574
|
+
}
|
|
1575
|
+
// Exit a parse tree produced by SqlBaseParser#inlineTable.
|
|
1576
|
+
exitInlineTable(ctx) {
|
|
1577
|
+
}
|
|
1578
|
+
// Enter a parse tree produced by SqlBaseParser#functionTableSubqueryArgument.
|
|
1579
|
+
enterFunctionTableSubqueryArgument(ctx) {
|
|
1580
|
+
}
|
|
1581
|
+
// Exit a parse tree produced by SqlBaseParser#functionTableSubqueryArgument.
|
|
1582
|
+
exitFunctionTableSubqueryArgument(ctx) {
|
|
1583
|
+
}
|
|
1584
|
+
// Enter a parse tree produced by SqlBaseParser#tableArgumentPartitioning.
|
|
1585
|
+
enterTableArgumentPartitioning(ctx) {
|
|
1586
|
+
}
|
|
1587
|
+
// Exit a parse tree produced by SqlBaseParser#tableArgumentPartitioning.
|
|
1588
|
+
exitTableArgumentPartitioning(ctx) {
|
|
1589
|
+
}
|
|
1590
|
+
// Enter a parse tree produced by SqlBaseParser#functionTableNamedArgumentExpression.
|
|
1591
|
+
enterFunctionTableNamedArgumentExpression(ctx) {
|
|
1592
|
+
}
|
|
1593
|
+
// Exit a parse tree produced by SqlBaseParser#functionTableNamedArgumentExpression.
|
|
1594
|
+
exitFunctionTableNamedArgumentExpression(ctx) {
|
|
1595
|
+
}
|
|
1596
|
+
// Enter a parse tree produced by SqlBaseParser#functionTableReferenceArgument.
|
|
1597
|
+
enterFunctionTableReferenceArgument(ctx) {
|
|
1598
|
+
}
|
|
1599
|
+
// Exit a parse tree produced by SqlBaseParser#functionTableReferenceArgument.
|
|
1600
|
+
exitFunctionTableReferenceArgument(ctx) {
|
|
1601
|
+
}
|
|
1602
|
+
// Enter a parse tree produced by SqlBaseParser#functionTableArgument.
|
|
1603
|
+
enterFunctionTableArgument(ctx) {
|
|
1604
|
+
}
|
|
1605
|
+
// Exit a parse tree produced by SqlBaseParser#functionTableArgument.
|
|
1606
|
+
exitFunctionTableArgument(ctx) {
|
|
1607
|
+
}
|
|
1608
|
+
// Enter a parse tree produced by SqlBaseParser#functionTable.
|
|
1609
|
+
enterFunctionTable(ctx) {
|
|
1610
|
+
}
|
|
1611
|
+
// Exit a parse tree produced by SqlBaseParser#functionTable.
|
|
1612
|
+
exitFunctionTable(ctx) {
|
|
1613
|
+
}
|
|
1614
|
+
// Enter a parse tree produced by SqlBaseParser#tableAlias.
|
|
1615
|
+
enterTableAlias(ctx) {
|
|
1616
|
+
}
|
|
1617
|
+
// Exit a parse tree produced by SqlBaseParser#tableAlias.
|
|
1618
|
+
exitTableAlias(ctx) {
|
|
1619
|
+
}
|
|
1620
|
+
// Enter a parse tree produced by SqlBaseParser#rowFormatSerde.
|
|
1621
|
+
enterRowFormatSerde(ctx) {
|
|
1622
|
+
}
|
|
1623
|
+
// Exit a parse tree produced by SqlBaseParser#rowFormatSerde.
|
|
1624
|
+
exitRowFormatSerde(ctx) {
|
|
1625
|
+
}
|
|
1626
|
+
// Enter a parse tree produced by SqlBaseParser#rowFormatDelimited.
|
|
1627
|
+
enterRowFormatDelimited(ctx) {
|
|
1628
|
+
}
|
|
1629
|
+
// Exit a parse tree produced by SqlBaseParser#rowFormatDelimited.
|
|
1630
|
+
exitRowFormatDelimited(ctx) {
|
|
1631
|
+
}
|
|
1632
|
+
// Enter a parse tree produced by SqlBaseParser#multipartIdentifierList.
|
|
1633
|
+
enterMultipartIdentifierList(ctx) {
|
|
1634
|
+
}
|
|
1635
|
+
// Exit a parse tree produced by SqlBaseParser#multipartIdentifierList.
|
|
1636
|
+
exitMultipartIdentifierList(ctx) {
|
|
1637
|
+
}
|
|
1638
|
+
// Enter a parse tree produced by SqlBaseParser#multipartIdentifier.
|
|
1639
|
+
enterMultipartIdentifier(ctx) {
|
|
1640
|
+
}
|
|
1641
|
+
// Exit a parse tree produced by SqlBaseParser#multipartIdentifier.
|
|
1642
|
+
exitMultipartIdentifier(ctx) {
|
|
1643
|
+
}
|
|
1644
|
+
// Enter a parse tree produced by SqlBaseParser#multipartIdentifierPropertyList.
|
|
1645
|
+
enterMultipartIdentifierPropertyList(ctx) {
|
|
1646
|
+
}
|
|
1647
|
+
// Exit a parse tree produced by SqlBaseParser#multipartIdentifierPropertyList.
|
|
1648
|
+
exitMultipartIdentifierPropertyList(ctx) {
|
|
1649
|
+
}
|
|
1650
|
+
// Enter a parse tree produced by SqlBaseParser#multipartIdentifierProperty.
|
|
1651
|
+
enterMultipartIdentifierProperty(ctx) {
|
|
1652
|
+
}
|
|
1653
|
+
// Exit a parse tree produced by SqlBaseParser#multipartIdentifierProperty.
|
|
1654
|
+
exitMultipartIdentifierProperty(ctx) {
|
|
1655
|
+
}
|
|
1656
|
+
// Enter a parse tree produced by SqlBaseParser#tableIdentifier.
|
|
1657
|
+
enterTableIdentifier(ctx) {
|
|
1658
|
+
}
|
|
1659
|
+
// Exit a parse tree produced by SqlBaseParser#tableIdentifier.
|
|
1660
|
+
exitTableIdentifier(ctx) {
|
|
1661
|
+
}
|
|
1662
|
+
// Enter a parse tree produced by SqlBaseParser#functionIdentifier.
|
|
1663
|
+
enterFunctionIdentifier(ctx) {
|
|
1664
|
+
}
|
|
1665
|
+
// Exit a parse tree produced by SqlBaseParser#functionIdentifier.
|
|
1666
|
+
exitFunctionIdentifier(ctx) {
|
|
1667
|
+
}
|
|
1668
|
+
// Enter a parse tree produced by SqlBaseParser#namedExpression.
|
|
1669
|
+
enterNamedExpression(ctx) {
|
|
1670
|
+
}
|
|
1671
|
+
// Exit a parse tree produced by SqlBaseParser#namedExpression.
|
|
1672
|
+
exitNamedExpression(ctx) {
|
|
1673
|
+
}
|
|
1674
|
+
// Enter a parse tree produced by SqlBaseParser#namedExpressionSeq.
|
|
1675
|
+
enterNamedExpressionSeq(ctx) {
|
|
1676
|
+
}
|
|
1677
|
+
// Exit a parse tree produced by SqlBaseParser#namedExpressionSeq.
|
|
1678
|
+
exitNamedExpressionSeq(ctx) {
|
|
1679
|
+
}
|
|
1680
|
+
// Enter a parse tree produced by SqlBaseParser#partitionFieldList.
|
|
1681
|
+
enterPartitionFieldList(ctx) {
|
|
1682
|
+
}
|
|
1683
|
+
// Exit a parse tree produced by SqlBaseParser#partitionFieldList.
|
|
1684
|
+
exitPartitionFieldList(ctx) {
|
|
1685
|
+
}
|
|
1686
|
+
// Enter a parse tree produced by SqlBaseParser#partitionTransform.
|
|
1687
|
+
enterPartitionTransform(ctx) {
|
|
1688
|
+
}
|
|
1689
|
+
// Exit a parse tree produced by SqlBaseParser#partitionTransform.
|
|
1690
|
+
exitPartitionTransform(ctx) {
|
|
1691
|
+
}
|
|
1692
|
+
// Enter a parse tree produced by SqlBaseParser#partitionColumn.
|
|
1693
|
+
enterPartitionColumn(ctx) {
|
|
1694
|
+
}
|
|
1695
|
+
// Exit a parse tree produced by SqlBaseParser#partitionColumn.
|
|
1696
|
+
exitPartitionColumn(ctx) {
|
|
1697
|
+
}
|
|
1698
|
+
// Enter a parse tree produced by SqlBaseParser#identityTransform.
|
|
1699
|
+
enterIdentityTransform(ctx) {
|
|
1700
|
+
}
|
|
1701
|
+
// Exit a parse tree produced by SqlBaseParser#identityTransform.
|
|
1702
|
+
exitIdentityTransform(ctx) {
|
|
1703
|
+
}
|
|
1704
|
+
// Enter a parse tree produced by SqlBaseParser#applyTransform.
|
|
1705
|
+
enterApplyTransform(ctx) {
|
|
1706
|
+
}
|
|
1707
|
+
// Exit a parse tree produced by SqlBaseParser#applyTransform.
|
|
1708
|
+
exitApplyTransform(ctx) {
|
|
1709
|
+
}
|
|
1710
|
+
// Enter a parse tree produced by SqlBaseParser#transformArgument.
|
|
1711
|
+
enterTransformArgument(ctx) {
|
|
1712
|
+
}
|
|
1713
|
+
// Exit a parse tree produced by SqlBaseParser#transformArgument.
|
|
1714
|
+
exitTransformArgument(ctx) {
|
|
1715
|
+
}
|
|
1716
|
+
// Enter a parse tree produced by SqlBaseParser#expression.
|
|
1717
|
+
enterExpression(ctx) {
|
|
1718
|
+
}
|
|
1719
|
+
// Exit a parse tree produced by SqlBaseParser#expression.
|
|
1720
|
+
exitExpression(ctx) {
|
|
1721
|
+
}
|
|
1722
|
+
// Enter a parse tree produced by SqlBaseParser#namedArgumentExpression.
|
|
1723
|
+
enterNamedArgumentExpression(ctx) {
|
|
1724
|
+
}
|
|
1725
|
+
// Exit a parse tree produced by SqlBaseParser#namedArgumentExpression.
|
|
1726
|
+
exitNamedArgumentExpression(ctx) {
|
|
1727
|
+
}
|
|
1728
|
+
// Enter a parse tree produced by SqlBaseParser#functionArgument.
|
|
1729
|
+
enterFunctionArgument(ctx) {
|
|
1730
|
+
}
|
|
1731
|
+
// Exit a parse tree produced by SqlBaseParser#functionArgument.
|
|
1732
|
+
exitFunctionArgument(ctx) {
|
|
1733
|
+
}
|
|
1734
|
+
// Enter a parse tree produced by SqlBaseParser#expressionSeq.
|
|
1735
|
+
enterExpressionSeq(ctx) {
|
|
1736
|
+
}
|
|
1737
|
+
// Exit a parse tree produced by SqlBaseParser#expressionSeq.
|
|
1738
|
+
exitExpressionSeq(ctx) {
|
|
1739
|
+
}
|
|
1740
|
+
// Enter a parse tree produced by SqlBaseParser#logicalNot.
|
|
1741
|
+
enterLogicalNot(ctx) {
|
|
1742
|
+
}
|
|
1743
|
+
// Exit a parse tree produced by SqlBaseParser#logicalNot.
|
|
1744
|
+
exitLogicalNot(ctx) {
|
|
1745
|
+
}
|
|
1746
|
+
// Enter a parse tree produced by SqlBaseParser#predicated.
|
|
1747
|
+
enterPredicated(ctx) {
|
|
1748
|
+
}
|
|
1749
|
+
// Exit a parse tree produced by SqlBaseParser#predicated.
|
|
1750
|
+
exitPredicated(ctx) {
|
|
1751
|
+
}
|
|
1752
|
+
// Enter a parse tree produced by SqlBaseParser#exists.
|
|
1753
|
+
enterExists(ctx) {
|
|
1754
|
+
}
|
|
1755
|
+
// Exit a parse tree produced by SqlBaseParser#exists.
|
|
1756
|
+
exitExists(ctx) {
|
|
1757
|
+
}
|
|
1758
|
+
// Enter a parse tree produced by SqlBaseParser#logicalBinary.
|
|
1759
|
+
enterLogicalBinary(ctx) {
|
|
1760
|
+
}
|
|
1761
|
+
// Exit a parse tree produced by SqlBaseParser#logicalBinary.
|
|
1762
|
+
exitLogicalBinary(ctx) {
|
|
1763
|
+
}
|
|
1764
|
+
// Enter a parse tree produced by SqlBaseParser#predicate.
|
|
1765
|
+
enterPredicate(ctx) {
|
|
1766
|
+
}
|
|
1767
|
+
// Exit a parse tree produced by SqlBaseParser#predicate.
|
|
1768
|
+
exitPredicate(ctx) {
|
|
1769
|
+
}
|
|
1770
|
+
// Enter a parse tree produced by SqlBaseParser#errorCapturingNot.
|
|
1771
|
+
enterErrorCapturingNot(ctx) {
|
|
1772
|
+
}
|
|
1773
|
+
// Exit a parse tree produced by SqlBaseParser#errorCapturingNot.
|
|
1774
|
+
exitErrorCapturingNot(ctx) {
|
|
1775
|
+
}
|
|
1776
|
+
// Enter a parse tree produced by SqlBaseParser#valueExpressionDefault.
|
|
1777
|
+
enterValueExpressionDefault(ctx) {
|
|
1778
|
+
}
|
|
1779
|
+
// Exit a parse tree produced by SqlBaseParser#valueExpressionDefault.
|
|
1780
|
+
exitValueExpressionDefault(ctx) {
|
|
1781
|
+
}
|
|
1782
|
+
// Enter a parse tree produced by SqlBaseParser#comparison.
|
|
1783
|
+
enterComparison(ctx) {
|
|
1784
|
+
}
|
|
1785
|
+
// Exit a parse tree produced by SqlBaseParser#comparison.
|
|
1786
|
+
exitComparison(ctx) {
|
|
1787
|
+
}
|
|
1788
|
+
// Enter a parse tree produced by SqlBaseParser#shiftExpression.
|
|
1789
|
+
enterShiftExpression(ctx) {
|
|
1790
|
+
}
|
|
1791
|
+
// Exit a parse tree produced by SqlBaseParser#shiftExpression.
|
|
1792
|
+
exitShiftExpression(ctx) {
|
|
1793
|
+
}
|
|
1794
|
+
// Enter a parse tree produced by SqlBaseParser#arithmeticBinary.
|
|
1795
|
+
enterArithmeticBinary(ctx) {
|
|
1796
|
+
}
|
|
1797
|
+
// Exit a parse tree produced by SqlBaseParser#arithmeticBinary.
|
|
1798
|
+
exitArithmeticBinary(ctx) {
|
|
1799
|
+
}
|
|
1800
|
+
// Enter a parse tree produced by SqlBaseParser#arithmeticUnary.
|
|
1801
|
+
enterArithmeticUnary(ctx) {
|
|
1802
|
+
}
|
|
1803
|
+
// Exit a parse tree produced by SqlBaseParser#arithmeticUnary.
|
|
1804
|
+
exitArithmeticUnary(ctx) {
|
|
1805
|
+
}
|
|
1806
|
+
// Enter a parse tree produced by SqlBaseParser#shiftOperator.
|
|
1807
|
+
enterShiftOperator(ctx) {
|
|
1808
|
+
}
|
|
1809
|
+
// Exit a parse tree produced by SqlBaseParser#shiftOperator.
|
|
1810
|
+
exitShiftOperator(ctx) {
|
|
1811
|
+
}
|
|
1812
|
+
// Enter a parse tree produced by SqlBaseParser#datetimeUnit.
|
|
1813
|
+
enterDatetimeUnit(ctx) {
|
|
1814
|
+
}
|
|
1815
|
+
// Exit a parse tree produced by SqlBaseParser#datetimeUnit.
|
|
1816
|
+
exitDatetimeUnit(ctx) {
|
|
1817
|
+
}
|
|
1818
|
+
// Enter a parse tree produced by SqlBaseParser#struct.
|
|
1819
|
+
enterStruct(ctx) {
|
|
1820
|
+
}
|
|
1821
|
+
// Exit a parse tree produced by SqlBaseParser#struct.
|
|
1822
|
+
exitStruct(ctx) {
|
|
1823
|
+
}
|
|
1824
|
+
// Enter a parse tree produced by SqlBaseParser#dereference.
|
|
1825
|
+
enterDereference(ctx) {
|
|
1826
|
+
}
|
|
1827
|
+
// Exit a parse tree produced by SqlBaseParser#dereference.
|
|
1828
|
+
exitDereference(ctx) {
|
|
1829
|
+
}
|
|
1830
|
+
// Enter a parse tree produced by SqlBaseParser#castByColon.
|
|
1831
|
+
enterCastByColon(ctx) {
|
|
1832
|
+
}
|
|
1833
|
+
// Exit a parse tree produced by SqlBaseParser#castByColon.
|
|
1834
|
+
exitCastByColon(ctx) {
|
|
1835
|
+
}
|
|
1836
|
+
// Enter a parse tree produced by SqlBaseParser#timestampadd.
|
|
1837
|
+
enterTimestampadd(ctx) {
|
|
1838
|
+
}
|
|
1839
|
+
// Exit a parse tree produced by SqlBaseParser#timestampadd.
|
|
1840
|
+
exitTimestampadd(ctx) {
|
|
1841
|
+
}
|
|
1842
|
+
// Enter a parse tree produced by SqlBaseParser#substring.
|
|
1843
|
+
enterSubstring(ctx) {
|
|
1844
|
+
}
|
|
1845
|
+
// Exit a parse tree produced by SqlBaseParser#substring.
|
|
1846
|
+
exitSubstring(ctx) {
|
|
1847
|
+
}
|
|
1848
|
+
// Enter a parse tree produced by SqlBaseParser#cast.
|
|
1849
|
+
enterCast(ctx) {
|
|
1850
|
+
}
|
|
1851
|
+
// Exit a parse tree produced by SqlBaseParser#cast.
|
|
1852
|
+
exitCast(ctx) {
|
|
1853
|
+
}
|
|
1854
|
+
// Enter a parse tree produced by SqlBaseParser#lambda.
|
|
1855
|
+
enterLambda(ctx) {
|
|
1856
|
+
}
|
|
1857
|
+
// Exit a parse tree produced by SqlBaseParser#lambda.
|
|
1858
|
+
exitLambda(ctx) {
|
|
1859
|
+
}
|
|
1860
|
+
// Enter a parse tree produced by SqlBaseParser#parenthesizedExpression.
|
|
1861
|
+
enterParenthesizedExpression(ctx) {
|
|
1862
|
+
}
|
|
1863
|
+
// Exit a parse tree produced by SqlBaseParser#parenthesizedExpression.
|
|
1864
|
+
exitParenthesizedExpression(ctx) {
|
|
1865
|
+
}
|
|
1866
|
+
// Enter a parse tree produced by SqlBaseParser#any_value.
|
|
1867
|
+
enterAny_value(ctx) {
|
|
1868
|
+
}
|
|
1869
|
+
// Exit a parse tree produced by SqlBaseParser#any_value.
|
|
1870
|
+
exitAny_value(ctx) {
|
|
1871
|
+
}
|
|
1872
|
+
// Enter a parse tree produced by SqlBaseParser#trim.
|
|
1873
|
+
enterTrim(ctx) {
|
|
1874
|
+
}
|
|
1875
|
+
// Exit a parse tree produced by SqlBaseParser#trim.
|
|
1876
|
+
exitTrim(ctx) {
|
|
1877
|
+
}
|
|
1878
|
+
// Enter a parse tree produced by SqlBaseParser#semiStructuredExtract.
|
|
1879
|
+
enterSemiStructuredExtract(ctx) {
|
|
1880
|
+
}
|
|
1881
|
+
// Exit a parse tree produced by SqlBaseParser#semiStructuredExtract.
|
|
1882
|
+
exitSemiStructuredExtract(ctx) {
|
|
1883
|
+
}
|
|
1884
|
+
// Enter a parse tree produced by SqlBaseParser#simpleCase.
|
|
1885
|
+
enterSimpleCase(ctx) {
|
|
1886
|
+
}
|
|
1887
|
+
// Exit a parse tree produced by SqlBaseParser#simpleCase.
|
|
1888
|
+
exitSimpleCase(ctx) {
|
|
1889
|
+
}
|
|
1890
|
+
// Enter a parse tree produced by SqlBaseParser#currentLike.
|
|
1891
|
+
enterCurrentLike(ctx) {
|
|
1892
|
+
}
|
|
1893
|
+
// Exit a parse tree produced by SqlBaseParser#currentLike.
|
|
1894
|
+
exitCurrentLike(ctx) {
|
|
1895
|
+
}
|
|
1896
|
+
// Enter a parse tree produced by SqlBaseParser#columnReference.
|
|
1897
|
+
enterColumnReference(ctx) {
|
|
1898
|
+
}
|
|
1899
|
+
// Exit a parse tree produced by SqlBaseParser#columnReference.
|
|
1900
|
+
exitColumnReference(ctx) {
|
|
1901
|
+
}
|
|
1902
|
+
// Enter a parse tree produced by SqlBaseParser#rowConstructor.
|
|
1903
|
+
enterRowConstructor(ctx) {
|
|
1904
|
+
}
|
|
1905
|
+
// Exit a parse tree produced by SqlBaseParser#rowConstructor.
|
|
1906
|
+
exitRowConstructor(ctx) {
|
|
1907
|
+
}
|
|
1908
|
+
// Enter a parse tree produced by SqlBaseParser#last.
|
|
1909
|
+
enterLast(ctx) {
|
|
1910
|
+
}
|
|
1911
|
+
// Exit a parse tree produced by SqlBaseParser#last.
|
|
1912
|
+
exitLast(ctx) {
|
|
1913
|
+
}
|
|
1914
|
+
// Enter a parse tree produced by SqlBaseParser#star.
|
|
1915
|
+
enterStar(ctx) {
|
|
1916
|
+
}
|
|
1917
|
+
// Exit a parse tree produced by SqlBaseParser#star.
|
|
1918
|
+
exitStar(ctx) {
|
|
1919
|
+
}
|
|
1920
|
+
// Enter a parse tree produced by SqlBaseParser#overlay.
|
|
1921
|
+
enterOverlay(ctx) {
|
|
1922
|
+
}
|
|
1923
|
+
// Exit a parse tree produced by SqlBaseParser#overlay.
|
|
1924
|
+
exitOverlay(ctx) {
|
|
1925
|
+
}
|
|
1926
|
+
// Enter a parse tree produced by SqlBaseParser#subscript.
|
|
1927
|
+
enterSubscript(ctx) {
|
|
1928
|
+
}
|
|
1929
|
+
// Exit a parse tree produced by SqlBaseParser#subscript.
|
|
1930
|
+
exitSubscript(ctx) {
|
|
1931
|
+
}
|
|
1932
|
+
// Enter a parse tree produced by SqlBaseParser#timestampdiff.
|
|
1933
|
+
enterTimestampdiff(ctx) {
|
|
1934
|
+
}
|
|
1935
|
+
// Exit a parse tree produced by SqlBaseParser#timestampdiff.
|
|
1936
|
+
exitTimestampdiff(ctx) {
|
|
1937
|
+
}
|
|
1938
|
+
// Enter a parse tree produced by SqlBaseParser#subqueryExpression.
|
|
1939
|
+
enterSubqueryExpression(ctx) {
|
|
1940
|
+
}
|
|
1941
|
+
// Exit a parse tree produced by SqlBaseParser#subqueryExpression.
|
|
1942
|
+
exitSubqueryExpression(ctx) {
|
|
1943
|
+
}
|
|
1944
|
+
// Enter a parse tree produced by SqlBaseParser#collate.
|
|
1945
|
+
enterCollate(ctx) {
|
|
1946
|
+
}
|
|
1947
|
+
// Exit a parse tree produced by SqlBaseParser#collate.
|
|
1948
|
+
exitCollate(ctx) {
|
|
1949
|
+
}
|
|
1950
|
+
// Enter a parse tree produced by SqlBaseParser#constantDefault.
|
|
1951
|
+
enterConstantDefault(ctx) {
|
|
1952
|
+
}
|
|
1953
|
+
// Exit a parse tree produced by SqlBaseParser#constantDefault.
|
|
1954
|
+
exitConstantDefault(ctx) {
|
|
1955
|
+
}
|
|
1956
|
+
// Enter a parse tree produced by SqlBaseParser#extract.
|
|
1957
|
+
enterExtract(ctx) {
|
|
1958
|
+
}
|
|
1959
|
+
// Exit a parse tree produced by SqlBaseParser#extract.
|
|
1960
|
+
exitExtract(ctx) {
|
|
1961
|
+
}
|
|
1962
|
+
// Enter a parse tree produced by SqlBaseParser#functionCall.
|
|
1963
|
+
enterFunctionCall(ctx) {
|
|
1964
|
+
}
|
|
1965
|
+
// Exit a parse tree produced by SqlBaseParser#functionCall.
|
|
1966
|
+
exitFunctionCall(ctx) {
|
|
1967
|
+
}
|
|
1968
|
+
// Enter a parse tree produced by SqlBaseParser#searchedCase.
|
|
1969
|
+
enterSearchedCase(ctx) {
|
|
1970
|
+
}
|
|
1971
|
+
// Exit a parse tree produced by SqlBaseParser#searchedCase.
|
|
1972
|
+
exitSearchedCase(ctx) {
|
|
1973
|
+
}
|
|
1974
|
+
// Enter a parse tree produced by SqlBaseParser#position.
|
|
1975
|
+
enterPosition(ctx) {
|
|
1976
|
+
}
|
|
1977
|
+
// Exit a parse tree produced by SqlBaseParser#position.
|
|
1978
|
+
exitPosition(ctx) {
|
|
1979
|
+
}
|
|
1980
|
+
// Enter a parse tree produced by SqlBaseParser#first.
|
|
1981
|
+
enterFirst(ctx) {
|
|
1982
|
+
}
|
|
1983
|
+
// Exit a parse tree produced by SqlBaseParser#first.
|
|
1984
|
+
exitFirst(ctx) {
|
|
1985
|
+
}
|
|
1986
|
+
// Enter a parse tree produced by SqlBaseParser#semiStructuredExtractionPath.
|
|
1987
|
+
enterSemiStructuredExtractionPath(ctx) {
|
|
1988
|
+
}
|
|
1989
|
+
// Exit a parse tree produced by SqlBaseParser#semiStructuredExtractionPath.
|
|
1990
|
+
exitSemiStructuredExtractionPath(ctx) {
|
|
1991
|
+
}
|
|
1992
|
+
// Enter a parse tree produced by SqlBaseParser#jsonPathIdentifier.
|
|
1993
|
+
enterJsonPathIdentifier(ctx) {
|
|
1994
|
+
}
|
|
1995
|
+
// Exit a parse tree produced by SqlBaseParser#jsonPathIdentifier.
|
|
1996
|
+
exitJsonPathIdentifier(ctx) {
|
|
1997
|
+
}
|
|
1998
|
+
// Enter a parse tree produced by SqlBaseParser#jsonPathBracketedIdentifier.
|
|
1999
|
+
enterJsonPathBracketedIdentifier(ctx) {
|
|
2000
|
+
}
|
|
2001
|
+
// Exit a parse tree produced by SqlBaseParser#jsonPathBracketedIdentifier.
|
|
2002
|
+
exitJsonPathBracketedIdentifier(ctx) {
|
|
2003
|
+
}
|
|
2004
|
+
// Enter a parse tree produced by SqlBaseParser#jsonPathFirstPart.
|
|
2005
|
+
enterJsonPathFirstPart(ctx) {
|
|
2006
|
+
}
|
|
2007
|
+
// Exit a parse tree produced by SqlBaseParser#jsonPathFirstPart.
|
|
2008
|
+
exitJsonPathFirstPart(ctx) {
|
|
2009
|
+
}
|
|
2010
|
+
// Enter a parse tree produced by SqlBaseParser#jsonPathParts.
|
|
2011
|
+
enterJsonPathParts(ctx) {
|
|
2012
|
+
}
|
|
2013
|
+
// Exit a parse tree produced by SqlBaseParser#jsonPathParts.
|
|
2014
|
+
exitJsonPathParts(ctx) {
|
|
2015
|
+
}
|
|
2016
|
+
// Enter a parse tree produced by SqlBaseParser#literalType.
|
|
2017
|
+
enterLiteralType(ctx) {
|
|
2018
|
+
}
|
|
2019
|
+
// Exit a parse tree produced by SqlBaseParser#literalType.
|
|
2020
|
+
exitLiteralType(ctx) {
|
|
2021
|
+
}
|
|
2022
|
+
// Enter a parse tree produced by SqlBaseParser#nullLiteral.
|
|
2023
|
+
enterNullLiteral(ctx) {
|
|
2024
|
+
}
|
|
2025
|
+
// Exit a parse tree produced by SqlBaseParser#nullLiteral.
|
|
2026
|
+
exitNullLiteral(ctx) {
|
|
2027
|
+
}
|
|
2028
|
+
// Enter a parse tree produced by SqlBaseParser#posParameterLiteral.
|
|
2029
|
+
enterPosParameterLiteral(ctx) {
|
|
2030
|
+
}
|
|
2031
|
+
// Exit a parse tree produced by SqlBaseParser#posParameterLiteral.
|
|
2032
|
+
exitPosParameterLiteral(ctx) {
|
|
2033
|
+
}
|
|
2034
|
+
// Enter a parse tree produced by SqlBaseParser#namedParameterLiteral.
|
|
2035
|
+
enterNamedParameterLiteral(ctx) {
|
|
2036
|
+
}
|
|
2037
|
+
// Exit a parse tree produced by SqlBaseParser#namedParameterLiteral.
|
|
2038
|
+
exitNamedParameterLiteral(ctx) {
|
|
2039
|
+
}
|
|
2040
|
+
// Enter a parse tree produced by SqlBaseParser#intervalLiteral.
|
|
2041
|
+
enterIntervalLiteral(ctx) {
|
|
2042
|
+
}
|
|
2043
|
+
// Exit a parse tree produced by SqlBaseParser#intervalLiteral.
|
|
2044
|
+
exitIntervalLiteral(ctx) {
|
|
2045
|
+
}
|
|
2046
|
+
// Enter a parse tree produced by SqlBaseParser#typeConstructor.
|
|
2047
|
+
enterTypeConstructor(ctx) {
|
|
2048
|
+
}
|
|
2049
|
+
// Exit a parse tree produced by SqlBaseParser#typeConstructor.
|
|
2050
|
+
exitTypeConstructor(ctx) {
|
|
2051
|
+
}
|
|
2052
|
+
// Enter a parse tree produced by SqlBaseParser#numericLiteral.
|
|
2053
|
+
enterNumericLiteral(ctx) {
|
|
2054
|
+
}
|
|
2055
|
+
// Exit a parse tree produced by SqlBaseParser#numericLiteral.
|
|
2056
|
+
exitNumericLiteral(ctx) {
|
|
2057
|
+
}
|
|
2058
|
+
// Enter a parse tree produced by SqlBaseParser#booleanLiteral.
|
|
2059
|
+
enterBooleanLiteral(ctx) {
|
|
2060
|
+
}
|
|
2061
|
+
// Exit a parse tree produced by SqlBaseParser#booleanLiteral.
|
|
2062
|
+
exitBooleanLiteral(ctx) {
|
|
2063
|
+
}
|
|
2064
|
+
// Enter a parse tree produced by SqlBaseParser#stringLiteral.
|
|
2065
|
+
enterStringLiteral(ctx) {
|
|
2066
|
+
}
|
|
2067
|
+
// Exit a parse tree produced by SqlBaseParser#stringLiteral.
|
|
2068
|
+
exitStringLiteral(ctx) {
|
|
2069
|
+
}
|
|
2070
|
+
// Enter a parse tree produced by SqlBaseParser#namedParameterMarker.
|
|
2071
|
+
enterNamedParameterMarker(ctx) {
|
|
2072
|
+
}
|
|
2073
|
+
// Exit a parse tree produced by SqlBaseParser#namedParameterMarker.
|
|
2074
|
+
exitNamedParameterMarker(ctx) {
|
|
2075
|
+
}
|
|
2076
|
+
// Enter a parse tree produced by SqlBaseParser#comparisonOperator.
|
|
2077
|
+
enterComparisonOperator(ctx) {
|
|
2078
|
+
}
|
|
2079
|
+
// Exit a parse tree produced by SqlBaseParser#comparisonOperator.
|
|
2080
|
+
exitComparisonOperator(ctx) {
|
|
2081
|
+
}
|
|
2082
|
+
// Enter a parse tree produced by SqlBaseParser#arithmeticOperator.
|
|
2083
|
+
enterArithmeticOperator(ctx) {
|
|
2084
|
+
}
|
|
2085
|
+
// Exit a parse tree produced by SqlBaseParser#arithmeticOperator.
|
|
2086
|
+
exitArithmeticOperator(ctx) {
|
|
2087
|
+
}
|
|
2088
|
+
// Enter a parse tree produced by SqlBaseParser#predicateOperator.
|
|
2089
|
+
enterPredicateOperator(ctx) {
|
|
2090
|
+
}
|
|
2091
|
+
// Exit a parse tree produced by SqlBaseParser#predicateOperator.
|
|
2092
|
+
exitPredicateOperator(ctx) {
|
|
2093
|
+
}
|
|
2094
|
+
// Enter a parse tree produced by SqlBaseParser#booleanValue.
|
|
2095
|
+
enterBooleanValue(ctx) {
|
|
2096
|
+
}
|
|
2097
|
+
// Exit a parse tree produced by SqlBaseParser#booleanValue.
|
|
2098
|
+
exitBooleanValue(ctx) {
|
|
2099
|
+
}
|
|
2100
|
+
// Enter a parse tree produced by SqlBaseParser#interval.
|
|
2101
|
+
enterInterval(ctx) {
|
|
2102
|
+
}
|
|
2103
|
+
// Exit a parse tree produced by SqlBaseParser#interval.
|
|
2104
|
+
exitInterval(ctx) {
|
|
2105
|
+
}
|
|
2106
|
+
// Enter a parse tree produced by SqlBaseParser#errorCapturingMultiUnitsInterval.
|
|
2107
|
+
enterErrorCapturingMultiUnitsInterval(ctx) {
|
|
2108
|
+
}
|
|
2109
|
+
// Exit a parse tree produced by SqlBaseParser#errorCapturingMultiUnitsInterval.
|
|
2110
|
+
exitErrorCapturingMultiUnitsInterval(ctx) {
|
|
2111
|
+
}
|
|
2112
|
+
// Enter a parse tree produced by SqlBaseParser#multiUnitsInterval.
|
|
2113
|
+
enterMultiUnitsInterval(ctx) {
|
|
2114
|
+
}
|
|
2115
|
+
// Exit a parse tree produced by SqlBaseParser#multiUnitsInterval.
|
|
2116
|
+
exitMultiUnitsInterval(ctx) {
|
|
2117
|
+
}
|
|
2118
|
+
// Enter a parse tree produced by SqlBaseParser#errorCapturingUnitToUnitInterval.
|
|
2119
|
+
enterErrorCapturingUnitToUnitInterval(ctx) {
|
|
2120
|
+
}
|
|
2121
|
+
// Exit a parse tree produced by SqlBaseParser#errorCapturingUnitToUnitInterval.
|
|
2122
|
+
exitErrorCapturingUnitToUnitInterval(ctx) {
|
|
2123
|
+
}
|
|
2124
|
+
// Enter a parse tree produced by SqlBaseParser#unitToUnitInterval.
|
|
2125
|
+
enterUnitToUnitInterval(ctx) {
|
|
2126
|
+
}
|
|
2127
|
+
// Exit a parse tree produced by SqlBaseParser#unitToUnitInterval.
|
|
2128
|
+
exitUnitToUnitInterval(ctx) {
|
|
2129
|
+
}
|
|
2130
|
+
// Enter a parse tree produced by SqlBaseParser#intervalValue.
|
|
2131
|
+
enterIntervalValue(ctx) {
|
|
2132
|
+
}
|
|
2133
|
+
// Exit a parse tree produced by SqlBaseParser#intervalValue.
|
|
2134
|
+
exitIntervalValue(ctx) {
|
|
2135
|
+
}
|
|
2136
|
+
// Enter a parse tree produced by SqlBaseParser#unitInMultiUnits.
|
|
2137
|
+
enterUnitInMultiUnits(ctx) {
|
|
2138
|
+
}
|
|
2139
|
+
// Exit a parse tree produced by SqlBaseParser#unitInMultiUnits.
|
|
2140
|
+
exitUnitInMultiUnits(ctx) {
|
|
2141
|
+
}
|
|
2142
|
+
// Enter a parse tree produced by SqlBaseParser#unitInUnitToUnit.
|
|
2143
|
+
enterUnitInUnitToUnit(ctx) {
|
|
2144
|
+
}
|
|
2145
|
+
// Exit a parse tree produced by SqlBaseParser#unitInUnitToUnit.
|
|
2146
|
+
exitUnitInUnitToUnit(ctx) {
|
|
2147
|
+
}
|
|
2148
|
+
// Enter a parse tree produced by SqlBaseParser#colPosition.
|
|
2149
|
+
enterColPosition(ctx) {
|
|
2150
|
+
}
|
|
2151
|
+
// Exit a parse tree produced by SqlBaseParser#colPosition.
|
|
2152
|
+
exitColPosition(ctx) {
|
|
2153
|
+
}
|
|
2154
|
+
// Enter a parse tree produced by SqlBaseParser#collationSpec.
|
|
2155
|
+
enterCollationSpec(ctx) {
|
|
2156
|
+
}
|
|
2157
|
+
// Exit a parse tree produced by SqlBaseParser#collationSpec.
|
|
2158
|
+
exitCollationSpec(ctx) {
|
|
2159
|
+
}
|
|
2160
|
+
// Enter a parse tree produced by SqlBaseParser#collateClause.
|
|
2161
|
+
enterCollateClause(ctx) {
|
|
2162
|
+
}
|
|
2163
|
+
// Exit a parse tree produced by SqlBaseParser#collateClause.
|
|
2164
|
+
exitCollateClause(ctx) {
|
|
2165
|
+
}
|
|
2166
|
+
// Enter a parse tree produced by SqlBaseParser#nonTrivialPrimitiveType.
|
|
2167
|
+
enterNonTrivialPrimitiveType(ctx) {
|
|
2168
|
+
}
|
|
2169
|
+
// Exit a parse tree produced by SqlBaseParser#nonTrivialPrimitiveType.
|
|
2170
|
+
exitNonTrivialPrimitiveType(ctx) {
|
|
2171
|
+
}
|
|
2172
|
+
// Enter a parse tree produced by SqlBaseParser#trivialPrimitiveType.
|
|
2173
|
+
enterTrivialPrimitiveType(ctx) {
|
|
2174
|
+
}
|
|
2175
|
+
// Exit a parse tree produced by SqlBaseParser#trivialPrimitiveType.
|
|
2176
|
+
exitTrivialPrimitiveType(ctx) {
|
|
2177
|
+
}
|
|
2178
|
+
// Enter a parse tree produced by SqlBaseParser#primitiveType.
|
|
2179
|
+
enterPrimitiveType(ctx) {
|
|
2180
|
+
}
|
|
2181
|
+
// Exit a parse tree produced by SqlBaseParser#primitiveType.
|
|
2182
|
+
exitPrimitiveType(ctx) {
|
|
2183
|
+
}
|
|
2184
|
+
// Enter a parse tree produced by SqlBaseParser#complexDataType.
|
|
2185
|
+
enterComplexDataType(ctx) {
|
|
2186
|
+
}
|
|
2187
|
+
// Exit a parse tree produced by SqlBaseParser#complexDataType.
|
|
2188
|
+
exitComplexDataType(ctx) {
|
|
2189
|
+
}
|
|
2190
|
+
// Enter a parse tree produced by SqlBaseParser#primitiveDataType.
|
|
2191
|
+
enterPrimitiveDataType(ctx) {
|
|
2192
|
+
}
|
|
2193
|
+
// Exit a parse tree produced by SqlBaseParser#primitiveDataType.
|
|
2194
|
+
exitPrimitiveDataType(ctx) {
|
|
2195
|
+
}
|
|
2196
|
+
// Enter a parse tree produced by SqlBaseParser#qualifiedColTypeWithPositionList.
|
|
2197
|
+
enterQualifiedColTypeWithPositionList(ctx) {
|
|
2198
|
+
}
|
|
2199
|
+
// Exit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPositionList.
|
|
2200
|
+
exitQualifiedColTypeWithPositionList(ctx) {
|
|
2201
|
+
}
|
|
2202
|
+
// Enter a parse tree produced by SqlBaseParser#qualifiedColTypeWithPosition.
|
|
2203
|
+
enterQualifiedColTypeWithPosition(ctx) {
|
|
2204
|
+
}
|
|
2205
|
+
// Exit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPosition.
|
|
2206
|
+
exitQualifiedColTypeWithPosition(ctx) {
|
|
2207
|
+
}
|
|
2208
|
+
// Enter a parse tree produced by SqlBaseParser#colDefinitionDescriptorWithPosition.
|
|
2209
|
+
enterColDefinitionDescriptorWithPosition(ctx) {
|
|
2210
|
+
}
|
|
2211
|
+
// Exit a parse tree produced by SqlBaseParser#colDefinitionDescriptorWithPosition.
|
|
2212
|
+
exitColDefinitionDescriptorWithPosition(ctx) {
|
|
2213
|
+
}
|
|
2214
|
+
// Enter a parse tree produced by SqlBaseParser#defaultExpression.
|
|
2215
|
+
enterDefaultExpression(ctx) {
|
|
2216
|
+
}
|
|
2217
|
+
// Exit a parse tree produced by SqlBaseParser#defaultExpression.
|
|
2218
|
+
exitDefaultExpression(ctx) {
|
|
2219
|
+
}
|
|
2220
|
+
// Enter a parse tree produced by SqlBaseParser#variableDefaultExpression.
|
|
2221
|
+
enterVariableDefaultExpression(ctx) {
|
|
2222
|
+
}
|
|
2223
|
+
// Exit a parse tree produced by SqlBaseParser#variableDefaultExpression.
|
|
2224
|
+
exitVariableDefaultExpression(ctx) {
|
|
2225
|
+
}
|
|
2226
|
+
// Enter a parse tree produced by SqlBaseParser#colTypeList.
|
|
2227
|
+
enterColTypeList(ctx) {
|
|
2228
|
+
}
|
|
2229
|
+
// Exit a parse tree produced by SqlBaseParser#colTypeList.
|
|
2230
|
+
exitColTypeList(ctx) {
|
|
2231
|
+
}
|
|
2232
|
+
// Enter a parse tree produced by SqlBaseParser#colType.
|
|
2233
|
+
enterColType(ctx) {
|
|
2234
|
+
}
|
|
2235
|
+
// Exit a parse tree produced by SqlBaseParser#colType.
|
|
2236
|
+
exitColType(ctx) {
|
|
2237
|
+
}
|
|
2238
|
+
// Enter a parse tree produced by SqlBaseParser#tableElementList.
|
|
2239
|
+
enterTableElementList(ctx) {
|
|
2240
|
+
}
|
|
2241
|
+
// Exit a parse tree produced by SqlBaseParser#tableElementList.
|
|
2242
|
+
exitTableElementList(ctx) {
|
|
2243
|
+
}
|
|
2244
|
+
// Enter a parse tree produced by SqlBaseParser#tableElement.
|
|
2245
|
+
enterTableElement(ctx) {
|
|
2246
|
+
}
|
|
2247
|
+
// Exit a parse tree produced by SqlBaseParser#tableElement.
|
|
2248
|
+
exitTableElement(ctx) {
|
|
2249
|
+
}
|
|
2250
|
+
// Enter a parse tree produced by SqlBaseParser#colDefinitionList.
|
|
2251
|
+
enterColDefinitionList(ctx) {
|
|
2252
|
+
}
|
|
2253
|
+
// Exit a parse tree produced by SqlBaseParser#colDefinitionList.
|
|
2254
|
+
exitColDefinitionList(ctx) {
|
|
2255
|
+
}
|
|
2256
|
+
// Enter a parse tree produced by SqlBaseParser#colDefinition.
|
|
2257
|
+
enterColDefinition(ctx) {
|
|
2258
|
+
}
|
|
2259
|
+
// Exit a parse tree produced by SqlBaseParser#colDefinition.
|
|
2260
|
+
exitColDefinition(ctx) {
|
|
2261
|
+
}
|
|
2262
|
+
// Enter a parse tree produced by SqlBaseParser#colDefinitionOption.
|
|
2263
|
+
enterColDefinitionOption(ctx) {
|
|
2264
|
+
}
|
|
2265
|
+
// Exit a parse tree produced by SqlBaseParser#colDefinitionOption.
|
|
2266
|
+
exitColDefinitionOption(ctx) {
|
|
2267
|
+
}
|
|
2268
|
+
// Enter a parse tree produced by SqlBaseParser#generatedColumn.
|
|
2269
|
+
enterGeneratedColumn(ctx) {
|
|
2270
|
+
}
|
|
2271
|
+
// Exit a parse tree produced by SqlBaseParser#generatedColumn.
|
|
2272
|
+
exitGeneratedColumn(ctx) {
|
|
2273
|
+
}
|
|
2274
|
+
// Enter a parse tree produced by SqlBaseParser#identityColumn.
|
|
2275
|
+
enterIdentityColumn(ctx) {
|
|
2276
|
+
}
|
|
2277
|
+
// Exit a parse tree produced by SqlBaseParser#identityColumn.
|
|
2278
|
+
exitIdentityColumn(ctx) {
|
|
2279
|
+
}
|
|
2280
|
+
// Enter a parse tree produced by SqlBaseParser#identityColSpec.
|
|
2281
|
+
enterIdentityColSpec(ctx) {
|
|
2282
|
+
}
|
|
2283
|
+
// Exit a parse tree produced by SqlBaseParser#identityColSpec.
|
|
2284
|
+
exitIdentityColSpec(ctx) {
|
|
2285
|
+
}
|
|
2286
|
+
// Enter a parse tree produced by SqlBaseParser#sequenceGeneratorOption.
|
|
2287
|
+
enterSequenceGeneratorOption(ctx) {
|
|
2288
|
+
}
|
|
2289
|
+
// Exit a parse tree produced by SqlBaseParser#sequenceGeneratorOption.
|
|
2290
|
+
exitSequenceGeneratorOption(ctx) {
|
|
2291
|
+
}
|
|
2292
|
+
// Enter a parse tree produced by SqlBaseParser#sequenceGeneratorStartOrStep.
|
|
2293
|
+
enterSequenceGeneratorStartOrStep(ctx) {
|
|
2294
|
+
}
|
|
2295
|
+
// Exit a parse tree produced by SqlBaseParser#sequenceGeneratorStartOrStep.
|
|
2296
|
+
exitSequenceGeneratorStartOrStep(ctx) {
|
|
2297
|
+
}
|
|
2298
|
+
// Enter a parse tree produced by SqlBaseParser#complexColTypeList.
|
|
2299
|
+
enterComplexColTypeList(ctx) {
|
|
2300
|
+
}
|
|
2301
|
+
// Exit a parse tree produced by SqlBaseParser#complexColTypeList.
|
|
2302
|
+
exitComplexColTypeList(ctx) {
|
|
2303
|
+
}
|
|
2304
|
+
// Enter a parse tree produced by SqlBaseParser#complexColType.
|
|
2305
|
+
enterComplexColType(ctx) {
|
|
2306
|
+
}
|
|
2307
|
+
// Exit a parse tree produced by SqlBaseParser#complexColType.
|
|
2308
|
+
exitComplexColType(ctx) {
|
|
2309
|
+
}
|
|
2310
|
+
// Enter a parse tree produced by SqlBaseParser#codeLiteral.
|
|
2311
|
+
enterCodeLiteral(ctx) {
|
|
2312
|
+
}
|
|
2313
|
+
// Exit a parse tree produced by SqlBaseParser#codeLiteral.
|
|
2314
|
+
exitCodeLiteral(ctx) {
|
|
2315
|
+
}
|
|
2316
|
+
// Enter a parse tree produced by SqlBaseParser#routineCharacteristics.
|
|
2317
|
+
enterRoutineCharacteristics(ctx) {
|
|
2318
|
+
}
|
|
2319
|
+
// Exit a parse tree produced by SqlBaseParser#routineCharacteristics.
|
|
2320
|
+
exitRoutineCharacteristics(ctx) {
|
|
2321
|
+
}
|
|
2322
|
+
// Enter a parse tree produced by SqlBaseParser#routineLanguage.
|
|
2323
|
+
enterRoutineLanguage(ctx) {
|
|
2324
|
+
}
|
|
2325
|
+
// Exit a parse tree produced by SqlBaseParser#routineLanguage.
|
|
2326
|
+
exitRoutineLanguage(ctx) {
|
|
2327
|
+
}
|
|
2328
|
+
// Enter a parse tree produced by SqlBaseParser#specificName.
|
|
2329
|
+
enterSpecificName(ctx) {
|
|
2330
|
+
}
|
|
2331
|
+
// Exit a parse tree produced by SqlBaseParser#specificName.
|
|
2332
|
+
exitSpecificName(ctx) {
|
|
2333
|
+
}
|
|
2334
|
+
// Enter a parse tree produced by SqlBaseParser#deterministic.
|
|
2335
|
+
enterDeterministic(ctx) {
|
|
2336
|
+
}
|
|
2337
|
+
// Exit a parse tree produced by SqlBaseParser#deterministic.
|
|
2338
|
+
exitDeterministic(ctx) {
|
|
2339
|
+
}
|
|
2340
|
+
// Enter a parse tree produced by SqlBaseParser#sqlDataAccess.
|
|
2341
|
+
enterSqlDataAccess(ctx) {
|
|
2342
|
+
}
|
|
2343
|
+
// Exit a parse tree produced by SqlBaseParser#sqlDataAccess.
|
|
2344
|
+
exitSqlDataAccess(ctx) {
|
|
2345
|
+
}
|
|
2346
|
+
// Enter a parse tree produced by SqlBaseParser#nullCall.
|
|
2347
|
+
enterNullCall(ctx) {
|
|
2348
|
+
}
|
|
2349
|
+
// Exit a parse tree produced by SqlBaseParser#nullCall.
|
|
2350
|
+
exitNullCall(ctx) {
|
|
2351
|
+
}
|
|
2352
|
+
// Enter a parse tree produced by SqlBaseParser#rightsClause.
|
|
2353
|
+
enterRightsClause(ctx) {
|
|
2354
|
+
}
|
|
2355
|
+
// Exit a parse tree produced by SqlBaseParser#rightsClause.
|
|
2356
|
+
exitRightsClause(ctx) {
|
|
2357
|
+
}
|
|
2358
|
+
// Enter a parse tree produced by SqlBaseParser#whenClause.
|
|
2359
|
+
enterWhenClause(ctx) {
|
|
2360
|
+
}
|
|
2361
|
+
// Exit a parse tree produced by SqlBaseParser#whenClause.
|
|
2362
|
+
exitWhenClause(ctx) {
|
|
2363
|
+
}
|
|
2364
|
+
// Enter a parse tree produced by SqlBaseParser#windowClause.
|
|
2365
|
+
enterWindowClause(ctx) {
|
|
2366
|
+
}
|
|
2367
|
+
// Exit a parse tree produced by SqlBaseParser#windowClause.
|
|
2368
|
+
exitWindowClause(ctx) {
|
|
2369
|
+
}
|
|
2370
|
+
// Enter a parse tree produced by SqlBaseParser#namedWindow.
|
|
2371
|
+
enterNamedWindow(ctx) {
|
|
2372
|
+
}
|
|
2373
|
+
// Exit a parse tree produced by SqlBaseParser#namedWindow.
|
|
2374
|
+
exitNamedWindow(ctx) {
|
|
2375
|
+
}
|
|
2376
|
+
// Enter a parse tree produced by SqlBaseParser#windowRef.
|
|
2377
|
+
enterWindowRef(ctx) {
|
|
2378
|
+
}
|
|
2379
|
+
// Exit a parse tree produced by SqlBaseParser#windowRef.
|
|
2380
|
+
exitWindowRef(ctx) {
|
|
2381
|
+
}
|
|
2382
|
+
// Enter a parse tree produced by SqlBaseParser#windowDef.
|
|
2383
|
+
enterWindowDef(ctx) {
|
|
2384
|
+
}
|
|
2385
|
+
// Exit a parse tree produced by SqlBaseParser#windowDef.
|
|
2386
|
+
exitWindowDef(ctx) {
|
|
2387
|
+
}
|
|
2388
|
+
// Enter a parse tree produced by SqlBaseParser#windowFrame.
|
|
2389
|
+
enterWindowFrame(ctx) {
|
|
2390
|
+
}
|
|
2391
|
+
// Exit a parse tree produced by SqlBaseParser#windowFrame.
|
|
2392
|
+
exitWindowFrame(ctx) {
|
|
2393
|
+
}
|
|
2394
|
+
// Enter a parse tree produced by SqlBaseParser#frameBound.
|
|
2395
|
+
enterFrameBound(ctx) {
|
|
2396
|
+
}
|
|
2397
|
+
// Exit a parse tree produced by SqlBaseParser#frameBound.
|
|
2398
|
+
exitFrameBound(ctx) {
|
|
2399
|
+
}
|
|
2400
|
+
// Enter a parse tree produced by SqlBaseParser#qualifiedNameList.
|
|
2401
|
+
enterQualifiedNameList(ctx) {
|
|
2402
|
+
}
|
|
2403
|
+
// Exit a parse tree produced by SqlBaseParser#qualifiedNameList.
|
|
2404
|
+
exitQualifiedNameList(ctx) {
|
|
2405
|
+
}
|
|
2406
|
+
// Enter a parse tree produced by SqlBaseParser#functionName.
|
|
2407
|
+
enterFunctionName(ctx) {
|
|
2408
|
+
}
|
|
2409
|
+
// Exit a parse tree produced by SqlBaseParser#functionName.
|
|
2410
|
+
exitFunctionName(ctx) {
|
|
2411
|
+
}
|
|
2412
|
+
// Enter a parse tree produced by SqlBaseParser#qualifiedName.
|
|
2413
|
+
enterQualifiedName(ctx) {
|
|
2414
|
+
}
|
|
2415
|
+
// Exit a parse tree produced by SqlBaseParser#qualifiedName.
|
|
2416
|
+
exitQualifiedName(ctx) {
|
|
2417
|
+
}
|
|
2418
|
+
// Enter a parse tree produced by SqlBaseParser#errorCapturingIdentifier.
|
|
2419
|
+
enterErrorCapturingIdentifier(ctx) {
|
|
2420
|
+
}
|
|
2421
|
+
// Exit a parse tree produced by SqlBaseParser#errorCapturingIdentifier.
|
|
2422
|
+
exitErrorCapturingIdentifier(ctx) {
|
|
2423
|
+
}
|
|
2424
|
+
// Enter a parse tree produced by SqlBaseParser#errorIdent.
|
|
2425
|
+
enterErrorIdent(ctx) {
|
|
2426
|
+
}
|
|
2427
|
+
// Exit a parse tree produced by SqlBaseParser#errorIdent.
|
|
2428
|
+
exitErrorIdent(ctx) {
|
|
2429
|
+
}
|
|
2430
|
+
// Enter a parse tree produced by SqlBaseParser#realIdent.
|
|
2431
|
+
enterRealIdent(ctx) {
|
|
2432
|
+
}
|
|
2433
|
+
// Exit a parse tree produced by SqlBaseParser#realIdent.
|
|
2434
|
+
exitRealIdent(ctx) {
|
|
2435
|
+
}
|
|
2436
|
+
// Enter a parse tree produced by SqlBaseParser#identifier.
|
|
2437
|
+
enterIdentifier(ctx) {
|
|
2438
|
+
}
|
|
2439
|
+
// Exit a parse tree produced by SqlBaseParser#identifier.
|
|
2440
|
+
exitIdentifier(ctx) {
|
|
2441
|
+
}
|
|
2442
|
+
// Enter a parse tree produced by SqlBaseParser#simpleIdentifier.
|
|
2443
|
+
enterSimpleIdentifier(ctx) {
|
|
2444
|
+
}
|
|
2445
|
+
// Exit a parse tree produced by SqlBaseParser#simpleIdentifier.
|
|
2446
|
+
exitSimpleIdentifier(ctx) {
|
|
2447
|
+
}
|
|
2448
|
+
// Enter a parse tree produced by SqlBaseParser#unquotedIdentifier.
|
|
2449
|
+
enterUnquotedIdentifier(ctx) {
|
|
2450
|
+
}
|
|
2451
|
+
// Exit a parse tree produced by SqlBaseParser#unquotedIdentifier.
|
|
2452
|
+
exitUnquotedIdentifier(ctx) {
|
|
2453
|
+
}
|
|
2454
|
+
// Enter a parse tree produced by SqlBaseParser#quotedIdentifierAlternative.
|
|
2455
|
+
enterQuotedIdentifierAlternative(ctx) {
|
|
2456
|
+
}
|
|
2457
|
+
// Exit a parse tree produced by SqlBaseParser#quotedIdentifierAlternative.
|
|
2458
|
+
exitQuotedIdentifierAlternative(ctx) {
|
|
2459
|
+
}
|
|
2460
|
+
// Enter a parse tree produced by SqlBaseParser#identifierLiteral.
|
|
2461
|
+
enterIdentifierLiteral(ctx) {
|
|
2462
|
+
}
|
|
2463
|
+
// Exit a parse tree produced by SqlBaseParser#identifierLiteral.
|
|
2464
|
+
exitIdentifierLiteral(ctx) {
|
|
2465
|
+
}
|
|
2466
|
+
// Enter a parse tree produced by SqlBaseParser#simpleUnquotedIdentifier.
|
|
2467
|
+
enterSimpleUnquotedIdentifier(ctx) {
|
|
2468
|
+
}
|
|
2469
|
+
// Exit a parse tree produced by SqlBaseParser#simpleUnquotedIdentifier.
|
|
2470
|
+
exitSimpleUnquotedIdentifier(ctx) {
|
|
2471
|
+
}
|
|
2472
|
+
// Enter a parse tree produced by SqlBaseParser#simpleQuotedIdentifierAlternative.
|
|
2473
|
+
enterSimpleQuotedIdentifierAlternative(ctx) {
|
|
2474
|
+
}
|
|
2475
|
+
// Exit a parse tree produced by SqlBaseParser#simpleQuotedIdentifierAlternative.
|
|
2476
|
+
exitSimpleQuotedIdentifierAlternative(ctx) {
|
|
2477
|
+
}
|
|
2478
|
+
// Enter a parse tree produced by SqlBaseParser#quotedIdentifier.
|
|
2479
|
+
enterQuotedIdentifier(ctx) {
|
|
2480
|
+
}
|
|
2481
|
+
// Exit a parse tree produced by SqlBaseParser#quotedIdentifier.
|
|
2482
|
+
exitQuotedIdentifier(ctx) {
|
|
2483
|
+
}
|
|
2484
|
+
// Enter a parse tree produced by SqlBaseParser#backQuotedIdentifier.
|
|
2485
|
+
enterBackQuotedIdentifier(ctx) {
|
|
2486
|
+
}
|
|
2487
|
+
// Exit a parse tree produced by SqlBaseParser#backQuotedIdentifier.
|
|
2488
|
+
exitBackQuotedIdentifier(ctx) {
|
|
2489
|
+
}
|
|
2490
|
+
// Enter a parse tree produced by SqlBaseParser#exponentLiteral.
|
|
2491
|
+
enterExponentLiteral(ctx) {
|
|
2492
|
+
}
|
|
2493
|
+
// Exit a parse tree produced by SqlBaseParser#exponentLiteral.
|
|
2494
|
+
exitExponentLiteral(ctx) {
|
|
2495
|
+
}
|
|
2496
|
+
// Enter a parse tree produced by SqlBaseParser#decimalLiteral.
|
|
2497
|
+
enterDecimalLiteral(ctx) {
|
|
2498
|
+
}
|
|
2499
|
+
// Exit a parse tree produced by SqlBaseParser#decimalLiteral.
|
|
2500
|
+
exitDecimalLiteral(ctx) {
|
|
2501
|
+
}
|
|
2502
|
+
// Enter a parse tree produced by SqlBaseParser#legacyDecimalLiteral.
|
|
2503
|
+
enterLegacyDecimalLiteral(ctx) {
|
|
2504
|
+
}
|
|
2505
|
+
// Exit a parse tree produced by SqlBaseParser#legacyDecimalLiteral.
|
|
2506
|
+
exitLegacyDecimalLiteral(ctx) {
|
|
2507
|
+
}
|
|
2508
|
+
// Enter a parse tree produced by SqlBaseParser#integerLiteral.
|
|
2509
|
+
enterIntegerLiteral(ctx) {
|
|
2510
|
+
}
|
|
2511
|
+
// Exit a parse tree produced by SqlBaseParser#integerLiteral.
|
|
2512
|
+
exitIntegerLiteral(ctx) {
|
|
2513
|
+
}
|
|
2514
|
+
// Enter a parse tree produced by SqlBaseParser#bigIntLiteral.
|
|
2515
|
+
enterBigIntLiteral(ctx) {
|
|
2516
|
+
}
|
|
2517
|
+
// Exit a parse tree produced by SqlBaseParser#bigIntLiteral.
|
|
2518
|
+
exitBigIntLiteral(ctx) {
|
|
2519
|
+
}
|
|
2520
|
+
// Enter a parse tree produced by SqlBaseParser#smallIntLiteral.
|
|
2521
|
+
enterSmallIntLiteral(ctx) {
|
|
2522
|
+
}
|
|
2523
|
+
// Exit a parse tree produced by SqlBaseParser#smallIntLiteral.
|
|
2524
|
+
exitSmallIntLiteral(ctx) {
|
|
2525
|
+
}
|
|
2526
|
+
// Enter a parse tree produced by SqlBaseParser#tinyIntLiteral.
|
|
2527
|
+
enterTinyIntLiteral(ctx) {
|
|
2528
|
+
}
|
|
2529
|
+
// Exit a parse tree produced by SqlBaseParser#tinyIntLiteral.
|
|
2530
|
+
exitTinyIntLiteral(ctx) {
|
|
2531
|
+
}
|
|
2532
|
+
// Enter a parse tree produced by SqlBaseParser#doubleLiteral.
|
|
2533
|
+
enterDoubleLiteral(ctx) {
|
|
2534
|
+
}
|
|
2535
|
+
// Exit a parse tree produced by SqlBaseParser#doubleLiteral.
|
|
2536
|
+
exitDoubleLiteral(ctx) {
|
|
2537
|
+
}
|
|
2538
|
+
// Enter a parse tree produced by SqlBaseParser#floatLiteral.
|
|
2539
|
+
enterFloatLiteral(ctx) {
|
|
2540
|
+
}
|
|
2541
|
+
// Exit a parse tree produced by SqlBaseParser#floatLiteral.
|
|
2542
|
+
exitFloatLiteral(ctx) {
|
|
2543
|
+
}
|
|
2544
|
+
// Enter a parse tree produced by SqlBaseParser#bigDecimalLiteral.
|
|
2545
|
+
enterBigDecimalLiteral(ctx) {
|
|
2546
|
+
}
|
|
2547
|
+
// Exit a parse tree produced by SqlBaseParser#bigDecimalLiteral.
|
|
2548
|
+
exitBigDecimalLiteral(ctx) {
|
|
2549
|
+
}
|
|
2550
|
+
// Enter a parse tree produced by SqlBaseParser#integerVal.
|
|
2551
|
+
enterIntegerVal(ctx) {
|
|
2552
|
+
}
|
|
2553
|
+
// Exit a parse tree produced by SqlBaseParser#integerVal.
|
|
2554
|
+
exitIntegerVal(ctx) {
|
|
2555
|
+
}
|
|
2556
|
+
// Enter a parse tree produced by SqlBaseParser#parameterIntegerValue.
|
|
2557
|
+
enterParameterIntegerValue(ctx) {
|
|
2558
|
+
}
|
|
2559
|
+
// Exit a parse tree produced by SqlBaseParser#parameterIntegerValue.
|
|
2560
|
+
exitParameterIntegerValue(ctx) {
|
|
2561
|
+
}
|
|
2562
|
+
// Enter a parse tree produced by SqlBaseParser#columnConstraintDefinition.
|
|
2563
|
+
enterColumnConstraintDefinition(ctx) {
|
|
2564
|
+
}
|
|
2565
|
+
// Exit a parse tree produced by SqlBaseParser#columnConstraintDefinition.
|
|
2566
|
+
exitColumnConstraintDefinition(ctx) {
|
|
2567
|
+
}
|
|
2568
|
+
// Enter a parse tree produced by SqlBaseParser#columnConstraint.
|
|
2569
|
+
enterColumnConstraint(ctx) {
|
|
2570
|
+
}
|
|
2571
|
+
// Exit a parse tree produced by SqlBaseParser#columnConstraint.
|
|
2572
|
+
exitColumnConstraint(ctx) {
|
|
2573
|
+
}
|
|
2574
|
+
// Enter a parse tree produced by SqlBaseParser#tableConstraintDefinition.
|
|
2575
|
+
enterTableConstraintDefinition(ctx) {
|
|
2576
|
+
}
|
|
2577
|
+
// Exit a parse tree produced by SqlBaseParser#tableConstraintDefinition.
|
|
2578
|
+
exitTableConstraintDefinition(ctx) {
|
|
2579
|
+
}
|
|
2580
|
+
// Enter a parse tree produced by SqlBaseParser#tableConstraint.
|
|
2581
|
+
enterTableConstraint(ctx) {
|
|
2582
|
+
}
|
|
2583
|
+
// Exit a parse tree produced by SqlBaseParser#tableConstraint.
|
|
2584
|
+
exitTableConstraint(ctx) {
|
|
2585
|
+
}
|
|
2586
|
+
// Enter a parse tree produced by SqlBaseParser#checkConstraint.
|
|
2587
|
+
enterCheckConstraint(ctx) {
|
|
2588
|
+
}
|
|
2589
|
+
// Exit a parse tree produced by SqlBaseParser#checkConstraint.
|
|
2590
|
+
exitCheckConstraint(ctx) {
|
|
2591
|
+
}
|
|
2592
|
+
// Enter a parse tree produced by SqlBaseParser#uniqueSpec.
|
|
2593
|
+
enterUniqueSpec(ctx) {
|
|
2594
|
+
}
|
|
2595
|
+
// Exit a parse tree produced by SqlBaseParser#uniqueSpec.
|
|
2596
|
+
exitUniqueSpec(ctx) {
|
|
2597
|
+
}
|
|
2598
|
+
// Enter a parse tree produced by SqlBaseParser#uniqueConstraint.
|
|
2599
|
+
enterUniqueConstraint(ctx) {
|
|
2600
|
+
}
|
|
2601
|
+
// Exit a parse tree produced by SqlBaseParser#uniqueConstraint.
|
|
2602
|
+
exitUniqueConstraint(ctx) {
|
|
2603
|
+
}
|
|
2604
|
+
// Enter a parse tree produced by SqlBaseParser#referenceSpec.
|
|
2605
|
+
enterReferenceSpec(ctx) {
|
|
2606
|
+
}
|
|
2607
|
+
// Exit a parse tree produced by SqlBaseParser#referenceSpec.
|
|
2608
|
+
exitReferenceSpec(ctx) {
|
|
2609
|
+
}
|
|
2610
|
+
// Enter a parse tree produced by SqlBaseParser#foreignKeyConstraint.
|
|
2611
|
+
enterForeignKeyConstraint(ctx) {
|
|
2612
|
+
}
|
|
2613
|
+
// Exit a parse tree produced by SqlBaseParser#foreignKeyConstraint.
|
|
2614
|
+
exitForeignKeyConstraint(ctx) {
|
|
2615
|
+
}
|
|
2616
|
+
// Enter a parse tree produced by SqlBaseParser#constraintCharacteristic.
|
|
2617
|
+
enterConstraintCharacteristic(ctx) {
|
|
2618
|
+
}
|
|
2619
|
+
// Exit a parse tree produced by SqlBaseParser#constraintCharacteristic.
|
|
2620
|
+
exitConstraintCharacteristic(ctx) {
|
|
2621
|
+
}
|
|
2622
|
+
// Enter a parse tree produced by SqlBaseParser#enforcedCharacteristic.
|
|
2623
|
+
enterEnforcedCharacteristic(ctx) {
|
|
2624
|
+
}
|
|
2625
|
+
// Exit a parse tree produced by SqlBaseParser#enforcedCharacteristic.
|
|
2626
|
+
exitEnforcedCharacteristic(ctx) {
|
|
2627
|
+
}
|
|
2628
|
+
// Enter a parse tree produced by SqlBaseParser#relyCharacteristic.
|
|
2629
|
+
enterRelyCharacteristic(ctx) {
|
|
2630
|
+
}
|
|
2631
|
+
// Exit a parse tree produced by SqlBaseParser#relyCharacteristic.
|
|
2632
|
+
exitRelyCharacteristic(ctx) {
|
|
2633
|
+
}
|
|
2634
|
+
// Enter a parse tree produced by SqlBaseParser#alterColumnSpecList.
|
|
2635
|
+
enterAlterColumnSpecList(ctx) {
|
|
2636
|
+
}
|
|
2637
|
+
// Exit a parse tree produced by SqlBaseParser#alterColumnSpecList.
|
|
2638
|
+
exitAlterColumnSpecList(ctx) {
|
|
2639
|
+
}
|
|
2640
|
+
// Enter a parse tree produced by SqlBaseParser#alterColumnSpec.
|
|
2641
|
+
enterAlterColumnSpec(ctx) {
|
|
2642
|
+
}
|
|
2643
|
+
// Exit a parse tree produced by SqlBaseParser#alterColumnSpec.
|
|
2644
|
+
exitAlterColumnSpec(ctx) {
|
|
2645
|
+
}
|
|
2646
|
+
// Enter a parse tree produced by SqlBaseParser#alterColumnAction.
|
|
2647
|
+
enterAlterColumnAction(ctx) {
|
|
2648
|
+
}
|
|
2649
|
+
// Exit a parse tree produced by SqlBaseParser#alterColumnAction.
|
|
2650
|
+
exitAlterColumnAction(ctx) {
|
|
2651
|
+
}
|
|
2652
|
+
// Enter a parse tree produced by SqlBaseParser#singleStringLiteralValue.
|
|
2653
|
+
enterSingleStringLiteralValue(ctx) {
|
|
2654
|
+
}
|
|
2655
|
+
// Exit a parse tree produced by SqlBaseParser#singleStringLiteralValue.
|
|
2656
|
+
exitSingleStringLiteralValue(ctx) {
|
|
2657
|
+
}
|
|
2658
|
+
// Enter a parse tree produced by SqlBaseParser#singleDoubleQuotedStringLiteralValue.
|
|
2659
|
+
enterSingleDoubleQuotedStringLiteralValue(ctx) {
|
|
2660
|
+
}
|
|
2661
|
+
// Exit a parse tree produced by SqlBaseParser#singleDoubleQuotedStringLiteralValue.
|
|
2662
|
+
exitSingleDoubleQuotedStringLiteralValue(ctx) {
|
|
2663
|
+
}
|
|
2664
|
+
// Enter a parse tree produced by SqlBaseParser#singleStringLit.
|
|
2665
|
+
enterSingleStringLit(ctx) {
|
|
2666
|
+
}
|
|
2667
|
+
// Exit a parse tree produced by SqlBaseParser#singleStringLit.
|
|
2668
|
+
exitSingleStringLit(ctx) {
|
|
2669
|
+
}
|
|
2670
|
+
// Enter a parse tree produced by SqlBaseParser#namedParameterMarkerRule.
|
|
2671
|
+
enterNamedParameterMarkerRule(ctx) {
|
|
2672
|
+
}
|
|
2673
|
+
// Exit a parse tree produced by SqlBaseParser#namedParameterMarkerRule.
|
|
2674
|
+
exitNamedParameterMarkerRule(ctx) {
|
|
2675
|
+
}
|
|
2676
|
+
// Enter a parse tree produced by SqlBaseParser#positionalParameterMarkerRule.
|
|
2677
|
+
enterPositionalParameterMarkerRule(ctx) {
|
|
2678
|
+
}
|
|
2679
|
+
// Exit a parse tree produced by SqlBaseParser#positionalParameterMarkerRule.
|
|
2680
|
+
exitPositionalParameterMarkerRule(ctx) {
|
|
2681
|
+
}
|
|
2682
|
+
// Enter a parse tree produced by SqlBaseParser#stringLit.
|
|
2683
|
+
enterStringLit(ctx) {
|
|
2684
|
+
}
|
|
2685
|
+
// Exit a parse tree produced by SqlBaseParser#stringLit.
|
|
2686
|
+
exitStringLit(ctx) {
|
|
2687
|
+
}
|
|
2688
|
+
// Enter a parse tree produced by SqlBaseParser#comment.
|
|
2689
|
+
enterComment(ctx) {
|
|
2690
|
+
}
|
|
2691
|
+
// Exit a parse tree produced by SqlBaseParser#comment.
|
|
2692
|
+
exitComment(ctx) {
|
|
2693
|
+
}
|
|
2694
|
+
// Enter a parse tree produced by SqlBaseParser#version.
|
|
2695
|
+
enterVersion(ctx) {
|
|
2696
|
+
}
|
|
2697
|
+
// Exit a parse tree produced by SqlBaseParser#version.
|
|
2698
|
+
exitVersion(ctx) {
|
|
2699
|
+
}
|
|
2700
|
+
// Enter a parse tree produced by SqlBaseParser#operatorPipeRightSide.
|
|
2701
|
+
enterOperatorPipeRightSide(ctx) {
|
|
2702
|
+
}
|
|
2703
|
+
// Exit a parse tree produced by SqlBaseParser#operatorPipeRightSide.
|
|
2704
|
+
exitOperatorPipeRightSide(ctx) {
|
|
2705
|
+
}
|
|
2706
|
+
// Enter a parse tree produced by SqlBaseParser#operatorPipeSetAssignmentSeq.
|
|
2707
|
+
enterOperatorPipeSetAssignmentSeq(ctx) {
|
|
2708
|
+
}
|
|
2709
|
+
// Exit a parse tree produced by SqlBaseParser#operatorPipeSetAssignmentSeq.
|
|
2710
|
+
exitOperatorPipeSetAssignmentSeq(ctx) {
|
|
2711
|
+
}
|
|
2712
|
+
// Enter a parse tree produced by SqlBaseParser#ansiNonReserved.
|
|
2713
|
+
enterAnsiNonReserved(ctx) {
|
|
2714
|
+
}
|
|
2715
|
+
// Exit a parse tree produced by SqlBaseParser#ansiNonReserved.
|
|
2716
|
+
exitAnsiNonReserved(ctx) {
|
|
2717
|
+
}
|
|
2718
|
+
// Enter a parse tree produced by SqlBaseParser#strictNonReserved.
|
|
2719
|
+
enterStrictNonReserved(ctx) {
|
|
2720
|
+
}
|
|
2721
|
+
// Exit a parse tree produced by SqlBaseParser#strictNonReserved.
|
|
2722
|
+
exitStrictNonReserved(ctx) {
|
|
2723
|
+
}
|
|
2724
|
+
// Enter a parse tree produced by SqlBaseParser#nonReserved.
|
|
2725
|
+
enterNonReserved(ctx) {
|
|
2726
|
+
}
|
|
2727
|
+
// Exit a parse tree produced by SqlBaseParser#nonReserved.
|
|
2728
|
+
exitNonReserved(ctx) {
|
|
2729
|
+
}
|
|
2730
|
+
}
|