@dbml/core 3.0.0 → 3.1.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/lib/model_structure/database.js +5 -3
- package/lib/model_structure/enum.js +6 -3
- package/lib/model_structure/enumValue.js +6 -3
- package/lib/model_structure/field.js +6 -3
- package/lib/model_structure/schema.js +6 -3
- package/lib/model_structure/table.js +6 -3
- package/lib/parse/ANTLR/ASTGeneration/AST.js +54 -8
- package/lib/parse/ANTLR/ASTGeneration/ParserErrorListener.js +11 -6
- package/lib/parse/ANTLR/ASTGeneration/constants.js +39 -0
- package/lib/parse/ANTLR/ASTGeneration/index.js +33 -11
- package/lib/parse/ANTLR/ASTGeneration/mysql/MySQLASTGen.js +1148 -0
- package/lib/parse/ANTLR/ASTGeneration/postgres/PostgresASTGen.js +64 -62
- package/lib/parse/ANTLR/parsers/mysql/MySqlLexer.g4 +1357 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlLexer.interp +3515 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlLexer.js +1211 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlLexer.tokens +2300 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParser.g4 +3494 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParser.interp +2694 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParser.js +3 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParser.tokens +2300 -0
- package/lib/parse/ANTLR/parsers/mysql/MySqlParserVisitor.js +4360 -0
- package/lib/parse/Parser.js +8 -0
- package/package.json +3 -3
|
@@ -0,0 +1,4360 @@
|
|
|
1
|
+
"use strict";
|
|
2
|
+
|
|
3
|
+
function _typeof(obj) { "@babel/helpers - typeof"; return _typeof = "function" == typeof Symbol && "symbol" == typeof Symbol.iterator ? function (obj) { return typeof obj; } : function (obj) { return obj && "function" == typeof Symbol && obj.constructor === Symbol && obj !== Symbol.prototype ? "symbol" : typeof obj; }, _typeof(obj); }
|
|
4
|
+
Object.defineProperty(exports, "__esModule", {
|
|
5
|
+
value: true
|
|
6
|
+
});
|
|
7
|
+
exports["default"] = void 0;
|
|
8
|
+
var _antlr = _interopRequireDefault(require("antlr4"));
|
|
9
|
+
function _interopRequireDefault(obj) { return obj && obj.__esModule ? obj : { "default": obj }; }
|
|
10
|
+
function _classCallCheck(instance, Constructor) { if (!(instance instanceof Constructor)) { throw new TypeError("Cannot call a class as a function"); } }
|
|
11
|
+
function _defineProperties(target, props) { for (var i = 0; i < props.length; i++) { var descriptor = props[i]; descriptor.enumerable = descriptor.enumerable || false; descriptor.configurable = true; if ("value" in descriptor) descriptor.writable = true; Object.defineProperty(target, _toPropertyKey(descriptor.key), descriptor); } }
|
|
12
|
+
function _createClass(Constructor, protoProps, staticProps) { if (protoProps) _defineProperties(Constructor.prototype, protoProps); if (staticProps) _defineProperties(Constructor, staticProps); Object.defineProperty(Constructor, "prototype", { writable: false }); return Constructor; }
|
|
13
|
+
function _toPropertyKey(arg) { var key = _toPrimitive(arg, "string"); return _typeof(key) === "symbol" ? key : String(key); }
|
|
14
|
+
function _toPrimitive(input, hint) { if (_typeof(input) !== "object" || input === null) return input; var prim = input[Symbol.toPrimitive]; if (prim !== undefined) { var res = prim.call(input, hint || "default"); if (_typeof(res) !== "object") return res; throw new TypeError("@@toPrimitive must return a primitive value."); } return (hint === "string" ? String : Number)(input); }
|
|
15
|
+
function _inherits(subClass, superClass) { if (typeof superClass !== "function" && superClass !== null) { throw new TypeError("Super expression must either be null or a function"); } subClass.prototype = Object.create(superClass && superClass.prototype, { constructor: { value: subClass, writable: true, configurable: true } }); Object.defineProperty(subClass, "prototype", { writable: false }); if (superClass) _setPrototypeOf(subClass, superClass); }
|
|
16
|
+
function _setPrototypeOf(o, p) { _setPrototypeOf = Object.setPrototypeOf ? Object.setPrototypeOf.bind() : function _setPrototypeOf(o, p) { o.__proto__ = p; return o; }; return _setPrototypeOf(o, p); }
|
|
17
|
+
function _createSuper(Derived) { var hasNativeReflectConstruct = _isNativeReflectConstruct(); return function _createSuperInternal() { var Super = _getPrototypeOf(Derived), result; if (hasNativeReflectConstruct) { var NewTarget = _getPrototypeOf(this).constructor; result = Reflect.construct(Super, arguments, NewTarget); } else { result = Super.apply(this, arguments); } return _possibleConstructorReturn(this, result); }; }
|
|
18
|
+
function _possibleConstructorReturn(self, call) { if (call && (_typeof(call) === "object" || typeof call === "function")) { return call; } else if (call !== void 0) { throw new TypeError("Derived constructors may only return object or undefined"); } return _assertThisInitialized(self); }
|
|
19
|
+
function _assertThisInitialized(self) { if (self === void 0) { throw new ReferenceError("this hasn't been initialised - super() hasn't been called"); } return self; }
|
|
20
|
+
function _isNativeReflectConstruct() { if (typeof Reflect === "undefined" || !Reflect.construct) return false; if (Reflect.construct.sham) return false; if (typeof Proxy === "function") return true; try { Boolean.prototype.valueOf.call(Reflect.construct(Boolean, [], function () {})); return true; } catch (e) { return false; } }
|
|
21
|
+
function _getPrototypeOf(o) { _getPrototypeOf = Object.setPrototypeOf ? Object.getPrototypeOf.bind() : function _getPrototypeOf(o) { return o.__proto__ || Object.getPrototypeOf(o); }; return _getPrototypeOf(o); } // Generated from ./MySqlParser.g4 by ANTLR 4.13.1
|
|
22
|
+
// jshint ignore: start
|
|
23
|
+
// This class defines a complete generic visitor for a parse tree produced by MySqlParser.
|
|
24
|
+
var MySqlParserVisitor = /*#__PURE__*/function (_antlr4$tree$ParseTre) {
|
|
25
|
+
_inherits(MySqlParserVisitor, _antlr4$tree$ParseTre);
|
|
26
|
+
var _super = _createSuper(MySqlParserVisitor);
|
|
27
|
+
function MySqlParserVisitor() {
|
|
28
|
+
_classCallCheck(this, MySqlParserVisitor);
|
|
29
|
+
return _super.apply(this, arguments);
|
|
30
|
+
}
|
|
31
|
+
_createClass(MySqlParserVisitor, [{
|
|
32
|
+
key: "visitRoot",
|
|
33
|
+
value:
|
|
34
|
+
// Visit a parse tree produced by MySqlParser#root.
|
|
35
|
+
function visitRoot(ctx) {
|
|
36
|
+
return this.visitChildren(ctx);
|
|
37
|
+
}
|
|
38
|
+
|
|
39
|
+
// Visit a parse tree produced by MySqlParser#sqlStatements.
|
|
40
|
+
}, {
|
|
41
|
+
key: "visitSqlStatements",
|
|
42
|
+
value: function visitSqlStatements(ctx) {
|
|
43
|
+
return this.visitChildren(ctx);
|
|
44
|
+
}
|
|
45
|
+
|
|
46
|
+
// Visit a parse tree produced by MySqlParser#sqlStatement.
|
|
47
|
+
}, {
|
|
48
|
+
key: "visitSqlStatement",
|
|
49
|
+
value: function visitSqlStatement(ctx) {
|
|
50
|
+
return this.visitChildren(ctx);
|
|
51
|
+
}
|
|
52
|
+
|
|
53
|
+
// Visit a parse tree produced by MySqlParser#emptyStatement_.
|
|
54
|
+
}, {
|
|
55
|
+
key: "visitEmptyStatement_",
|
|
56
|
+
value: function visitEmptyStatement_(ctx) {
|
|
57
|
+
return this.visitChildren(ctx);
|
|
58
|
+
}
|
|
59
|
+
|
|
60
|
+
// Visit a parse tree produced by MySqlParser#ddlStatement.
|
|
61
|
+
}, {
|
|
62
|
+
key: "visitDdlStatement",
|
|
63
|
+
value: function visitDdlStatement(ctx) {
|
|
64
|
+
return this.visitChildren(ctx);
|
|
65
|
+
}
|
|
66
|
+
|
|
67
|
+
// Visit a parse tree produced by MySqlParser#dmlStatement.
|
|
68
|
+
}, {
|
|
69
|
+
key: "visitDmlStatement",
|
|
70
|
+
value: function visitDmlStatement(ctx) {
|
|
71
|
+
return this.visitChildren(ctx);
|
|
72
|
+
}
|
|
73
|
+
|
|
74
|
+
// Visit a parse tree produced by MySqlParser#transactionStatement.
|
|
75
|
+
}, {
|
|
76
|
+
key: "visitTransactionStatement",
|
|
77
|
+
value: function visitTransactionStatement(ctx) {
|
|
78
|
+
return this.visitChildren(ctx);
|
|
79
|
+
}
|
|
80
|
+
|
|
81
|
+
// Visit a parse tree produced by MySqlParser#replicationStatement.
|
|
82
|
+
}, {
|
|
83
|
+
key: "visitReplicationStatement",
|
|
84
|
+
value: function visitReplicationStatement(ctx) {
|
|
85
|
+
return this.visitChildren(ctx);
|
|
86
|
+
}
|
|
87
|
+
|
|
88
|
+
// Visit a parse tree produced by MySqlParser#preparedStatement.
|
|
89
|
+
}, {
|
|
90
|
+
key: "visitPreparedStatement",
|
|
91
|
+
value: function visitPreparedStatement(ctx) {
|
|
92
|
+
return this.visitChildren(ctx);
|
|
93
|
+
}
|
|
94
|
+
|
|
95
|
+
// Visit a parse tree produced by MySqlParser#compoundStatement.
|
|
96
|
+
}, {
|
|
97
|
+
key: "visitCompoundStatement",
|
|
98
|
+
value: function visitCompoundStatement(ctx) {
|
|
99
|
+
return this.visitChildren(ctx);
|
|
100
|
+
}
|
|
101
|
+
|
|
102
|
+
// Visit a parse tree produced by MySqlParser#administrationStatement.
|
|
103
|
+
}, {
|
|
104
|
+
key: "visitAdministrationStatement",
|
|
105
|
+
value: function visitAdministrationStatement(ctx) {
|
|
106
|
+
return this.visitChildren(ctx);
|
|
107
|
+
}
|
|
108
|
+
|
|
109
|
+
// Visit a parse tree produced by MySqlParser#utilityStatement.
|
|
110
|
+
}, {
|
|
111
|
+
key: "visitUtilityStatement",
|
|
112
|
+
value: function visitUtilityStatement(ctx) {
|
|
113
|
+
return this.visitChildren(ctx);
|
|
114
|
+
}
|
|
115
|
+
|
|
116
|
+
// Visit a parse tree produced by MySqlParser#createDatabase.
|
|
117
|
+
}, {
|
|
118
|
+
key: "visitCreateDatabase",
|
|
119
|
+
value: function visitCreateDatabase(ctx) {
|
|
120
|
+
return this.visitChildren(ctx);
|
|
121
|
+
}
|
|
122
|
+
|
|
123
|
+
// Visit a parse tree produced by MySqlParser#createEvent.
|
|
124
|
+
}, {
|
|
125
|
+
key: "visitCreateEvent",
|
|
126
|
+
value: function visitCreateEvent(ctx) {
|
|
127
|
+
return this.visitChildren(ctx);
|
|
128
|
+
}
|
|
129
|
+
|
|
130
|
+
// Visit a parse tree produced by MySqlParser#createIndex.
|
|
131
|
+
}, {
|
|
132
|
+
key: "visitCreateIndex",
|
|
133
|
+
value: function visitCreateIndex(ctx) {
|
|
134
|
+
return this.visitChildren(ctx);
|
|
135
|
+
}
|
|
136
|
+
|
|
137
|
+
// Visit a parse tree produced by MySqlParser#createLogfileGroup.
|
|
138
|
+
}, {
|
|
139
|
+
key: "visitCreateLogfileGroup",
|
|
140
|
+
value: function visitCreateLogfileGroup(ctx) {
|
|
141
|
+
return this.visitChildren(ctx);
|
|
142
|
+
}
|
|
143
|
+
|
|
144
|
+
// Visit a parse tree produced by MySqlParser#createProcedure.
|
|
145
|
+
}, {
|
|
146
|
+
key: "visitCreateProcedure",
|
|
147
|
+
value: function visitCreateProcedure(ctx) {
|
|
148
|
+
return this.visitChildren(ctx);
|
|
149
|
+
}
|
|
150
|
+
|
|
151
|
+
// Visit a parse tree produced by MySqlParser#createFunction.
|
|
152
|
+
}, {
|
|
153
|
+
key: "visitCreateFunction",
|
|
154
|
+
value: function visitCreateFunction(ctx) {
|
|
155
|
+
return this.visitChildren(ctx);
|
|
156
|
+
}
|
|
157
|
+
|
|
158
|
+
// Visit a parse tree produced by MySqlParser#createRole.
|
|
159
|
+
}, {
|
|
160
|
+
key: "visitCreateRole",
|
|
161
|
+
value: function visitCreateRole(ctx) {
|
|
162
|
+
return this.visitChildren(ctx);
|
|
163
|
+
}
|
|
164
|
+
|
|
165
|
+
// Visit a parse tree produced by MySqlParser#createServer.
|
|
166
|
+
}, {
|
|
167
|
+
key: "visitCreateServer",
|
|
168
|
+
value: function visitCreateServer(ctx) {
|
|
169
|
+
return this.visitChildren(ctx);
|
|
170
|
+
}
|
|
171
|
+
|
|
172
|
+
// Visit a parse tree produced by MySqlParser#copyCreateTable.
|
|
173
|
+
}, {
|
|
174
|
+
key: "visitCopyCreateTable",
|
|
175
|
+
value: function visitCopyCreateTable(ctx) {
|
|
176
|
+
return this.visitChildren(ctx);
|
|
177
|
+
}
|
|
178
|
+
|
|
179
|
+
// Visit a parse tree produced by MySqlParser#queryCreateTable.
|
|
180
|
+
}, {
|
|
181
|
+
key: "visitQueryCreateTable",
|
|
182
|
+
value: function visitQueryCreateTable(ctx) {
|
|
183
|
+
return this.visitChildren(ctx);
|
|
184
|
+
}
|
|
185
|
+
|
|
186
|
+
// Visit a parse tree produced by MySqlParser#columnCreateTable.
|
|
187
|
+
}, {
|
|
188
|
+
key: "visitColumnCreateTable",
|
|
189
|
+
value: function visitColumnCreateTable(ctx) {
|
|
190
|
+
return this.visitChildren(ctx);
|
|
191
|
+
}
|
|
192
|
+
|
|
193
|
+
// Visit a parse tree produced by MySqlParser#createTablespaceInnodb.
|
|
194
|
+
}, {
|
|
195
|
+
key: "visitCreateTablespaceInnodb",
|
|
196
|
+
value: function visitCreateTablespaceInnodb(ctx) {
|
|
197
|
+
return this.visitChildren(ctx);
|
|
198
|
+
}
|
|
199
|
+
|
|
200
|
+
// Visit a parse tree produced by MySqlParser#createTablespaceNdb.
|
|
201
|
+
}, {
|
|
202
|
+
key: "visitCreateTablespaceNdb",
|
|
203
|
+
value: function visitCreateTablespaceNdb(ctx) {
|
|
204
|
+
return this.visitChildren(ctx);
|
|
205
|
+
}
|
|
206
|
+
|
|
207
|
+
// Visit a parse tree produced by MySqlParser#createTrigger.
|
|
208
|
+
}, {
|
|
209
|
+
key: "visitCreateTrigger",
|
|
210
|
+
value: function visitCreateTrigger(ctx) {
|
|
211
|
+
return this.visitChildren(ctx);
|
|
212
|
+
}
|
|
213
|
+
|
|
214
|
+
// Visit a parse tree produced by MySqlParser#withClause.
|
|
215
|
+
}, {
|
|
216
|
+
key: "visitWithClause",
|
|
217
|
+
value: function visitWithClause(ctx) {
|
|
218
|
+
return this.visitChildren(ctx);
|
|
219
|
+
}
|
|
220
|
+
|
|
221
|
+
// Visit a parse tree produced by MySqlParser#commonTableExpressions.
|
|
222
|
+
}, {
|
|
223
|
+
key: "visitCommonTableExpressions",
|
|
224
|
+
value: function visitCommonTableExpressions(ctx) {
|
|
225
|
+
return this.visitChildren(ctx);
|
|
226
|
+
}
|
|
227
|
+
|
|
228
|
+
// Visit a parse tree produced by MySqlParser#cteName.
|
|
229
|
+
}, {
|
|
230
|
+
key: "visitCteName",
|
|
231
|
+
value: function visitCteName(ctx) {
|
|
232
|
+
return this.visitChildren(ctx);
|
|
233
|
+
}
|
|
234
|
+
|
|
235
|
+
// Visit a parse tree produced by MySqlParser#cteColumnName.
|
|
236
|
+
}, {
|
|
237
|
+
key: "visitCteColumnName",
|
|
238
|
+
value: function visitCteColumnName(ctx) {
|
|
239
|
+
return this.visitChildren(ctx);
|
|
240
|
+
}
|
|
241
|
+
|
|
242
|
+
// Visit a parse tree produced by MySqlParser#createView.
|
|
243
|
+
}, {
|
|
244
|
+
key: "visitCreateView",
|
|
245
|
+
value: function visitCreateView(ctx) {
|
|
246
|
+
return this.visitChildren(ctx);
|
|
247
|
+
}
|
|
248
|
+
|
|
249
|
+
// Visit a parse tree produced by MySqlParser#createDatabaseOption.
|
|
250
|
+
}, {
|
|
251
|
+
key: "visitCreateDatabaseOption",
|
|
252
|
+
value: function visitCreateDatabaseOption(ctx) {
|
|
253
|
+
return this.visitChildren(ctx);
|
|
254
|
+
}
|
|
255
|
+
|
|
256
|
+
// Visit a parse tree produced by MySqlParser#charSet.
|
|
257
|
+
}, {
|
|
258
|
+
key: "visitCharSet",
|
|
259
|
+
value: function visitCharSet(ctx) {
|
|
260
|
+
return this.visitChildren(ctx);
|
|
261
|
+
}
|
|
262
|
+
|
|
263
|
+
// Visit a parse tree produced by MySqlParser#currentUserExpression.
|
|
264
|
+
}, {
|
|
265
|
+
key: "visitCurrentUserExpression",
|
|
266
|
+
value: function visitCurrentUserExpression(ctx) {
|
|
267
|
+
return this.visitChildren(ctx);
|
|
268
|
+
}
|
|
269
|
+
|
|
270
|
+
// Visit a parse tree produced by MySqlParser#ownerStatement.
|
|
271
|
+
}, {
|
|
272
|
+
key: "visitOwnerStatement",
|
|
273
|
+
value: function visitOwnerStatement(ctx) {
|
|
274
|
+
return this.visitChildren(ctx);
|
|
275
|
+
}
|
|
276
|
+
|
|
277
|
+
// Visit a parse tree produced by MySqlParser#preciseSchedule.
|
|
278
|
+
}, {
|
|
279
|
+
key: "visitPreciseSchedule",
|
|
280
|
+
value: function visitPreciseSchedule(ctx) {
|
|
281
|
+
return this.visitChildren(ctx);
|
|
282
|
+
}
|
|
283
|
+
|
|
284
|
+
// Visit a parse tree produced by MySqlParser#intervalSchedule.
|
|
285
|
+
}, {
|
|
286
|
+
key: "visitIntervalSchedule",
|
|
287
|
+
value: function visitIntervalSchedule(ctx) {
|
|
288
|
+
return this.visitChildren(ctx);
|
|
289
|
+
}
|
|
290
|
+
|
|
291
|
+
// Visit a parse tree produced by MySqlParser#timestampValue.
|
|
292
|
+
}, {
|
|
293
|
+
key: "visitTimestampValue",
|
|
294
|
+
value: function visitTimestampValue(ctx) {
|
|
295
|
+
return this.visitChildren(ctx);
|
|
296
|
+
}
|
|
297
|
+
|
|
298
|
+
// Visit a parse tree produced by MySqlParser#intervalExpr.
|
|
299
|
+
}, {
|
|
300
|
+
key: "visitIntervalExpr",
|
|
301
|
+
value: function visitIntervalExpr(ctx) {
|
|
302
|
+
return this.visitChildren(ctx);
|
|
303
|
+
}
|
|
304
|
+
|
|
305
|
+
// Visit a parse tree produced by MySqlParser#intervalType.
|
|
306
|
+
}, {
|
|
307
|
+
key: "visitIntervalType",
|
|
308
|
+
value: function visitIntervalType(ctx) {
|
|
309
|
+
return this.visitChildren(ctx);
|
|
310
|
+
}
|
|
311
|
+
|
|
312
|
+
// Visit a parse tree produced by MySqlParser#enableType.
|
|
313
|
+
}, {
|
|
314
|
+
key: "visitEnableType",
|
|
315
|
+
value: function visitEnableType(ctx) {
|
|
316
|
+
return this.visitChildren(ctx);
|
|
317
|
+
}
|
|
318
|
+
|
|
319
|
+
// Visit a parse tree produced by MySqlParser#indexType.
|
|
320
|
+
}, {
|
|
321
|
+
key: "visitIndexType",
|
|
322
|
+
value: function visitIndexType(ctx) {
|
|
323
|
+
return this.visitChildren(ctx);
|
|
324
|
+
}
|
|
325
|
+
|
|
326
|
+
// Visit a parse tree produced by MySqlParser#indexOption.
|
|
327
|
+
}, {
|
|
328
|
+
key: "visitIndexOption",
|
|
329
|
+
value: function visitIndexOption(ctx) {
|
|
330
|
+
return this.visitChildren(ctx);
|
|
331
|
+
}
|
|
332
|
+
|
|
333
|
+
// Visit a parse tree produced by MySqlParser#procedureParameter.
|
|
334
|
+
}, {
|
|
335
|
+
key: "visitProcedureParameter",
|
|
336
|
+
value: function visitProcedureParameter(ctx) {
|
|
337
|
+
return this.visitChildren(ctx);
|
|
338
|
+
}
|
|
339
|
+
|
|
340
|
+
// Visit a parse tree produced by MySqlParser#functionParameter.
|
|
341
|
+
}, {
|
|
342
|
+
key: "visitFunctionParameter",
|
|
343
|
+
value: function visitFunctionParameter(ctx) {
|
|
344
|
+
return this.visitChildren(ctx);
|
|
345
|
+
}
|
|
346
|
+
|
|
347
|
+
// Visit a parse tree produced by MySqlParser#routineComment.
|
|
348
|
+
}, {
|
|
349
|
+
key: "visitRoutineComment",
|
|
350
|
+
value: function visitRoutineComment(ctx) {
|
|
351
|
+
return this.visitChildren(ctx);
|
|
352
|
+
}
|
|
353
|
+
|
|
354
|
+
// Visit a parse tree produced by MySqlParser#routineLanguage.
|
|
355
|
+
}, {
|
|
356
|
+
key: "visitRoutineLanguage",
|
|
357
|
+
value: function visitRoutineLanguage(ctx) {
|
|
358
|
+
return this.visitChildren(ctx);
|
|
359
|
+
}
|
|
360
|
+
|
|
361
|
+
// Visit a parse tree produced by MySqlParser#routineBehavior.
|
|
362
|
+
}, {
|
|
363
|
+
key: "visitRoutineBehavior",
|
|
364
|
+
value: function visitRoutineBehavior(ctx) {
|
|
365
|
+
return this.visitChildren(ctx);
|
|
366
|
+
}
|
|
367
|
+
|
|
368
|
+
// Visit a parse tree produced by MySqlParser#routineData.
|
|
369
|
+
}, {
|
|
370
|
+
key: "visitRoutineData",
|
|
371
|
+
value: function visitRoutineData(ctx) {
|
|
372
|
+
return this.visitChildren(ctx);
|
|
373
|
+
}
|
|
374
|
+
|
|
375
|
+
// Visit a parse tree produced by MySqlParser#routineSecurity.
|
|
376
|
+
}, {
|
|
377
|
+
key: "visitRoutineSecurity",
|
|
378
|
+
value: function visitRoutineSecurity(ctx) {
|
|
379
|
+
return this.visitChildren(ctx);
|
|
380
|
+
}
|
|
381
|
+
|
|
382
|
+
// Visit a parse tree produced by MySqlParser#serverOption.
|
|
383
|
+
}, {
|
|
384
|
+
key: "visitServerOption",
|
|
385
|
+
value: function visitServerOption(ctx) {
|
|
386
|
+
return this.visitChildren(ctx);
|
|
387
|
+
}
|
|
388
|
+
|
|
389
|
+
// Visit a parse tree produced by MySqlParser#createDefinitions.
|
|
390
|
+
}, {
|
|
391
|
+
key: "visitCreateDefinitions",
|
|
392
|
+
value: function visitCreateDefinitions(ctx) {
|
|
393
|
+
return this.visitChildren(ctx);
|
|
394
|
+
}
|
|
395
|
+
|
|
396
|
+
// Visit a parse tree produced by MySqlParser#columnDeclaration.
|
|
397
|
+
}, {
|
|
398
|
+
key: "visitColumnDeclaration",
|
|
399
|
+
value: function visitColumnDeclaration(ctx) {
|
|
400
|
+
return this.visitChildren(ctx);
|
|
401
|
+
}
|
|
402
|
+
|
|
403
|
+
// Visit a parse tree produced by MySqlParser#constraintDeclaration.
|
|
404
|
+
}, {
|
|
405
|
+
key: "visitConstraintDeclaration",
|
|
406
|
+
value: function visitConstraintDeclaration(ctx) {
|
|
407
|
+
return this.visitChildren(ctx);
|
|
408
|
+
}
|
|
409
|
+
|
|
410
|
+
// Visit a parse tree produced by MySqlParser#indexDeclaration.
|
|
411
|
+
}, {
|
|
412
|
+
key: "visitIndexDeclaration",
|
|
413
|
+
value: function visitIndexDeclaration(ctx) {
|
|
414
|
+
return this.visitChildren(ctx);
|
|
415
|
+
}
|
|
416
|
+
|
|
417
|
+
// Visit a parse tree produced by MySqlParser#columnDefinition.
|
|
418
|
+
}, {
|
|
419
|
+
key: "visitColumnDefinition",
|
|
420
|
+
value: function visitColumnDefinition(ctx) {
|
|
421
|
+
return this.visitChildren(ctx);
|
|
422
|
+
}
|
|
423
|
+
|
|
424
|
+
// Visit a parse tree produced by MySqlParser#nullColumnConstraint.
|
|
425
|
+
}, {
|
|
426
|
+
key: "visitNullColumnConstraint",
|
|
427
|
+
value: function visitNullColumnConstraint(ctx) {
|
|
428
|
+
return this.visitChildren(ctx);
|
|
429
|
+
}
|
|
430
|
+
|
|
431
|
+
// Visit a parse tree produced by MySqlParser#defaultColumnConstraint.
|
|
432
|
+
}, {
|
|
433
|
+
key: "visitDefaultColumnConstraint",
|
|
434
|
+
value: function visitDefaultColumnConstraint(ctx) {
|
|
435
|
+
return this.visitChildren(ctx);
|
|
436
|
+
}
|
|
437
|
+
|
|
438
|
+
// Visit a parse tree produced by MySqlParser#visibilityColumnConstraint.
|
|
439
|
+
}, {
|
|
440
|
+
key: "visitVisibilityColumnConstraint",
|
|
441
|
+
value: function visitVisibilityColumnConstraint(ctx) {
|
|
442
|
+
return this.visitChildren(ctx);
|
|
443
|
+
}
|
|
444
|
+
|
|
445
|
+
// Visit a parse tree produced by MySqlParser#invisibilityColumnConstraint.
|
|
446
|
+
}, {
|
|
447
|
+
key: "visitInvisibilityColumnConstraint",
|
|
448
|
+
value: function visitInvisibilityColumnConstraint(ctx) {
|
|
449
|
+
return this.visitChildren(ctx);
|
|
450
|
+
}
|
|
451
|
+
|
|
452
|
+
// Visit a parse tree produced by MySqlParser#autoIncrementColumnConstraint.
|
|
453
|
+
}, {
|
|
454
|
+
key: "visitAutoIncrementColumnConstraint",
|
|
455
|
+
value: function visitAutoIncrementColumnConstraint(ctx) {
|
|
456
|
+
return this.visitChildren(ctx);
|
|
457
|
+
}
|
|
458
|
+
|
|
459
|
+
// Visit a parse tree produced by MySqlParser#primaryKeyColumnConstraint.
|
|
460
|
+
}, {
|
|
461
|
+
key: "visitPrimaryKeyColumnConstraint",
|
|
462
|
+
value: function visitPrimaryKeyColumnConstraint(ctx) {
|
|
463
|
+
return this.visitChildren(ctx);
|
|
464
|
+
}
|
|
465
|
+
|
|
466
|
+
// Visit a parse tree produced by MySqlParser#uniqueKeyColumnConstraint.
|
|
467
|
+
}, {
|
|
468
|
+
key: "visitUniqueKeyColumnConstraint",
|
|
469
|
+
value: function visitUniqueKeyColumnConstraint(ctx) {
|
|
470
|
+
return this.visitChildren(ctx);
|
|
471
|
+
}
|
|
472
|
+
|
|
473
|
+
// Visit a parse tree produced by MySqlParser#commentColumnConstraint.
|
|
474
|
+
}, {
|
|
475
|
+
key: "visitCommentColumnConstraint",
|
|
476
|
+
value: function visitCommentColumnConstraint(ctx) {
|
|
477
|
+
return this.visitChildren(ctx);
|
|
478
|
+
}
|
|
479
|
+
|
|
480
|
+
// Visit a parse tree produced by MySqlParser#formatColumnConstraint.
|
|
481
|
+
}, {
|
|
482
|
+
key: "visitFormatColumnConstraint",
|
|
483
|
+
value: function visitFormatColumnConstraint(ctx) {
|
|
484
|
+
return this.visitChildren(ctx);
|
|
485
|
+
}
|
|
486
|
+
|
|
487
|
+
// Visit a parse tree produced by MySqlParser#storageColumnConstraint.
|
|
488
|
+
}, {
|
|
489
|
+
key: "visitStorageColumnConstraint",
|
|
490
|
+
value: function visitStorageColumnConstraint(ctx) {
|
|
491
|
+
return this.visitChildren(ctx);
|
|
492
|
+
}
|
|
493
|
+
|
|
494
|
+
// Visit a parse tree produced by MySqlParser#referenceColumnConstraint.
|
|
495
|
+
}, {
|
|
496
|
+
key: "visitReferenceColumnConstraint",
|
|
497
|
+
value: function visitReferenceColumnConstraint(ctx) {
|
|
498
|
+
return this.visitChildren(ctx);
|
|
499
|
+
}
|
|
500
|
+
|
|
501
|
+
// Visit a parse tree produced by MySqlParser#collateColumnConstraint.
|
|
502
|
+
}, {
|
|
503
|
+
key: "visitCollateColumnConstraint",
|
|
504
|
+
value: function visitCollateColumnConstraint(ctx) {
|
|
505
|
+
return this.visitChildren(ctx);
|
|
506
|
+
}
|
|
507
|
+
|
|
508
|
+
// Visit a parse tree produced by MySqlParser#generatedColumnConstraint.
|
|
509
|
+
}, {
|
|
510
|
+
key: "visitGeneratedColumnConstraint",
|
|
511
|
+
value: function visitGeneratedColumnConstraint(ctx) {
|
|
512
|
+
return this.visitChildren(ctx);
|
|
513
|
+
}
|
|
514
|
+
|
|
515
|
+
// Visit a parse tree produced by MySqlParser#serialDefaultColumnConstraint.
|
|
516
|
+
}, {
|
|
517
|
+
key: "visitSerialDefaultColumnConstraint",
|
|
518
|
+
value: function visitSerialDefaultColumnConstraint(ctx) {
|
|
519
|
+
return this.visitChildren(ctx);
|
|
520
|
+
}
|
|
521
|
+
|
|
522
|
+
// Visit a parse tree produced by MySqlParser#checkColumnConstraint.
|
|
523
|
+
}, {
|
|
524
|
+
key: "visitCheckColumnConstraint",
|
|
525
|
+
value: function visitCheckColumnConstraint(ctx) {
|
|
526
|
+
return this.visitChildren(ctx);
|
|
527
|
+
}
|
|
528
|
+
|
|
529
|
+
// Visit a parse tree produced by MySqlParser#primaryKeyTableConstraint.
|
|
530
|
+
}, {
|
|
531
|
+
key: "visitPrimaryKeyTableConstraint",
|
|
532
|
+
value: function visitPrimaryKeyTableConstraint(ctx) {
|
|
533
|
+
return this.visitChildren(ctx);
|
|
534
|
+
}
|
|
535
|
+
|
|
536
|
+
// Visit a parse tree produced by MySqlParser#uniqueKeyTableConstraint.
|
|
537
|
+
}, {
|
|
538
|
+
key: "visitUniqueKeyTableConstraint",
|
|
539
|
+
value: function visitUniqueKeyTableConstraint(ctx) {
|
|
540
|
+
return this.visitChildren(ctx);
|
|
541
|
+
}
|
|
542
|
+
|
|
543
|
+
// Visit a parse tree produced by MySqlParser#foreignKeyTableConstraint.
|
|
544
|
+
}, {
|
|
545
|
+
key: "visitForeignKeyTableConstraint",
|
|
546
|
+
value: function visitForeignKeyTableConstraint(ctx) {
|
|
547
|
+
return this.visitChildren(ctx);
|
|
548
|
+
}
|
|
549
|
+
|
|
550
|
+
// Visit a parse tree produced by MySqlParser#checkTableConstraint.
|
|
551
|
+
}, {
|
|
552
|
+
key: "visitCheckTableConstraint",
|
|
553
|
+
value: function visitCheckTableConstraint(ctx) {
|
|
554
|
+
return this.visitChildren(ctx);
|
|
555
|
+
}
|
|
556
|
+
|
|
557
|
+
// Visit a parse tree produced by MySqlParser#referenceDefinition.
|
|
558
|
+
}, {
|
|
559
|
+
key: "visitReferenceDefinition",
|
|
560
|
+
value: function visitReferenceDefinition(ctx) {
|
|
561
|
+
return this.visitChildren(ctx);
|
|
562
|
+
}
|
|
563
|
+
|
|
564
|
+
// Visit a parse tree produced by MySqlParser#referenceAction.
|
|
565
|
+
}, {
|
|
566
|
+
key: "visitReferenceAction",
|
|
567
|
+
value: function visitReferenceAction(ctx) {
|
|
568
|
+
return this.visitChildren(ctx);
|
|
569
|
+
}
|
|
570
|
+
|
|
571
|
+
// Visit a parse tree produced by MySqlParser#referenceControlType.
|
|
572
|
+
}, {
|
|
573
|
+
key: "visitReferenceControlType",
|
|
574
|
+
value: function visitReferenceControlType(ctx) {
|
|
575
|
+
return this.visitChildren(ctx);
|
|
576
|
+
}
|
|
577
|
+
|
|
578
|
+
// Visit a parse tree produced by MySqlParser#simpleIndexDeclaration.
|
|
579
|
+
}, {
|
|
580
|
+
key: "visitSimpleIndexDeclaration",
|
|
581
|
+
value: function visitSimpleIndexDeclaration(ctx) {
|
|
582
|
+
return this.visitChildren(ctx);
|
|
583
|
+
}
|
|
584
|
+
|
|
585
|
+
// Visit a parse tree produced by MySqlParser#specialIndexDeclaration.
|
|
586
|
+
}, {
|
|
587
|
+
key: "visitSpecialIndexDeclaration",
|
|
588
|
+
value: function visitSpecialIndexDeclaration(ctx) {
|
|
589
|
+
return this.visitChildren(ctx);
|
|
590
|
+
}
|
|
591
|
+
|
|
592
|
+
// Visit a parse tree produced by MySqlParser#tableOptionEngine.
|
|
593
|
+
}, {
|
|
594
|
+
key: "visitTableOptionEngine",
|
|
595
|
+
value: function visitTableOptionEngine(ctx) {
|
|
596
|
+
return this.visitChildren(ctx);
|
|
597
|
+
}
|
|
598
|
+
|
|
599
|
+
// Visit a parse tree produced by MySqlParser#tableOptionEngineAttribute.
|
|
600
|
+
}, {
|
|
601
|
+
key: "visitTableOptionEngineAttribute",
|
|
602
|
+
value: function visitTableOptionEngineAttribute(ctx) {
|
|
603
|
+
return this.visitChildren(ctx);
|
|
604
|
+
}
|
|
605
|
+
|
|
606
|
+
// Visit a parse tree produced by MySqlParser#tableOptionAutoextendSize.
|
|
607
|
+
}, {
|
|
608
|
+
key: "visitTableOptionAutoextendSize",
|
|
609
|
+
value: function visitTableOptionAutoextendSize(ctx) {
|
|
610
|
+
return this.visitChildren(ctx);
|
|
611
|
+
}
|
|
612
|
+
|
|
613
|
+
// Visit a parse tree produced by MySqlParser#tableOptionAutoIncrement.
|
|
614
|
+
}, {
|
|
615
|
+
key: "visitTableOptionAutoIncrement",
|
|
616
|
+
value: function visitTableOptionAutoIncrement(ctx) {
|
|
617
|
+
return this.visitChildren(ctx);
|
|
618
|
+
}
|
|
619
|
+
|
|
620
|
+
// Visit a parse tree produced by MySqlParser#tableOptionAverage.
|
|
621
|
+
}, {
|
|
622
|
+
key: "visitTableOptionAverage",
|
|
623
|
+
value: function visitTableOptionAverage(ctx) {
|
|
624
|
+
return this.visitChildren(ctx);
|
|
625
|
+
}
|
|
626
|
+
|
|
627
|
+
// Visit a parse tree produced by MySqlParser#tableOptionCharset.
|
|
628
|
+
}, {
|
|
629
|
+
key: "visitTableOptionCharset",
|
|
630
|
+
value: function visitTableOptionCharset(ctx) {
|
|
631
|
+
return this.visitChildren(ctx);
|
|
632
|
+
}
|
|
633
|
+
|
|
634
|
+
// Visit a parse tree produced by MySqlParser#tableOptionChecksum.
|
|
635
|
+
}, {
|
|
636
|
+
key: "visitTableOptionChecksum",
|
|
637
|
+
value: function visitTableOptionChecksum(ctx) {
|
|
638
|
+
return this.visitChildren(ctx);
|
|
639
|
+
}
|
|
640
|
+
|
|
641
|
+
// Visit a parse tree produced by MySqlParser#tableOptionCollate.
|
|
642
|
+
}, {
|
|
643
|
+
key: "visitTableOptionCollate",
|
|
644
|
+
value: function visitTableOptionCollate(ctx) {
|
|
645
|
+
return this.visitChildren(ctx);
|
|
646
|
+
}
|
|
647
|
+
|
|
648
|
+
// Visit a parse tree produced by MySqlParser#tableOptionComment.
|
|
649
|
+
}, {
|
|
650
|
+
key: "visitTableOptionComment",
|
|
651
|
+
value: function visitTableOptionComment(ctx) {
|
|
652
|
+
return this.visitChildren(ctx);
|
|
653
|
+
}
|
|
654
|
+
|
|
655
|
+
// Visit a parse tree produced by MySqlParser#tableOptionCompression.
|
|
656
|
+
}, {
|
|
657
|
+
key: "visitTableOptionCompression",
|
|
658
|
+
value: function visitTableOptionCompression(ctx) {
|
|
659
|
+
return this.visitChildren(ctx);
|
|
660
|
+
}
|
|
661
|
+
|
|
662
|
+
// Visit a parse tree produced by MySqlParser#tableOptionConnection.
|
|
663
|
+
}, {
|
|
664
|
+
key: "visitTableOptionConnection",
|
|
665
|
+
value: function visitTableOptionConnection(ctx) {
|
|
666
|
+
return this.visitChildren(ctx);
|
|
667
|
+
}
|
|
668
|
+
|
|
669
|
+
// Visit a parse tree produced by MySqlParser#tableOptionDataDirectory.
|
|
670
|
+
}, {
|
|
671
|
+
key: "visitTableOptionDataDirectory",
|
|
672
|
+
value: function visitTableOptionDataDirectory(ctx) {
|
|
673
|
+
return this.visitChildren(ctx);
|
|
674
|
+
}
|
|
675
|
+
|
|
676
|
+
// Visit a parse tree produced by MySqlParser#tableOptionDelay.
|
|
677
|
+
}, {
|
|
678
|
+
key: "visitTableOptionDelay",
|
|
679
|
+
value: function visitTableOptionDelay(ctx) {
|
|
680
|
+
return this.visitChildren(ctx);
|
|
681
|
+
}
|
|
682
|
+
|
|
683
|
+
// Visit a parse tree produced by MySqlParser#tableOptionEncryption.
|
|
684
|
+
}, {
|
|
685
|
+
key: "visitTableOptionEncryption",
|
|
686
|
+
value: function visitTableOptionEncryption(ctx) {
|
|
687
|
+
return this.visitChildren(ctx);
|
|
688
|
+
}
|
|
689
|
+
|
|
690
|
+
// Visit a parse tree produced by MySqlParser#tableOptionPageCompressed.
|
|
691
|
+
}, {
|
|
692
|
+
key: "visitTableOptionPageCompressed",
|
|
693
|
+
value: function visitTableOptionPageCompressed(ctx) {
|
|
694
|
+
return this.visitChildren(ctx);
|
|
695
|
+
}
|
|
696
|
+
|
|
697
|
+
// Visit a parse tree produced by MySqlParser#tableOptionPageCompressionLevel.
|
|
698
|
+
}, {
|
|
699
|
+
key: "visitTableOptionPageCompressionLevel",
|
|
700
|
+
value: function visitTableOptionPageCompressionLevel(ctx) {
|
|
701
|
+
return this.visitChildren(ctx);
|
|
702
|
+
}
|
|
703
|
+
|
|
704
|
+
// Visit a parse tree produced by MySqlParser#tableOptionEncryptionKeyId.
|
|
705
|
+
}, {
|
|
706
|
+
key: "visitTableOptionEncryptionKeyId",
|
|
707
|
+
value: function visitTableOptionEncryptionKeyId(ctx) {
|
|
708
|
+
return this.visitChildren(ctx);
|
|
709
|
+
}
|
|
710
|
+
|
|
711
|
+
// Visit a parse tree produced by MySqlParser#tableOptionIndexDirectory.
|
|
712
|
+
}, {
|
|
713
|
+
key: "visitTableOptionIndexDirectory",
|
|
714
|
+
value: function visitTableOptionIndexDirectory(ctx) {
|
|
715
|
+
return this.visitChildren(ctx);
|
|
716
|
+
}
|
|
717
|
+
|
|
718
|
+
// Visit a parse tree produced by MySqlParser#tableOptionInsertMethod.
|
|
719
|
+
}, {
|
|
720
|
+
key: "visitTableOptionInsertMethod",
|
|
721
|
+
value: function visitTableOptionInsertMethod(ctx) {
|
|
722
|
+
return this.visitChildren(ctx);
|
|
723
|
+
}
|
|
724
|
+
|
|
725
|
+
// Visit a parse tree produced by MySqlParser#tableOptionKeyBlockSize.
|
|
726
|
+
}, {
|
|
727
|
+
key: "visitTableOptionKeyBlockSize",
|
|
728
|
+
value: function visitTableOptionKeyBlockSize(ctx) {
|
|
729
|
+
return this.visitChildren(ctx);
|
|
730
|
+
}
|
|
731
|
+
|
|
732
|
+
// Visit a parse tree produced by MySqlParser#tableOptionMaxRows.
|
|
733
|
+
}, {
|
|
734
|
+
key: "visitTableOptionMaxRows",
|
|
735
|
+
value: function visitTableOptionMaxRows(ctx) {
|
|
736
|
+
return this.visitChildren(ctx);
|
|
737
|
+
}
|
|
738
|
+
|
|
739
|
+
// Visit a parse tree produced by MySqlParser#tableOptionMinRows.
|
|
740
|
+
}, {
|
|
741
|
+
key: "visitTableOptionMinRows",
|
|
742
|
+
value: function visitTableOptionMinRows(ctx) {
|
|
743
|
+
return this.visitChildren(ctx);
|
|
744
|
+
}
|
|
745
|
+
|
|
746
|
+
// Visit a parse tree produced by MySqlParser#tableOptionPackKeys.
|
|
747
|
+
}, {
|
|
748
|
+
key: "visitTableOptionPackKeys",
|
|
749
|
+
value: function visitTableOptionPackKeys(ctx) {
|
|
750
|
+
return this.visitChildren(ctx);
|
|
751
|
+
}
|
|
752
|
+
|
|
753
|
+
// Visit a parse tree produced by MySqlParser#tableOptionPassword.
|
|
754
|
+
}, {
|
|
755
|
+
key: "visitTableOptionPassword",
|
|
756
|
+
value: function visitTableOptionPassword(ctx) {
|
|
757
|
+
return this.visitChildren(ctx);
|
|
758
|
+
}
|
|
759
|
+
|
|
760
|
+
// Visit a parse tree produced by MySqlParser#tableOptionRowFormat.
|
|
761
|
+
}, {
|
|
762
|
+
key: "visitTableOptionRowFormat",
|
|
763
|
+
value: function visitTableOptionRowFormat(ctx) {
|
|
764
|
+
return this.visitChildren(ctx);
|
|
765
|
+
}
|
|
766
|
+
|
|
767
|
+
// Visit a parse tree produced by MySqlParser#tableOptionStartTransaction.
|
|
768
|
+
}, {
|
|
769
|
+
key: "visitTableOptionStartTransaction",
|
|
770
|
+
value: function visitTableOptionStartTransaction(ctx) {
|
|
771
|
+
return this.visitChildren(ctx);
|
|
772
|
+
}
|
|
773
|
+
|
|
774
|
+
// Visit a parse tree produced by MySqlParser#tableOptionSecondaryEngineAttribute.
|
|
775
|
+
}, {
|
|
776
|
+
key: "visitTableOptionSecondaryEngineAttribute",
|
|
777
|
+
value: function visitTableOptionSecondaryEngineAttribute(ctx) {
|
|
778
|
+
return this.visitChildren(ctx);
|
|
779
|
+
}
|
|
780
|
+
|
|
781
|
+
// Visit a parse tree produced by MySqlParser#tableOptionRecalculation.
|
|
782
|
+
}, {
|
|
783
|
+
key: "visitTableOptionRecalculation",
|
|
784
|
+
value: function visitTableOptionRecalculation(ctx) {
|
|
785
|
+
return this.visitChildren(ctx);
|
|
786
|
+
}
|
|
787
|
+
|
|
788
|
+
// Visit a parse tree produced by MySqlParser#tableOptionPersistent.
|
|
789
|
+
}, {
|
|
790
|
+
key: "visitTableOptionPersistent",
|
|
791
|
+
value: function visitTableOptionPersistent(ctx) {
|
|
792
|
+
return this.visitChildren(ctx);
|
|
793
|
+
}
|
|
794
|
+
|
|
795
|
+
// Visit a parse tree produced by MySqlParser#tableOptionSamplePage.
|
|
796
|
+
}, {
|
|
797
|
+
key: "visitTableOptionSamplePage",
|
|
798
|
+
value: function visitTableOptionSamplePage(ctx) {
|
|
799
|
+
return this.visitChildren(ctx);
|
|
800
|
+
}
|
|
801
|
+
|
|
802
|
+
// Visit a parse tree produced by MySqlParser#tableOptionTablespace.
|
|
803
|
+
}, {
|
|
804
|
+
key: "visitTableOptionTablespace",
|
|
805
|
+
value: function visitTableOptionTablespace(ctx) {
|
|
806
|
+
return this.visitChildren(ctx);
|
|
807
|
+
}
|
|
808
|
+
|
|
809
|
+
// Visit a parse tree produced by MySqlParser#tableOptionTableType.
|
|
810
|
+
}, {
|
|
811
|
+
key: "visitTableOptionTableType",
|
|
812
|
+
value: function visitTableOptionTableType(ctx) {
|
|
813
|
+
return this.visitChildren(ctx);
|
|
814
|
+
}
|
|
815
|
+
|
|
816
|
+
// Visit a parse tree produced by MySqlParser#tableOptionTransactional.
|
|
817
|
+
}, {
|
|
818
|
+
key: "visitTableOptionTransactional",
|
|
819
|
+
value: function visitTableOptionTransactional(ctx) {
|
|
820
|
+
return this.visitChildren(ctx);
|
|
821
|
+
}
|
|
822
|
+
|
|
823
|
+
// Visit a parse tree produced by MySqlParser#tableOptionUnion.
|
|
824
|
+
}, {
|
|
825
|
+
key: "visitTableOptionUnion",
|
|
826
|
+
value: function visitTableOptionUnion(ctx) {
|
|
827
|
+
return this.visitChildren(ctx);
|
|
828
|
+
}
|
|
829
|
+
|
|
830
|
+
// Visit a parse tree produced by MySqlParser#tableType.
|
|
831
|
+
}, {
|
|
832
|
+
key: "visitTableType",
|
|
833
|
+
value: function visitTableType(ctx) {
|
|
834
|
+
return this.visitChildren(ctx);
|
|
835
|
+
}
|
|
836
|
+
|
|
837
|
+
// Visit a parse tree produced by MySqlParser#tablespaceStorage.
|
|
838
|
+
}, {
|
|
839
|
+
key: "visitTablespaceStorage",
|
|
840
|
+
value: function visitTablespaceStorage(ctx) {
|
|
841
|
+
return this.visitChildren(ctx);
|
|
842
|
+
}
|
|
843
|
+
|
|
844
|
+
// Visit a parse tree produced by MySqlParser#partitionDefinitions.
|
|
845
|
+
}, {
|
|
846
|
+
key: "visitPartitionDefinitions",
|
|
847
|
+
value: function visitPartitionDefinitions(ctx) {
|
|
848
|
+
return this.visitChildren(ctx);
|
|
849
|
+
}
|
|
850
|
+
|
|
851
|
+
// Visit a parse tree produced by MySqlParser#partitionFunctionHash.
|
|
852
|
+
}, {
|
|
853
|
+
key: "visitPartitionFunctionHash",
|
|
854
|
+
value: function visitPartitionFunctionHash(ctx) {
|
|
855
|
+
return this.visitChildren(ctx);
|
|
856
|
+
}
|
|
857
|
+
|
|
858
|
+
// Visit a parse tree produced by MySqlParser#partitionFunctionKey.
|
|
859
|
+
}, {
|
|
860
|
+
key: "visitPartitionFunctionKey",
|
|
861
|
+
value: function visitPartitionFunctionKey(ctx) {
|
|
862
|
+
return this.visitChildren(ctx);
|
|
863
|
+
}
|
|
864
|
+
|
|
865
|
+
// Visit a parse tree produced by MySqlParser#partitionFunctionRange.
|
|
866
|
+
}, {
|
|
867
|
+
key: "visitPartitionFunctionRange",
|
|
868
|
+
value: function visitPartitionFunctionRange(ctx) {
|
|
869
|
+
return this.visitChildren(ctx);
|
|
870
|
+
}
|
|
871
|
+
|
|
872
|
+
// Visit a parse tree produced by MySqlParser#partitionFunctionList.
|
|
873
|
+
}, {
|
|
874
|
+
key: "visitPartitionFunctionList",
|
|
875
|
+
value: function visitPartitionFunctionList(ctx) {
|
|
876
|
+
return this.visitChildren(ctx);
|
|
877
|
+
}
|
|
878
|
+
|
|
879
|
+
// Visit a parse tree produced by MySqlParser#subPartitionFunctionHash.
|
|
880
|
+
}, {
|
|
881
|
+
key: "visitSubPartitionFunctionHash",
|
|
882
|
+
value: function visitSubPartitionFunctionHash(ctx) {
|
|
883
|
+
return this.visitChildren(ctx);
|
|
884
|
+
}
|
|
885
|
+
|
|
886
|
+
// Visit a parse tree produced by MySqlParser#subPartitionFunctionKey.
|
|
887
|
+
}, {
|
|
888
|
+
key: "visitSubPartitionFunctionKey",
|
|
889
|
+
value: function visitSubPartitionFunctionKey(ctx) {
|
|
890
|
+
return this.visitChildren(ctx);
|
|
891
|
+
}
|
|
892
|
+
|
|
893
|
+
// Visit a parse tree produced by MySqlParser#partitionComparison.
|
|
894
|
+
}, {
|
|
895
|
+
key: "visitPartitionComparison",
|
|
896
|
+
value: function visitPartitionComparison(ctx) {
|
|
897
|
+
return this.visitChildren(ctx);
|
|
898
|
+
}
|
|
899
|
+
|
|
900
|
+
// Visit a parse tree produced by MySqlParser#partitionListAtom.
|
|
901
|
+
}, {
|
|
902
|
+
key: "visitPartitionListAtom",
|
|
903
|
+
value: function visitPartitionListAtom(ctx) {
|
|
904
|
+
return this.visitChildren(ctx);
|
|
905
|
+
}
|
|
906
|
+
|
|
907
|
+
// Visit a parse tree produced by MySqlParser#partitionListVector.
|
|
908
|
+
}, {
|
|
909
|
+
key: "visitPartitionListVector",
|
|
910
|
+
value: function visitPartitionListVector(ctx) {
|
|
911
|
+
return this.visitChildren(ctx);
|
|
912
|
+
}
|
|
913
|
+
|
|
914
|
+
// Visit a parse tree produced by MySqlParser#partitionSimple.
|
|
915
|
+
}, {
|
|
916
|
+
key: "visitPartitionSimple",
|
|
917
|
+
value: function visitPartitionSimple(ctx) {
|
|
918
|
+
return this.visitChildren(ctx);
|
|
919
|
+
}
|
|
920
|
+
|
|
921
|
+
// Visit a parse tree produced by MySqlParser#partitionDefinerAtom.
|
|
922
|
+
}, {
|
|
923
|
+
key: "visitPartitionDefinerAtom",
|
|
924
|
+
value: function visitPartitionDefinerAtom(ctx) {
|
|
925
|
+
return this.visitChildren(ctx);
|
|
926
|
+
}
|
|
927
|
+
|
|
928
|
+
// Visit a parse tree produced by MySqlParser#partitionDefinerVector.
|
|
929
|
+
}, {
|
|
930
|
+
key: "visitPartitionDefinerVector",
|
|
931
|
+
value: function visitPartitionDefinerVector(ctx) {
|
|
932
|
+
return this.visitChildren(ctx);
|
|
933
|
+
}
|
|
934
|
+
|
|
935
|
+
// Visit a parse tree produced by MySqlParser#subpartitionDefinition.
|
|
936
|
+
}, {
|
|
937
|
+
key: "visitSubpartitionDefinition",
|
|
938
|
+
value: function visitSubpartitionDefinition(ctx) {
|
|
939
|
+
return this.visitChildren(ctx);
|
|
940
|
+
}
|
|
941
|
+
|
|
942
|
+
// Visit a parse tree produced by MySqlParser#partitionOptionEngine.
|
|
943
|
+
}, {
|
|
944
|
+
key: "visitPartitionOptionEngine",
|
|
945
|
+
value: function visitPartitionOptionEngine(ctx) {
|
|
946
|
+
return this.visitChildren(ctx);
|
|
947
|
+
}
|
|
948
|
+
|
|
949
|
+
// Visit a parse tree produced by MySqlParser#partitionOptionComment.
|
|
950
|
+
}, {
|
|
951
|
+
key: "visitPartitionOptionComment",
|
|
952
|
+
value: function visitPartitionOptionComment(ctx) {
|
|
953
|
+
return this.visitChildren(ctx);
|
|
954
|
+
}
|
|
955
|
+
|
|
956
|
+
// Visit a parse tree produced by MySqlParser#partitionOptionDataDirectory.
|
|
957
|
+
}, {
|
|
958
|
+
key: "visitPartitionOptionDataDirectory",
|
|
959
|
+
value: function visitPartitionOptionDataDirectory(ctx) {
|
|
960
|
+
return this.visitChildren(ctx);
|
|
961
|
+
}
|
|
962
|
+
|
|
963
|
+
// Visit a parse tree produced by MySqlParser#partitionOptionIndexDirectory.
|
|
964
|
+
}, {
|
|
965
|
+
key: "visitPartitionOptionIndexDirectory",
|
|
966
|
+
value: function visitPartitionOptionIndexDirectory(ctx) {
|
|
967
|
+
return this.visitChildren(ctx);
|
|
968
|
+
}
|
|
969
|
+
|
|
970
|
+
// Visit a parse tree produced by MySqlParser#partitionOptionMaxRows.
|
|
971
|
+
}, {
|
|
972
|
+
key: "visitPartitionOptionMaxRows",
|
|
973
|
+
value: function visitPartitionOptionMaxRows(ctx) {
|
|
974
|
+
return this.visitChildren(ctx);
|
|
975
|
+
}
|
|
976
|
+
|
|
977
|
+
// Visit a parse tree produced by MySqlParser#partitionOptionMinRows.
|
|
978
|
+
}, {
|
|
979
|
+
key: "visitPartitionOptionMinRows",
|
|
980
|
+
value: function visitPartitionOptionMinRows(ctx) {
|
|
981
|
+
return this.visitChildren(ctx);
|
|
982
|
+
}
|
|
983
|
+
|
|
984
|
+
// Visit a parse tree produced by MySqlParser#partitionOptionTablespace.
|
|
985
|
+
}, {
|
|
986
|
+
key: "visitPartitionOptionTablespace",
|
|
987
|
+
value: function visitPartitionOptionTablespace(ctx) {
|
|
988
|
+
return this.visitChildren(ctx);
|
|
989
|
+
}
|
|
990
|
+
|
|
991
|
+
// Visit a parse tree produced by MySqlParser#partitionOptionNodeGroup.
|
|
992
|
+
}, {
|
|
993
|
+
key: "visitPartitionOptionNodeGroup",
|
|
994
|
+
value: function visitPartitionOptionNodeGroup(ctx) {
|
|
995
|
+
return this.visitChildren(ctx);
|
|
996
|
+
}
|
|
997
|
+
|
|
998
|
+
// Visit a parse tree produced by MySqlParser#alterSimpleDatabase.
|
|
999
|
+
}, {
|
|
1000
|
+
key: "visitAlterSimpleDatabase",
|
|
1001
|
+
value: function visitAlterSimpleDatabase(ctx) {
|
|
1002
|
+
return this.visitChildren(ctx);
|
|
1003
|
+
}
|
|
1004
|
+
|
|
1005
|
+
// Visit a parse tree produced by MySqlParser#alterUpgradeName.
|
|
1006
|
+
}, {
|
|
1007
|
+
key: "visitAlterUpgradeName",
|
|
1008
|
+
value: function visitAlterUpgradeName(ctx) {
|
|
1009
|
+
return this.visitChildren(ctx);
|
|
1010
|
+
}
|
|
1011
|
+
|
|
1012
|
+
// Visit a parse tree produced by MySqlParser#alterEvent.
|
|
1013
|
+
}, {
|
|
1014
|
+
key: "visitAlterEvent",
|
|
1015
|
+
value: function visitAlterEvent(ctx) {
|
|
1016
|
+
return this.visitChildren(ctx);
|
|
1017
|
+
}
|
|
1018
|
+
|
|
1019
|
+
// Visit a parse tree produced by MySqlParser#alterFunction.
|
|
1020
|
+
}, {
|
|
1021
|
+
key: "visitAlterFunction",
|
|
1022
|
+
value: function visitAlterFunction(ctx) {
|
|
1023
|
+
return this.visitChildren(ctx);
|
|
1024
|
+
}
|
|
1025
|
+
|
|
1026
|
+
// Visit a parse tree produced by MySqlParser#alterInstance.
|
|
1027
|
+
}, {
|
|
1028
|
+
key: "visitAlterInstance",
|
|
1029
|
+
value: function visitAlterInstance(ctx) {
|
|
1030
|
+
return this.visitChildren(ctx);
|
|
1031
|
+
}
|
|
1032
|
+
|
|
1033
|
+
// Visit a parse tree produced by MySqlParser#alterLogfileGroup.
|
|
1034
|
+
}, {
|
|
1035
|
+
key: "visitAlterLogfileGroup",
|
|
1036
|
+
value: function visitAlterLogfileGroup(ctx) {
|
|
1037
|
+
return this.visitChildren(ctx);
|
|
1038
|
+
}
|
|
1039
|
+
|
|
1040
|
+
// Visit a parse tree produced by MySqlParser#alterProcedure.
|
|
1041
|
+
}, {
|
|
1042
|
+
key: "visitAlterProcedure",
|
|
1043
|
+
value: function visitAlterProcedure(ctx) {
|
|
1044
|
+
return this.visitChildren(ctx);
|
|
1045
|
+
}
|
|
1046
|
+
|
|
1047
|
+
// Visit a parse tree produced by MySqlParser#alterServer.
|
|
1048
|
+
}, {
|
|
1049
|
+
key: "visitAlterServer",
|
|
1050
|
+
value: function visitAlterServer(ctx) {
|
|
1051
|
+
return this.visitChildren(ctx);
|
|
1052
|
+
}
|
|
1053
|
+
|
|
1054
|
+
// Visit a parse tree produced by MySqlParser#alterTable.
|
|
1055
|
+
}, {
|
|
1056
|
+
key: "visitAlterTable",
|
|
1057
|
+
value: function visitAlterTable(ctx) {
|
|
1058
|
+
return this.visitChildren(ctx);
|
|
1059
|
+
}
|
|
1060
|
+
|
|
1061
|
+
// Visit a parse tree produced by MySqlParser#alterTablespace.
|
|
1062
|
+
}, {
|
|
1063
|
+
key: "visitAlterTablespace",
|
|
1064
|
+
value: function visitAlterTablespace(ctx) {
|
|
1065
|
+
return this.visitChildren(ctx);
|
|
1066
|
+
}
|
|
1067
|
+
|
|
1068
|
+
// Visit a parse tree produced by MySqlParser#alterView.
|
|
1069
|
+
}, {
|
|
1070
|
+
key: "visitAlterView",
|
|
1071
|
+
value: function visitAlterView(ctx) {
|
|
1072
|
+
return this.visitChildren(ctx);
|
|
1073
|
+
}
|
|
1074
|
+
|
|
1075
|
+
// Visit a parse tree produced by MySqlParser#alterByTableOption.
|
|
1076
|
+
}, {
|
|
1077
|
+
key: "visitAlterByTableOption",
|
|
1078
|
+
value: function visitAlterByTableOption(ctx) {
|
|
1079
|
+
return this.visitChildren(ctx);
|
|
1080
|
+
}
|
|
1081
|
+
|
|
1082
|
+
// Visit a parse tree produced by MySqlParser#alterByAddColumn.
|
|
1083
|
+
}, {
|
|
1084
|
+
key: "visitAlterByAddColumn",
|
|
1085
|
+
value: function visitAlterByAddColumn(ctx) {
|
|
1086
|
+
return this.visitChildren(ctx);
|
|
1087
|
+
}
|
|
1088
|
+
|
|
1089
|
+
// Visit a parse tree produced by MySqlParser#alterByAddColumns.
|
|
1090
|
+
}, {
|
|
1091
|
+
key: "visitAlterByAddColumns",
|
|
1092
|
+
value: function visitAlterByAddColumns(ctx) {
|
|
1093
|
+
return this.visitChildren(ctx);
|
|
1094
|
+
}
|
|
1095
|
+
|
|
1096
|
+
// Visit a parse tree produced by MySqlParser#alterByAddIndex.
|
|
1097
|
+
}, {
|
|
1098
|
+
key: "visitAlterByAddIndex",
|
|
1099
|
+
value: function visitAlterByAddIndex(ctx) {
|
|
1100
|
+
return this.visitChildren(ctx);
|
|
1101
|
+
}
|
|
1102
|
+
|
|
1103
|
+
// Visit a parse tree produced by MySqlParser#alterByAddPrimaryKey.
|
|
1104
|
+
}, {
|
|
1105
|
+
key: "visitAlterByAddPrimaryKey",
|
|
1106
|
+
value: function visitAlterByAddPrimaryKey(ctx) {
|
|
1107
|
+
return this.visitChildren(ctx);
|
|
1108
|
+
}
|
|
1109
|
+
|
|
1110
|
+
// Visit a parse tree produced by MySqlParser#alterByAddUniqueKey.
|
|
1111
|
+
}, {
|
|
1112
|
+
key: "visitAlterByAddUniqueKey",
|
|
1113
|
+
value: function visitAlterByAddUniqueKey(ctx) {
|
|
1114
|
+
return this.visitChildren(ctx);
|
|
1115
|
+
}
|
|
1116
|
+
|
|
1117
|
+
// Visit a parse tree produced by MySqlParser#alterByAddSpecialIndex.
|
|
1118
|
+
}, {
|
|
1119
|
+
key: "visitAlterByAddSpecialIndex",
|
|
1120
|
+
value: function visitAlterByAddSpecialIndex(ctx) {
|
|
1121
|
+
return this.visitChildren(ctx);
|
|
1122
|
+
}
|
|
1123
|
+
|
|
1124
|
+
// Visit a parse tree produced by MySqlParser#alterByAddForeignKey.
|
|
1125
|
+
}, {
|
|
1126
|
+
key: "visitAlterByAddForeignKey",
|
|
1127
|
+
value: function visitAlterByAddForeignKey(ctx) {
|
|
1128
|
+
return this.visitChildren(ctx);
|
|
1129
|
+
}
|
|
1130
|
+
|
|
1131
|
+
// Visit a parse tree produced by MySqlParser#alterByAddCheckTableConstraint.
|
|
1132
|
+
}, {
|
|
1133
|
+
key: "visitAlterByAddCheckTableConstraint",
|
|
1134
|
+
value: function visitAlterByAddCheckTableConstraint(ctx) {
|
|
1135
|
+
return this.visitChildren(ctx);
|
|
1136
|
+
}
|
|
1137
|
+
|
|
1138
|
+
// Visit a parse tree produced by MySqlParser#alterByAlterCheckTableConstraint.
|
|
1139
|
+
}, {
|
|
1140
|
+
key: "visitAlterByAlterCheckTableConstraint",
|
|
1141
|
+
value: function visitAlterByAlterCheckTableConstraint(ctx) {
|
|
1142
|
+
return this.visitChildren(ctx);
|
|
1143
|
+
}
|
|
1144
|
+
|
|
1145
|
+
// Visit a parse tree produced by MySqlParser#alterBySetAlgorithm.
|
|
1146
|
+
}, {
|
|
1147
|
+
key: "visitAlterBySetAlgorithm",
|
|
1148
|
+
value: function visitAlterBySetAlgorithm(ctx) {
|
|
1149
|
+
return this.visitChildren(ctx);
|
|
1150
|
+
}
|
|
1151
|
+
|
|
1152
|
+
// Visit a parse tree produced by MySqlParser#alterByChangeDefault.
|
|
1153
|
+
}, {
|
|
1154
|
+
key: "visitAlterByChangeDefault",
|
|
1155
|
+
value: function visitAlterByChangeDefault(ctx) {
|
|
1156
|
+
return this.visitChildren(ctx);
|
|
1157
|
+
}
|
|
1158
|
+
|
|
1159
|
+
// Visit a parse tree produced by MySqlParser#alterByChangeColumn.
|
|
1160
|
+
}, {
|
|
1161
|
+
key: "visitAlterByChangeColumn",
|
|
1162
|
+
value: function visitAlterByChangeColumn(ctx) {
|
|
1163
|
+
return this.visitChildren(ctx);
|
|
1164
|
+
}
|
|
1165
|
+
|
|
1166
|
+
// Visit a parse tree produced by MySqlParser#alterByRenameColumn.
|
|
1167
|
+
}, {
|
|
1168
|
+
key: "visitAlterByRenameColumn",
|
|
1169
|
+
value: function visitAlterByRenameColumn(ctx) {
|
|
1170
|
+
return this.visitChildren(ctx);
|
|
1171
|
+
}
|
|
1172
|
+
|
|
1173
|
+
// Visit a parse tree produced by MySqlParser#alterByLock.
|
|
1174
|
+
}, {
|
|
1175
|
+
key: "visitAlterByLock",
|
|
1176
|
+
value: function visitAlterByLock(ctx) {
|
|
1177
|
+
return this.visitChildren(ctx);
|
|
1178
|
+
}
|
|
1179
|
+
|
|
1180
|
+
// Visit a parse tree produced by MySqlParser#alterByModifyColumn.
|
|
1181
|
+
}, {
|
|
1182
|
+
key: "visitAlterByModifyColumn",
|
|
1183
|
+
value: function visitAlterByModifyColumn(ctx) {
|
|
1184
|
+
return this.visitChildren(ctx);
|
|
1185
|
+
}
|
|
1186
|
+
|
|
1187
|
+
// Visit a parse tree produced by MySqlParser#alterByDropColumn.
|
|
1188
|
+
}, {
|
|
1189
|
+
key: "visitAlterByDropColumn",
|
|
1190
|
+
value: function visitAlterByDropColumn(ctx) {
|
|
1191
|
+
return this.visitChildren(ctx);
|
|
1192
|
+
}
|
|
1193
|
+
|
|
1194
|
+
// Visit a parse tree produced by MySqlParser#alterByDropConstraintCheck.
|
|
1195
|
+
}, {
|
|
1196
|
+
key: "visitAlterByDropConstraintCheck",
|
|
1197
|
+
value: function visitAlterByDropConstraintCheck(ctx) {
|
|
1198
|
+
return this.visitChildren(ctx);
|
|
1199
|
+
}
|
|
1200
|
+
|
|
1201
|
+
// Visit a parse tree produced by MySqlParser#alterByDropPrimaryKey.
|
|
1202
|
+
}, {
|
|
1203
|
+
key: "visitAlterByDropPrimaryKey",
|
|
1204
|
+
value: function visitAlterByDropPrimaryKey(ctx) {
|
|
1205
|
+
return this.visitChildren(ctx);
|
|
1206
|
+
}
|
|
1207
|
+
|
|
1208
|
+
// Visit a parse tree produced by MySqlParser#alterByDropIndex.
|
|
1209
|
+
}, {
|
|
1210
|
+
key: "visitAlterByDropIndex",
|
|
1211
|
+
value: function visitAlterByDropIndex(ctx) {
|
|
1212
|
+
return this.visitChildren(ctx);
|
|
1213
|
+
}
|
|
1214
|
+
|
|
1215
|
+
// Visit a parse tree produced by MySqlParser#alterByRenameIndex.
|
|
1216
|
+
}, {
|
|
1217
|
+
key: "visitAlterByRenameIndex",
|
|
1218
|
+
value: function visitAlterByRenameIndex(ctx) {
|
|
1219
|
+
return this.visitChildren(ctx);
|
|
1220
|
+
}
|
|
1221
|
+
|
|
1222
|
+
// Visit a parse tree produced by MySqlParser#alterByAlterColumnDefault.
|
|
1223
|
+
}, {
|
|
1224
|
+
key: "visitAlterByAlterColumnDefault",
|
|
1225
|
+
value: function visitAlterByAlterColumnDefault(ctx) {
|
|
1226
|
+
return this.visitChildren(ctx);
|
|
1227
|
+
}
|
|
1228
|
+
|
|
1229
|
+
// Visit a parse tree produced by MySqlParser#alterByAlterIndexVisibility.
|
|
1230
|
+
}, {
|
|
1231
|
+
key: "visitAlterByAlterIndexVisibility",
|
|
1232
|
+
value: function visitAlterByAlterIndexVisibility(ctx) {
|
|
1233
|
+
return this.visitChildren(ctx);
|
|
1234
|
+
}
|
|
1235
|
+
|
|
1236
|
+
// Visit a parse tree produced by MySqlParser#alterByDropForeignKey.
|
|
1237
|
+
}, {
|
|
1238
|
+
key: "visitAlterByDropForeignKey",
|
|
1239
|
+
value: function visitAlterByDropForeignKey(ctx) {
|
|
1240
|
+
return this.visitChildren(ctx);
|
|
1241
|
+
}
|
|
1242
|
+
|
|
1243
|
+
// Visit a parse tree produced by MySqlParser#alterByDisableKeys.
|
|
1244
|
+
}, {
|
|
1245
|
+
key: "visitAlterByDisableKeys",
|
|
1246
|
+
value: function visitAlterByDisableKeys(ctx) {
|
|
1247
|
+
return this.visitChildren(ctx);
|
|
1248
|
+
}
|
|
1249
|
+
|
|
1250
|
+
// Visit a parse tree produced by MySqlParser#alterByEnableKeys.
|
|
1251
|
+
}, {
|
|
1252
|
+
key: "visitAlterByEnableKeys",
|
|
1253
|
+
value: function visitAlterByEnableKeys(ctx) {
|
|
1254
|
+
return this.visitChildren(ctx);
|
|
1255
|
+
}
|
|
1256
|
+
|
|
1257
|
+
// Visit a parse tree produced by MySqlParser#alterByRename.
|
|
1258
|
+
}, {
|
|
1259
|
+
key: "visitAlterByRename",
|
|
1260
|
+
value: function visitAlterByRename(ctx) {
|
|
1261
|
+
return this.visitChildren(ctx);
|
|
1262
|
+
}
|
|
1263
|
+
|
|
1264
|
+
// Visit a parse tree produced by MySqlParser#alterByOrder.
|
|
1265
|
+
}, {
|
|
1266
|
+
key: "visitAlterByOrder",
|
|
1267
|
+
value: function visitAlterByOrder(ctx) {
|
|
1268
|
+
return this.visitChildren(ctx);
|
|
1269
|
+
}
|
|
1270
|
+
|
|
1271
|
+
// Visit a parse tree produced by MySqlParser#alterByConvertCharset.
|
|
1272
|
+
}, {
|
|
1273
|
+
key: "visitAlterByConvertCharset",
|
|
1274
|
+
value: function visitAlterByConvertCharset(ctx) {
|
|
1275
|
+
return this.visitChildren(ctx);
|
|
1276
|
+
}
|
|
1277
|
+
|
|
1278
|
+
// Visit a parse tree produced by MySqlParser#alterByDefaultCharset.
|
|
1279
|
+
}, {
|
|
1280
|
+
key: "visitAlterByDefaultCharset",
|
|
1281
|
+
value: function visitAlterByDefaultCharset(ctx) {
|
|
1282
|
+
return this.visitChildren(ctx);
|
|
1283
|
+
}
|
|
1284
|
+
|
|
1285
|
+
// Visit a parse tree produced by MySqlParser#alterByDiscardTablespace.
|
|
1286
|
+
}, {
|
|
1287
|
+
key: "visitAlterByDiscardTablespace",
|
|
1288
|
+
value: function visitAlterByDiscardTablespace(ctx) {
|
|
1289
|
+
return this.visitChildren(ctx);
|
|
1290
|
+
}
|
|
1291
|
+
|
|
1292
|
+
// Visit a parse tree produced by MySqlParser#alterByImportTablespace.
|
|
1293
|
+
}, {
|
|
1294
|
+
key: "visitAlterByImportTablespace",
|
|
1295
|
+
value: function visitAlterByImportTablespace(ctx) {
|
|
1296
|
+
return this.visitChildren(ctx);
|
|
1297
|
+
}
|
|
1298
|
+
|
|
1299
|
+
// Visit a parse tree produced by MySqlParser#alterByForce.
|
|
1300
|
+
}, {
|
|
1301
|
+
key: "visitAlterByForce",
|
|
1302
|
+
value: function visitAlterByForce(ctx) {
|
|
1303
|
+
return this.visitChildren(ctx);
|
|
1304
|
+
}
|
|
1305
|
+
|
|
1306
|
+
// Visit a parse tree produced by MySqlParser#alterByValidate.
|
|
1307
|
+
}, {
|
|
1308
|
+
key: "visitAlterByValidate",
|
|
1309
|
+
value: function visitAlterByValidate(ctx) {
|
|
1310
|
+
return this.visitChildren(ctx);
|
|
1311
|
+
}
|
|
1312
|
+
|
|
1313
|
+
// Visit a parse tree produced by MySqlParser#alterByAddDefinitions.
|
|
1314
|
+
}, {
|
|
1315
|
+
key: "visitAlterByAddDefinitions",
|
|
1316
|
+
value: function visitAlterByAddDefinitions(ctx) {
|
|
1317
|
+
return this.visitChildren(ctx);
|
|
1318
|
+
}
|
|
1319
|
+
|
|
1320
|
+
// Visit a parse tree produced by MySqlParser#alterPartition.
|
|
1321
|
+
}, {
|
|
1322
|
+
key: "visitAlterPartition",
|
|
1323
|
+
value: function visitAlterPartition(ctx) {
|
|
1324
|
+
return this.visitChildren(ctx);
|
|
1325
|
+
}
|
|
1326
|
+
|
|
1327
|
+
// Visit a parse tree produced by MySqlParser#alterByAddPartition.
|
|
1328
|
+
}, {
|
|
1329
|
+
key: "visitAlterByAddPartition",
|
|
1330
|
+
value: function visitAlterByAddPartition(ctx) {
|
|
1331
|
+
return this.visitChildren(ctx);
|
|
1332
|
+
}
|
|
1333
|
+
|
|
1334
|
+
// Visit a parse tree produced by MySqlParser#alterByDropPartition.
|
|
1335
|
+
}, {
|
|
1336
|
+
key: "visitAlterByDropPartition",
|
|
1337
|
+
value: function visitAlterByDropPartition(ctx) {
|
|
1338
|
+
return this.visitChildren(ctx);
|
|
1339
|
+
}
|
|
1340
|
+
|
|
1341
|
+
// Visit a parse tree produced by MySqlParser#alterByDiscardPartition.
|
|
1342
|
+
}, {
|
|
1343
|
+
key: "visitAlterByDiscardPartition",
|
|
1344
|
+
value: function visitAlterByDiscardPartition(ctx) {
|
|
1345
|
+
return this.visitChildren(ctx);
|
|
1346
|
+
}
|
|
1347
|
+
|
|
1348
|
+
// Visit a parse tree produced by MySqlParser#alterByImportPartition.
|
|
1349
|
+
}, {
|
|
1350
|
+
key: "visitAlterByImportPartition",
|
|
1351
|
+
value: function visitAlterByImportPartition(ctx) {
|
|
1352
|
+
return this.visitChildren(ctx);
|
|
1353
|
+
}
|
|
1354
|
+
|
|
1355
|
+
// Visit a parse tree produced by MySqlParser#alterByTruncatePartition.
|
|
1356
|
+
}, {
|
|
1357
|
+
key: "visitAlterByTruncatePartition",
|
|
1358
|
+
value: function visitAlterByTruncatePartition(ctx) {
|
|
1359
|
+
return this.visitChildren(ctx);
|
|
1360
|
+
}
|
|
1361
|
+
|
|
1362
|
+
// Visit a parse tree produced by MySqlParser#alterByCoalescePartition.
|
|
1363
|
+
}, {
|
|
1364
|
+
key: "visitAlterByCoalescePartition",
|
|
1365
|
+
value: function visitAlterByCoalescePartition(ctx) {
|
|
1366
|
+
return this.visitChildren(ctx);
|
|
1367
|
+
}
|
|
1368
|
+
|
|
1369
|
+
// Visit a parse tree produced by MySqlParser#alterByReorganizePartition.
|
|
1370
|
+
}, {
|
|
1371
|
+
key: "visitAlterByReorganizePartition",
|
|
1372
|
+
value: function visitAlterByReorganizePartition(ctx) {
|
|
1373
|
+
return this.visitChildren(ctx);
|
|
1374
|
+
}
|
|
1375
|
+
|
|
1376
|
+
// Visit a parse tree produced by MySqlParser#alterByExchangePartition.
|
|
1377
|
+
}, {
|
|
1378
|
+
key: "visitAlterByExchangePartition",
|
|
1379
|
+
value: function visitAlterByExchangePartition(ctx) {
|
|
1380
|
+
return this.visitChildren(ctx);
|
|
1381
|
+
}
|
|
1382
|
+
|
|
1383
|
+
// Visit a parse tree produced by MySqlParser#alterByAnalyzePartition.
|
|
1384
|
+
}, {
|
|
1385
|
+
key: "visitAlterByAnalyzePartition",
|
|
1386
|
+
value: function visitAlterByAnalyzePartition(ctx) {
|
|
1387
|
+
return this.visitChildren(ctx);
|
|
1388
|
+
}
|
|
1389
|
+
|
|
1390
|
+
// Visit a parse tree produced by MySqlParser#alterByCheckPartition.
|
|
1391
|
+
}, {
|
|
1392
|
+
key: "visitAlterByCheckPartition",
|
|
1393
|
+
value: function visitAlterByCheckPartition(ctx) {
|
|
1394
|
+
return this.visitChildren(ctx);
|
|
1395
|
+
}
|
|
1396
|
+
|
|
1397
|
+
// Visit a parse tree produced by MySqlParser#alterByOptimizePartition.
|
|
1398
|
+
}, {
|
|
1399
|
+
key: "visitAlterByOptimizePartition",
|
|
1400
|
+
value: function visitAlterByOptimizePartition(ctx) {
|
|
1401
|
+
return this.visitChildren(ctx);
|
|
1402
|
+
}
|
|
1403
|
+
|
|
1404
|
+
// Visit a parse tree produced by MySqlParser#alterByRebuildPartition.
|
|
1405
|
+
}, {
|
|
1406
|
+
key: "visitAlterByRebuildPartition",
|
|
1407
|
+
value: function visitAlterByRebuildPartition(ctx) {
|
|
1408
|
+
return this.visitChildren(ctx);
|
|
1409
|
+
}
|
|
1410
|
+
|
|
1411
|
+
// Visit a parse tree produced by MySqlParser#alterByRepairPartition.
|
|
1412
|
+
}, {
|
|
1413
|
+
key: "visitAlterByRepairPartition",
|
|
1414
|
+
value: function visitAlterByRepairPartition(ctx) {
|
|
1415
|
+
return this.visitChildren(ctx);
|
|
1416
|
+
}
|
|
1417
|
+
|
|
1418
|
+
// Visit a parse tree produced by MySqlParser#alterByRemovePartitioning.
|
|
1419
|
+
}, {
|
|
1420
|
+
key: "visitAlterByRemovePartitioning",
|
|
1421
|
+
value: function visitAlterByRemovePartitioning(ctx) {
|
|
1422
|
+
return this.visitChildren(ctx);
|
|
1423
|
+
}
|
|
1424
|
+
|
|
1425
|
+
// Visit a parse tree produced by MySqlParser#alterByUpgradePartitioning.
|
|
1426
|
+
}, {
|
|
1427
|
+
key: "visitAlterByUpgradePartitioning",
|
|
1428
|
+
value: function visitAlterByUpgradePartitioning(ctx) {
|
|
1429
|
+
return this.visitChildren(ctx);
|
|
1430
|
+
}
|
|
1431
|
+
|
|
1432
|
+
// Visit a parse tree produced by MySqlParser#dropDatabase.
|
|
1433
|
+
}, {
|
|
1434
|
+
key: "visitDropDatabase",
|
|
1435
|
+
value: function visitDropDatabase(ctx) {
|
|
1436
|
+
return this.visitChildren(ctx);
|
|
1437
|
+
}
|
|
1438
|
+
|
|
1439
|
+
// Visit a parse tree produced by MySqlParser#dropEvent.
|
|
1440
|
+
}, {
|
|
1441
|
+
key: "visitDropEvent",
|
|
1442
|
+
value: function visitDropEvent(ctx) {
|
|
1443
|
+
return this.visitChildren(ctx);
|
|
1444
|
+
}
|
|
1445
|
+
|
|
1446
|
+
// Visit a parse tree produced by MySqlParser#dropIndex.
|
|
1447
|
+
}, {
|
|
1448
|
+
key: "visitDropIndex",
|
|
1449
|
+
value: function visitDropIndex(ctx) {
|
|
1450
|
+
return this.visitChildren(ctx);
|
|
1451
|
+
}
|
|
1452
|
+
|
|
1453
|
+
// Visit a parse tree produced by MySqlParser#dropLogfileGroup.
|
|
1454
|
+
}, {
|
|
1455
|
+
key: "visitDropLogfileGroup",
|
|
1456
|
+
value: function visitDropLogfileGroup(ctx) {
|
|
1457
|
+
return this.visitChildren(ctx);
|
|
1458
|
+
}
|
|
1459
|
+
|
|
1460
|
+
// Visit a parse tree produced by MySqlParser#dropProcedure.
|
|
1461
|
+
}, {
|
|
1462
|
+
key: "visitDropProcedure",
|
|
1463
|
+
value: function visitDropProcedure(ctx) {
|
|
1464
|
+
return this.visitChildren(ctx);
|
|
1465
|
+
}
|
|
1466
|
+
|
|
1467
|
+
// Visit a parse tree produced by MySqlParser#dropFunction.
|
|
1468
|
+
}, {
|
|
1469
|
+
key: "visitDropFunction",
|
|
1470
|
+
value: function visitDropFunction(ctx) {
|
|
1471
|
+
return this.visitChildren(ctx);
|
|
1472
|
+
}
|
|
1473
|
+
|
|
1474
|
+
// Visit a parse tree produced by MySqlParser#dropServer.
|
|
1475
|
+
}, {
|
|
1476
|
+
key: "visitDropServer",
|
|
1477
|
+
value: function visitDropServer(ctx) {
|
|
1478
|
+
return this.visitChildren(ctx);
|
|
1479
|
+
}
|
|
1480
|
+
|
|
1481
|
+
// Visit a parse tree produced by MySqlParser#dropTable.
|
|
1482
|
+
}, {
|
|
1483
|
+
key: "visitDropTable",
|
|
1484
|
+
value: function visitDropTable(ctx) {
|
|
1485
|
+
return this.visitChildren(ctx);
|
|
1486
|
+
}
|
|
1487
|
+
|
|
1488
|
+
// Visit a parse tree produced by MySqlParser#dropTablespace.
|
|
1489
|
+
}, {
|
|
1490
|
+
key: "visitDropTablespace",
|
|
1491
|
+
value: function visitDropTablespace(ctx) {
|
|
1492
|
+
return this.visitChildren(ctx);
|
|
1493
|
+
}
|
|
1494
|
+
|
|
1495
|
+
// Visit a parse tree produced by MySqlParser#dropTrigger.
|
|
1496
|
+
}, {
|
|
1497
|
+
key: "visitDropTrigger",
|
|
1498
|
+
value: function visitDropTrigger(ctx) {
|
|
1499
|
+
return this.visitChildren(ctx);
|
|
1500
|
+
}
|
|
1501
|
+
|
|
1502
|
+
// Visit a parse tree produced by MySqlParser#dropView.
|
|
1503
|
+
}, {
|
|
1504
|
+
key: "visitDropView",
|
|
1505
|
+
value: function visitDropView(ctx) {
|
|
1506
|
+
return this.visitChildren(ctx);
|
|
1507
|
+
}
|
|
1508
|
+
|
|
1509
|
+
// Visit a parse tree produced by MySqlParser#dropRole.
|
|
1510
|
+
}, {
|
|
1511
|
+
key: "visitDropRole",
|
|
1512
|
+
value: function visitDropRole(ctx) {
|
|
1513
|
+
return this.visitChildren(ctx);
|
|
1514
|
+
}
|
|
1515
|
+
|
|
1516
|
+
// Visit a parse tree produced by MySqlParser#setRole.
|
|
1517
|
+
}, {
|
|
1518
|
+
key: "visitSetRole",
|
|
1519
|
+
value: function visitSetRole(ctx) {
|
|
1520
|
+
return this.visitChildren(ctx);
|
|
1521
|
+
}
|
|
1522
|
+
|
|
1523
|
+
// Visit a parse tree produced by MySqlParser#renameTable.
|
|
1524
|
+
}, {
|
|
1525
|
+
key: "visitRenameTable",
|
|
1526
|
+
value: function visitRenameTable(ctx) {
|
|
1527
|
+
return this.visitChildren(ctx);
|
|
1528
|
+
}
|
|
1529
|
+
|
|
1530
|
+
// Visit a parse tree produced by MySqlParser#renameTableClause.
|
|
1531
|
+
}, {
|
|
1532
|
+
key: "visitRenameTableClause",
|
|
1533
|
+
value: function visitRenameTableClause(ctx) {
|
|
1534
|
+
return this.visitChildren(ctx);
|
|
1535
|
+
}
|
|
1536
|
+
|
|
1537
|
+
// Visit a parse tree produced by MySqlParser#truncateTable.
|
|
1538
|
+
}, {
|
|
1539
|
+
key: "visitTruncateTable",
|
|
1540
|
+
value: function visitTruncateTable(ctx) {
|
|
1541
|
+
return this.visitChildren(ctx);
|
|
1542
|
+
}
|
|
1543
|
+
|
|
1544
|
+
// Visit a parse tree produced by MySqlParser#callStatement.
|
|
1545
|
+
}, {
|
|
1546
|
+
key: "visitCallStatement",
|
|
1547
|
+
value: function visitCallStatement(ctx) {
|
|
1548
|
+
return this.visitChildren(ctx);
|
|
1549
|
+
}
|
|
1550
|
+
|
|
1551
|
+
// Visit a parse tree produced by MySqlParser#deleteStatement.
|
|
1552
|
+
}, {
|
|
1553
|
+
key: "visitDeleteStatement",
|
|
1554
|
+
value: function visitDeleteStatement(ctx) {
|
|
1555
|
+
return this.visitChildren(ctx);
|
|
1556
|
+
}
|
|
1557
|
+
|
|
1558
|
+
// Visit a parse tree produced by MySqlParser#doStatement.
|
|
1559
|
+
}, {
|
|
1560
|
+
key: "visitDoStatement",
|
|
1561
|
+
value: function visitDoStatement(ctx) {
|
|
1562
|
+
return this.visitChildren(ctx);
|
|
1563
|
+
}
|
|
1564
|
+
|
|
1565
|
+
// Visit a parse tree produced by MySqlParser#handlerStatement.
|
|
1566
|
+
}, {
|
|
1567
|
+
key: "visitHandlerStatement",
|
|
1568
|
+
value: function visitHandlerStatement(ctx) {
|
|
1569
|
+
return this.visitChildren(ctx);
|
|
1570
|
+
}
|
|
1571
|
+
|
|
1572
|
+
// Visit a parse tree produced by MySqlParser#insertStatement.
|
|
1573
|
+
}, {
|
|
1574
|
+
key: "visitInsertStatement",
|
|
1575
|
+
value: function visitInsertStatement(ctx) {
|
|
1576
|
+
return this.visitChildren(ctx);
|
|
1577
|
+
}
|
|
1578
|
+
|
|
1579
|
+
// Visit a parse tree produced by MySqlParser#loadDataStatement.
|
|
1580
|
+
}, {
|
|
1581
|
+
key: "visitLoadDataStatement",
|
|
1582
|
+
value: function visitLoadDataStatement(ctx) {
|
|
1583
|
+
return this.visitChildren(ctx);
|
|
1584
|
+
}
|
|
1585
|
+
|
|
1586
|
+
// Visit a parse tree produced by MySqlParser#loadXmlStatement.
|
|
1587
|
+
}, {
|
|
1588
|
+
key: "visitLoadXmlStatement",
|
|
1589
|
+
value: function visitLoadXmlStatement(ctx) {
|
|
1590
|
+
return this.visitChildren(ctx);
|
|
1591
|
+
}
|
|
1592
|
+
|
|
1593
|
+
// Visit a parse tree produced by MySqlParser#replaceStatement.
|
|
1594
|
+
}, {
|
|
1595
|
+
key: "visitReplaceStatement",
|
|
1596
|
+
value: function visitReplaceStatement(ctx) {
|
|
1597
|
+
return this.visitChildren(ctx);
|
|
1598
|
+
}
|
|
1599
|
+
|
|
1600
|
+
// Visit a parse tree produced by MySqlParser#simpleSelect.
|
|
1601
|
+
}, {
|
|
1602
|
+
key: "visitSimpleSelect",
|
|
1603
|
+
value: function visitSimpleSelect(ctx) {
|
|
1604
|
+
return this.visitChildren(ctx);
|
|
1605
|
+
}
|
|
1606
|
+
|
|
1607
|
+
// Visit a parse tree produced by MySqlParser#parenthesisSelect.
|
|
1608
|
+
}, {
|
|
1609
|
+
key: "visitParenthesisSelect",
|
|
1610
|
+
value: function visitParenthesisSelect(ctx) {
|
|
1611
|
+
return this.visitChildren(ctx);
|
|
1612
|
+
}
|
|
1613
|
+
|
|
1614
|
+
// Visit a parse tree produced by MySqlParser#unionSelect.
|
|
1615
|
+
}, {
|
|
1616
|
+
key: "visitUnionSelect",
|
|
1617
|
+
value: function visitUnionSelect(ctx) {
|
|
1618
|
+
return this.visitChildren(ctx);
|
|
1619
|
+
}
|
|
1620
|
+
|
|
1621
|
+
// Visit a parse tree produced by MySqlParser#unionParenthesisSelect.
|
|
1622
|
+
}, {
|
|
1623
|
+
key: "visitUnionParenthesisSelect",
|
|
1624
|
+
value: function visitUnionParenthesisSelect(ctx) {
|
|
1625
|
+
return this.visitChildren(ctx);
|
|
1626
|
+
}
|
|
1627
|
+
|
|
1628
|
+
// Visit a parse tree produced by MySqlParser#withLateralStatement.
|
|
1629
|
+
}, {
|
|
1630
|
+
key: "visitWithLateralStatement",
|
|
1631
|
+
value: function visitWithLateralStatement(ctx) {
|
|
1632
|
+
return this.visitChildren(ctx);
|
|
1633
|
+
}
|
|
1634
|
+
|
|
1635
|
+
// Visit a parse tree produced by MySqlParser#updateStatement.
|
|
1636
|
+
}, {
|
|
1637
|
+
key: "visitUpdateStatement",
|
|
1638
|
+
value: function visitUpdateStatement(ctx) {
|
|
1639
|
+
return this.visitChildren(ctx);
|
|
1640
|
+
}
|
|
1641
|
+
|
|
1642
|
+
// Visit a parse tree produced by MySqlParser#valuesStatement.
|
|
1643
|
+
}, {
|
|
1644
|
+
key: "visitValuesStatement",
|
|
1645
|
+
value: function visitValuesStatement(ctx) {
|
|
1646
|
+
return this.visitChildren(ctx);
|
|
1647
|
+
}
|
|
1648
|
+
|
|
1649
|
+
// Visit a parse tree produced by MySqlParser#insertStatementValue.
|
|
1650
|
+
}, {
|
|
1651
|
+
key: "visitInsertStatementValue",
|
|
1652
|
+
value: function visitInsertStatementValue(ctx) {
|
|
1653
|
+
return this.visitChildren(ctx);
|
|
1654
|
+
}
|
|
1655
|
+
|
|
1656
|
+
// Visit a parse tree produced by MySqlParser#updatedElement.
|
|
1657
|
+
}, {
|
|
1658
|
+
key: "visitUpdatedElement",
|
|
1659
|
+
value: function visitUpdatedElement(ctx) {
|
|
1660
|
+
return this.visitChildren(ctx);
|
|
1661
|
+
}
|
|
1662
|
+
|
|
1663
|
+
// Visit a parse tree produced by MySqlParser#assignmentField.
|
|
1664
|
+
}, {
|
|
1665
|
+
key: "visitAssignmentField",
|
|
1666
|
+
value: function visitAssignmentField(ctx) {
|
|
1667
|
+
return this.visitChildren(ctx);
|
|
1668
|
+
}
|
|
1669
|
+
|
|
1670
|
+
// Visit a parse tree produced by MySqlParser#lockClause.
|
|
1671
|
+
}, {
|
|
1672
|
+
key: "visitLockClause",
|
|
1673
|
+
value: function visitLockClause(ctx) {
|
|
1674
|
+
return this.visitChildren(ctx);
|
|
1675
|
+
}
|
|
1676
|
+
|
|
1677
|
+
// Visit a parse tree produced by MySqlParser#singleDeleteStatement.
|
|
1678
|
+
}, {
|
|
1679
|
+
key: "visitSingleDeleteStatement",
|
|
1680
|
+
value: function visitSingleDeleteStatement(ctx) {
|
|
1681
|
+
return this.visitChildren(ctx);
|
|
1682
|
+
}
|
|
1683
|
+
|
|
1684
|
+
// Visit a parse tree produced by MySqlParser#multipleDeleteStatement.
|
|
1685
|
+
}, {
|
|
1686
|
+
key: "visitMultipleDeleteStatement",
|
|
1687
|
+
value: function visitMultipleDeleteStatement(ctx) {
|
|
1688
|
+
return this.visitChildren(ctx);
|
|
1689
|
+
}
|
|
1690
|
+
|
|
1691
|
+
// Visit a parse tree produced by MySqlParser#handlerOpenStatement.
|
|
1692
|
+
}, {
|
|
1693
|
+
key: "visitHandlerOpenStatement",
|
|
1694
|
+
value: function visitHandlerOpenStatement(ctx) {
|
|
1695
|
+
return this.visitChildren(ctx);
|
|
1696
|
+
}
|
|
1697
|
+
|
|
1698
|
+
// Visit a parse tree produced by MySqlParser#handlerReadIndexStatement.
|
|
1699
|
+
}, {
|
|
1700
|
+
key: "visitHandlerReadIndexStatement",
|
|
1701
|
+
value: function visitHandlerReadIndexStatement(ctx) {
|
|
1702
|
+
return this.visitChildren(ctx);
|
|
1703
|
+
}
|
|
1704
|
+
|
|
1705
|
+
// Visit a parse tree produced by MySqlParser#handlerReadStatement.
|
|
1706
|
+
}, {
|
|
1707
|
+
key: "visitHandlerReadStatement",
|
|
1708
|
+
value: function visitHandlerReadStatement(ctx) {
|
|
1709
|
+
return this.visitChildren(ctx);
|
|
1710
|
+
}
|
|
1711
|
+
|
|
1712
|
+
// Visit a parse tree produced by MySqlParser#handlerCloseStatement.
|
|
1713
|
+
}, {
|
|
1714
|
+
key: "visitHandlerCloseStatement",
|
|
1715
|
+
value: function visitHandlerCloseStatement(ctx) {
|
|
1716
|
+
return this.visitChildren(ctx);
|
|
1717
|
+
}
|
|
1718
|
+
|
|
1719
|
+
// Visit a parse tree produced by MySqlParser#singleUpdateStatement.
|
|
1720
|
+
}, {
|
|
1721
|
+
key: "visitSingleUpdateStatement",
|
|
1722
|
+
value: function visitSingleUpdateStatement(ctx) {
|
|
1723
|
+
return this.visitChildren(ctx);
|
|
1724
|
+
}
|
|
1725
|
+
|
|
1726
|
+
// Visit a parse tree produced by MySqlParser#multipleUpdateStatement.
|
|
1727
|
+
}, {
|
|
1728
|
+
key: "visitMultipleUpdateStatement",
|
|
1729
|
+
value: function visitMultipleUpdateStatement(ctx) {
|
|
1730
|
+
return this.visitChildren(ctx);
|
|
1731
|
+
}
|
|
1732
|
+
|
|
1733
|
+
// Visit a parse tree produced by MySqlParser#orderByClause.
|
|
1734
|
+
}, {
|
|
1735
|
+
key: "visitOrderByClause",
|
|
1736
|
+
value: function visitOrderByClause(ctx) {
|
|
1737
|
+
return this.visitChildren(ctx);
|
|
1738
|
+
}
|
|
1739
|
+
|
|
1740
|
+
// Visit a parse tree produced by MySqlParser#orderByExpression.
|
|
1741
|
+
}, {
|
|
1742
|
+
key: "visitOrderByExpression",
|
|
1743
|
+
value: function visitOrderByExpression(ctx) {
|
|
1744
|
+
return this.visitChildren(ctx);
|
|
1745
|
+
}
|
|
1746
|
+
|
|
1747
|
+
// Visit a parse tree produced by MySqlParser#tableSources.
|
|
1748
|
+
}, {
|
|
1749
|
+
key: "visitTableSources",
|
|
1750
|
+
value: function visitTableSources(ctx) {
|
|
1751
|
+
return this.visitChildren(ctx);
|
|
1752
|
+
}
|
|
1753
|
+
|
|
1754
|
+
// Visit a parse tree produced by MySqlParser#tableSourceBase.
|
|
1755
|
+
}, {
|
|
1756
|
+
key: "visitTableSourceBase",
|
|
1757
|
+
value: function visitTableSourceBase(ctx) {
|
|
1758
|
+
return this.visitChildren(ctx);
|
|
1759
|
+
}
|
|
1760
|
+
|
|
1761
|
+
// Visit a parse tree produced by MySqlParser#tableSourceNested.
|
|
1762
|
+
}, {
|
|
1763
|
+
key: "visitTableSourceNested",
|
|
1764
|
+
value: function visitTableSourceNested(ctx) {
|
|
1765
|
+
return this.visitChildren(ctx);
|
|
1766
|
+
}
|
|
1767
|
+
|
|
1768
|
+
// Visit a parse tree produced by MySqlParser#tableJson.
|
|
1769
|
+
}, {
|
|
1770
|
+
key: "visitTableJson",
|
|
1771
|
+
value: function visitTableJson(ctx) {
|
|
1772
|
+
return this.visitChildren(ctx);
|
|
1773
|
+
}
|
|
1774
|
+
|
|
1775
|
+
// Visit a parse tree produced by MySqlParser#atomTableItem.
|
|
1776
|
+
}, {
|
|
1777
|
+
key: "visitAtomTableItem",
|
|
1778
|
+
value: function visitAtomTableItem(ctx) {
|
|
1779
|
+
return this.visitChildren(ctx);
|
|
1780
|
+
}
|
|
1781
|
+
|
|
1782
|
+
// Visit a parse tree produced by MySqlParser#subqueryTableItem.
|
|
1783
|
+
}, {
|
|
1784
|
+
key: "visitSubqueryTableItem",
|
|
1785
|
+
value: function visitSubqueryTableItem(ctx) {
|
|
1786
|
+
return this.visitChildren(ctx);
|
|
1787
|
+
}
|
|
1788
|
+
|
|
1789
|
+
// Visit a parse tree produced by MySqlParser#tableSourcesItem.
|
|
1790
|
+
}, {
|
|
1791
|
+
key: "visitTableSourcesItem",
|
|
1792
|
+
value: function visitTableSourcesItem(ctx) {
|
|
1793
|
+
return this.visitChildren(ctx);
|
|
1794
|
+
}
|
|
1795
|
+
|
|
1796
|
+
// Visit a parse tree produced by MySqlParser#indexHint.
|
|
1797
|
+
}, {
|
|
1798
|
+
key: "visitIndexHint",
|
|
1799
|
+
value: function visitIndexHint(ctx) {
|
|
1800
|
+
return this.visitChildren(ctx);
|
|
1801
|
+
}
|
|
1802
|
+
|
|
1803
|
+
// Visit a parse tree produced by MySqlParser#indexHintType.
|
|
1804
|
+
}, {
|
|
1805
|
+
key: "visitIndexHintType",
|
|
1806
|
+
value: function visitIndexHintType(ctx) {
|
|
1807
|
+
return this.visitChildren(ctx);
|
|
1808
|
+
}
|
|
1809
|
+
|
|
1810
|
+
// Visit a parse tree produced by MySqlParser#innerJoin.
|
|
1811
|
+
}, {
|
|
1812
|
+
key: "visitInnerJoin",
|
|
1813
|
+
value: function visitInnerJoin(ctx) {
|
|
1814
|
+
return this.visitChildren(ctx);
|
|
1815
|
+
}
|
|
1816
|
+
|
|
1817
|
+
// Visit a parse tree produced by MySqlParser#straightJoin.
|
|
1818
|
+
}, {
|
|
1819
|
+
key: "visitStraightJoin",
|
|
1820
|
+
value: function visitStraightJoin(ctx) {
|
|
1821
|
+
return this.visitChildren(ctx);
|
|
1822
|
+
}
|
|
1823
|
+
|
|
1824
|
+
// Visit a parse tree produced by MySqlParser#outerJoin.
|
|
1825
|
+
}, {
|
|
1826
|
+
key: "visitOuterJoin",
|
|
1827
|
+
value: function visitOuterJoin(ctx) {
|
|
1828
|
+
return this.visitChildren(ctx);
|
|
1829
|
+
}
|
|
1830
|
+
|
|
1831
|
+
// Visit a parse tree produced by MySqlParser#naturalJoin.
|
|
1832
|
+
}, {
|
|
1833
|
+
key: "visitNaturalJoin",
|
|
1834
|
+
value: function visitNaturalJoin(ctx) {
|
|
1835
|
+
return this.visitChildren(ctx);
|
|
1836
|
+
}
|
|
1837
|
+
|
|
1838
|
+
// Visit a parse tree produced by MySqlParser#joinSpec.
|
|
1839
|
+
}, {
|
|
1840
|
+
key: "visitJoinSpec",
|
|
1841
|
+
value: function visitJoinSpec(ctx) {
|
|
1842
|
+
return this.visitChildren(ctx);
|
|
1843
|
+
}
|
|
1844
|
+
|
|
1845
|
+
// Visit a parse tree produced by MySqlParser#queryExpression.
|
|
1846
|
+
}, {
|
|
1847
|
+
key: "visitQueryExpression",
|
|
1848
|
+
value: function visitQueryExpression(ctx) {
|
|
1849
|
+
return this.visitChildren(ctx);
|
|
1850
|
+
}
|
|
1851
|
+
|
|
1852
|
+
// Visit a parse tree produced by MySqlParser#queryExpressionNointo.
|
|
1853
|
+
}, {
|
|
1854
|
+
key: "visitQueryExpressionNointo",
|
|
1855
|
+
value: function visitQueryExpressionNointo(ctx) {
|
|
1856
|
+
return this.visitChildren(ctx);
|
|
1857
|
+
}
|
|
1858
|
+
|
|
1859
|
+
// Visit a parse tree produced by MySqlParser#querySpecification.
|
|
1860
|
+
}, {
|
|
1861
|
+
key: "visitQuerySpecification",
|
|
1862
|
+
value: function visitQuerySpecification(ctx) {
|
|
1863
|
+
return this.visitChildren(ctx);
|
|
1864
|
+
}
|
|
1865
|
+
|
|
1866
|
+
// Visit a parse tree produced by MySqlParser#querySpecificationNointo.
|
|
1867
|
+
}, {
|
|
1868
|
+
key: "visitQuerySpecificationNointo",
|
|
1869
|
+
value: function visitQuerySpecificationNointo(ctx) {
|
|
1870
|
+
return this.visitChildren(ctx);
|
|
1871
|
+
}
|
|
1872
|
+
|
|
1873
|
+
// Visit a parse tree produced by MySqlParser#unionParenthesis.
|
|
1874
|
+
}, {
|
|
1875
|
+
key: "visitUnionParenthesis",
|
|
1876
|
+
value: function visitUnionParenthesis(ctx) {
|
|
1877
|
+
return this.visitChildren(ctx);
|
|
1878
|
+
}
|
|
1879
|
+
|
|
1880
|
+
// Visit a parse tree produced by MySqlParser#unionStatement.
|
|
1881
|
+
}, {
|
|
1882
|
+
key: "visitUnionStatement",
|
|
1883
|
+
value: function visitUnionStatement(ctx) {
|
|
1884
|
+
return this.visitChildren(ctx);
|
|
1885
|
+
}
|
|
1886
|
+
|
|
1887
|
+
// Visit a parse tree produced by MySqlParser#lateralStatement.
|
|
1888
|
+
}, {
|
|
1889
|
+
key: "visitLateralStatement",
|
|
1890
|
+
value: function visitLateralStatement(ctx) {
|
|
1891
|
+
return this.visitChildren(ctx);
|
|
1892
|
+
}
|
|
1893
|
+
|
|
1894
|
+
// Visit a parse tree produced by MySqlParser#jsonTable.
|
|
1895
|
+
}, {
|
|
1896
|
+
key: "visitJsonTable",
|
|
1897
|
+
value: function visitJsonTable(ctx) {
|
|
1898
|
+
return this.visitChildren(ctx);
|
|
1899
|
+
}
|
|
1900
|
+
|
|
1901
|
+
// Visit a parse tree produced by MySqlParser#jsonColumnList.
|
|
1902
|
+
}, {
|
|
1903
|
+
key: "visitJsonColumnList",
|
|
1904
|
+
value: function visitJsonColumnList(ctx) {
|
|
1905
|
+
return this.visitChildren(ctx);
|
|
1906
|
+
}
|
|
1907
|
+
|
|
1908
|
+
// Visit a parse tree produced by MySqlParser#jsonColumn.
|
|
1909
|
+
}, {
|
|
1910
|
+
key: "visitJsonColumn",
|
|
1911
|
+
value: function visitJsonColumn(ctx) {
|
|
1912
|
+
return this.visitChildren(ctx);
|
|
1913
|
+
}
|
|
1914
|
+
|
|
1915
|
+
// Visit a parse tree produced by MySqlParser#jsonOnEmpty.
|
|
1916
|
+
}, {
|
|
1917
|
+
key: "visitJsonOnEmpty",
|
|
1918
|
+
value: function visitJsonOnEmpty(ctx) {
|
|
1919
|
+
return this.visitChildren(ctx);
|
|
1920
|
+
}
|
|
1921
|
+
|
|
1922
|
+
// Visit a parse tree produced by MySqlParser#jsonOnError.
|
|
1923
|
+
}, {
|
|
1924
|
+
key: "visitJsonOnError",
|
|
1925
|
+
value: function visitJsonOnError(ctx) {
|
|
1926
|
+
return this.visitChildren(ctx);
|
|
1927
|
+
}
|
|
1928
|
+
|
|
1929
|
+
// Visit a parse tree produced by MySqlParser#selectSpec.
|
|
1930
|
+
}, {
|
|
1931
|
+
key: "visitSelectSpec",
|
|
1932
|
+
value: function visitSelectSpec(ctx) {
|
|
1933
|
+
return this.visitChildren(ctx);
|
|
1934
|
+
}
|
|
1935
|
+
|
|
1936
|
+
// Visit a parse tree produced by MySqlParser#selectElements.
|
|
1937
|
+
}, {
|
|
1938
|
+
key: "visitSelectElements",
|
|
1939
|
+
value: function visitSelectElements(ctx) {
|
|
1940
|
+
return this.visitChildren(ctx);
|
|
1941
|
+
}
|
|
1942
|
+
|
|
1943
|
+
// Visit a parse tree produced by MySqlParser#selectStarElement.
|
|
1944
|
+
}, {
|
|
1945
|
+
key: "visitSelectStarElement",
|
|
1946
|
+
value: function visitSelectStarElement(ctx) {
|
|
1947
|
+
return this.visitChildren(ctx);
|
|
1948
|
+
}
|
|
1949
|
+
|
|
1950
|
+
// Visit a parse tree produced by MySqlParser#selectColumnElement.
|
|
1951
|
+
}, {
|
|
1952
|
+
key: "visitSelectColumnElement",
|
|
1953
|
+
value: function visitSelectColumnElement(ctx) {
|
|
1954
|
+
return this.visitChildren(ctx);
|
|
1955
|
+
}
|
|
1956
|
+
|
|
1957
|
+
// Visit a parse tree produced by MySqlParser#selectFunctionElement.
|
|
1958
|
+
}, {
|
|
1959
|
+
key: "visitSelectFunctionElement",
|
|
1960
|
+
value: function visitSelectFunctionElement(ctx) {
|
|
1961
|
+
return this.visitChildren(ctx);
|
|
1962
|
+
}
|
|
1963
|
+
|
|
1964
|
+
// Visit a parse tree produced by MySqlParser#selectExpressionElement.
|
|
1965
|
+
}, {
|
|
1966
|
+
key: "visitSelectExpressionElement",
|
|
1967
|
+
value: function visitSelectExpressionElement(ctx) {
|
|
1968
|
+
return this.visitChildren(ctx);
|
|
1969
|
+
}
|
|
1970
|
+
|
|
1971
|
+
// Visit a parse tree produced by MySqlParser#selectIntoVariables.
|
|
1972
|
+
}, {
|
|
1973
|
+
key: "visitSelectIntoVariables",
|
|
1974
|
+
value: function visitSelectIntoVariables(ctx) {
|
|
1975
|
+
return this.visitChildren(ctx);
|
|
1976
|
+
}
|
|
1977
|
+
|
|
1978
|
+
// Visit a parse tree produced by MySqlParser#selectIntoDumpFile.
|
|
1979
|
+
}, {
|
|
1980
|
+
key: "visitSelectIntoDumpFile",
|
|
1981
|
+
value: function visitSelectIntoDumpFile(ctx) {
|
|
1982
|
+
return this.visitChildren(ctx);
|
|
1983
|
+
}
|
|
1984
|
+
|
|
1985
|
+
// Visit a parse tree produced by MySqlParser#selectIntoTextFile.
|
|
1986
|
+
}, {
|
|
1987
|
+
key: "visitSelectIntoTextFile",
|
|
1988
|
+
value: function visitSelectIntoTextFile(ctx) {
|
|
1989
|
+
return this.visitChildren(ctx);
|
|
1990
|
+
}
|
|
1991
|
+
|
|
1992
|
+
// Visit a parse tree produced by MySqlParser#selectFieldsInto.
|
|
1993
|
+
}, {
|
|
1994
|
+
key: "visitSelectFieldsInto",
|
|
1995
|
+
value: function visitSelectFieldsInto(ctx) {
|
|
1996
|
+
return this.visitChildren(ctx);
|
|
1997
|
+
}
|
|
1998
|
+
|
|
1999
|
+
// Visit a parse tree produced by MySqlParser#selectLinesInto.
|
|
2000
|
+
}, {
|
|
2001
|
+
key: "visitSelectLinesInto",
|
|
2002
|
+
value: function visitSelectLinesInto(ctx) {
|
|
2003
|
+
return this.visitChildren(ctx);
|
|
2004
|
+
}
|
|
2005
|
+
|
|
2006
|
+
// Visit a parse tree produced by MySqlParser#fromClause.
|
|
2007
|
+
}, {
|
|
2008
|
+
key: "visitFromClause",
|
|
2009
|
+
value: function visitFromClause(ctx) {
|
|
2010
|
+
return this.visitChildren(ctx);
|
|
2011
|
+
}
|
|
2012
|
+
|
|
2013
|
+
// Visit a parse tree produced by MySqlParser#groupByClause.
|
|
2014
|
+
}, {
|
|
2015
|
+
key: "visitGroupByClause",
|
|
2016
|
+
value: function visitGroupByClause(ctx) {
|
|
2017
|
+
return this.visitChildren(ctx);
|
|
2018
|
+
}
|
|
2019
|
+
|
|
2020
|
+
// Visit a parse tree produced by MySqlParser#havingClause.
|
|
2021
|
+
}, {
|
|
2022
|
+
key: "visitHavingClause",
|
|
2023
|
+
value: function visitHavingClause(ctx) {
|
|
2024
|
+
return this.visitChildren(ctx);
|
|
2025
|
+
}
|
|
2026
|
+
|
|
2027
|
+
// Visit a parse tree produced by MySqlParser#windowClause.
|
|
2028
|
+
}, {
|
|
2029
|
+
key: "visitWindowClause",
|
|
2030
|
+
value: function visitWindowClause(ctx) {
|
|
2031
|
+
return this.visitChildren(ctx);
|
|
2032
|
+
}
|
|
2033
|
+
|
|
2034
|
+
// Visit a parse tree produced by MySqlParser#groupByItem.
|
|
2035
|
+
}, {
|
|
2036
|
+
key: "visitGroupByItem",
|
|
2037
|
+
value: function visitGroupByItem(ctx) {
|
|
2038
|
+
return this.visitChildren(ctx);
|
|
2039
|
+
}
|
|
2040
|
+
|
|
2041
|
+
// Visit a parse tree produced by MySqlParser#limitClause.
|
|
2042
|
+
}, {
|
|
2043
|
+
key: "visitLimitClause",
|
|
2044
|
+
value: function visitLimitClause(ctx) {
|
|
2045
|
+
return this.visitChildren(ctx);
|
|
2046
|
+
}
|
|
2047
|
+
|
|
2048
|
+
// Visit a parse tree produced by MySqlParser#limitClauseAtom.
|
|
2049
|
+
}, {
|
|
2050
|
+
key: "visitLimitClauseAtom",
|
|
2051
|
+
value: function visitLimitClauseAtom(ctx) {
|
|
2052
|
+
return this.visitChildren(ctx);
|
|
2053
|
+
}
|
|
2054
|
+
|
|
2055
|
+
// Visit a parse tree produced by MySqlParser#startTransaction.
|
|
2056
|
+
}, {
|
|
2057
|
+
key: "visitStartTransaction",
|
|
2058
|
+
value: function visitStartTransaction(ctx) {
|
|
2059
|
+
return this.visitChildren(ctx);
|
|
2060
|
+
}
|
|
2061
|
+
|
|
2062
|
+
// Visit a parse tree produced by MySqlParser#beginWork.
|
|
2063
|
+
}, {
|
|
2064
|
+
key: "visitBeginWork",
|
|
2065
|
+
value: function visitBeginWork(ctx) {
|
|
2066
|
+
return this.visitChildren(ctx);
|
|
2067
|
+
}
|
|
2068
|
+
|
|
2069
|
+
// Visit a parse tree produced by MySqlParser#commitWork.
|
|
2070
|
+
}, {
|
|
2071
|
+
key: "visitCommitWork",
|
|
2072
|
+
value: function visitCommitWork(ctx) {
|
|
2073
|
+
return this.visitChildren(ctx);
|
|
2074
|
+
}
|
|
2075
|
+
|
|
2076
|
+
// Visit a parse tree produced by MySqlParser#rollbackWork.
|
|
2077
|
+
}, {
|
|
2078
|
+
key: "visitRollbackWork",
|
|
2079
|
+
value: function visitRollbackWork(ctx) {
|
|
2080
|
+
return this.visitChildren(ctx);
|
|
2081
|
+
}
|
|
2082
|
+
|
|
2083
|
+
// Visit a parse tree produced by MySqlParser#savepointStatement.
|
|
2084
|
+
}, {
|
|
2085
|
+
key: "visitSavepointStatement",
|
|
2086
|
+
value: function visitSavepointStatement(ctx) {
|
|
2087
|
+
return this.visitChildren(ctx);
|
|
2088
|
+
}
|
|
2089
|
+
|
|
2090
|
+
// Visit a parse tree produced by MySqlParser#rollbackStatement.
|
|
2091
|
+
}, {
|
|
2092
|
+
key: "visitRollbackStatement",
|
|
2093
|
+
value: function visitRollbackStatement(ctx) {
|
|
2094
|
+
return this.visitChildren(ctx);
|
|
2095
|
+
}
|
|
2096
|
+
|
|
2097
|
+
// Visit a parse tree produced by MySqlParser#releaseStatement.
|
|
2098
|
+
}, {
|
|
2099
|
+
key: "visitReleaseStatement",
|
|
2100
|
+
value: function visitReleaseStatement(ctx) {
|
|
2101
|
+
return this.visitChildren(ctx);
|
|
2102
|
+
}
|
|
2103
|
+
|
|
2104
|
+
// Visit a parse tree produced by MySqlParser#lockTables.
|
|
2105
|
+
}, {
|
|
2106
|
+
key: "visitLockTables",
|
|
2107
|
+
value: function visitLockTables(ctx) {
|
|
2108
|
+
return this.visitChildren(ctx);
|
|
2109
|
+
}
|
|
2110
|
+
|
|
2111
|
+
// Visit a parse tree produced by MySqlParser#unlockTables.
|
|
2112
|
+
}, {
|
|
2113
|
+
key: "visitUnlockTables",
|
|
2114
|
+
value: function visitUnlockTables(ctx) {
|
|
2115
|
+
return this.visitChildren(ctx);
|
|
2116
|
+
}
|
|
2117
|
+
|
|
2118
|
+
// Visit a parse tree produced by MySqlParser#setAutocommitStatement.
|
|
2119
|
+
}, {
|
|
2120
|
+
key: "visitSetAutocommitStatement",
|
|
2121
|
+
value: function visitSetAutocommitStatement(ctx) {
|
|
2122
|
+
return this.visitChildren(ctx);
|
|
2123
|
+
}
|
|
2124
|
+
|
|
2125
|
+
// Visit a parse tree produced by MySqlParser#setTransactionStatement.
|
|
2126
|
+
}, {
|
|
2127
|
+
key: "visitSetTransactionStatement",
|
|
2128
|
+
value: function visitSetTransactionStatement(ctx) {
|
|
2129
|
+
return this.visitChildren(ctx);
|
|
2130
|
+
}
|
|
2131
|
+
|
|
2132
|
+
// Visit a parse tree produced by MySqlParser#transactionMode.
|
|
2133
|
+
}, {
|
|
2134
|
+
key: "visitTransactionMode",
|
|
2135
|
+
value: function visitTransactionMode(ctx) {
|
|
2136
|
+
return this.visitChildren(ctx);
|
|
2137
|
+
}
|
|
2138
|
+
|
|
2139
|
+
// Visit a parse tree produced by MySqlParser#lockTableElement.
|
|
2140
|
+
}, {
|
|
2141
|
+
key: "visitLockTableElement",
|
|
2142
|
+
value: function visitLockTableElement(ctx) {
|
|
2143
|
+
return this.visitChildren(ctx);
|
|
2144
|
+
}
|
|
2145
|
+
|
|
2146
|
+
// Visit a parse tree produced by MySqlParser#lockAction.
|
|
2147
|
+
}, {
|
|
2148
|
+
key: "visitLockAction",
|
|
2149
|
+
value: function visitLockAction(ctx) {
|
|
2150
|
+
return this.visitChildren(ctx);
|
|
2151
|
+
}
|
|
2152
|
+
|
|
2153
|
+
// Visit a parse tree produced by MySqlParser#transactionOption.
|
|
2154
|
+
}, {
|
|
2155
|
+
key: "visitTransactionOption",
|
|
2156
|
+
value: function visitTransactionOption(ctx) {
|
|
2157
|
+
return this.visitChildren(ctx);
|
|
2158
|
+
}
|
|
2159
|
+
|
|
2160
|
+
// Visit a parse tree produced by MySqlParser#transactionLevel.
|
|
2161
|
+
}, {
|
|
2162
|
+
key: "visitTransactionLevel",
|
|
2163
|
+
value: function visitTransactionLevel(ctx) {
|
|
2164
|
+
return this.visitChildren(ctx);
|
|
2165
|
+
}
|
|
2166
|
+
|
|
2167
|
+
// Visit a parse tree produced by MySqlParser#changeMaster.
|
|
2168
|
+
}, {
|
|
2169
|
+
key: "visitChangeMaster",
|
|
2170
|
+
value: function visitChangeMaster(ctx) {
|
|
2171
|
+
return this.visitChildren(ctx);
|
|
2172
|
+
}
|
|
2173
|
+
|
|
2174
|
+
// Visit a parse tree produced by MySqlParser#changeReplicationFilter.
|
|
2175
|
+
}, {
|
|
2176
|
+
key: "visitChangeReplicationFilter",
|
|
2177
|
+
value: function visitChangeReplicationFilter(ctx) {
|
|
2178
|
+
return this.visitChildren(ctx);
|
|
2179
|
+
}
|
|
2180
|
+
|
|
2181
|
+
// Visit a parse tree produced by MySqlParser#purgeBinaryLogs.
|
|
2182
|
+
}, {
|
|
2183
|
+
key: "visitPurgeBinaryLogs",
|
|
2184
|
+
value: function visitPurgeBinaryLogs(ctx) {
|
|
2185
|
+
return this.visitChildren(ctx);
|
|
2186
|
+
}
|
|
2187
|
+
|
|
2188
|
+
// Visit a parse tree produced by MySqlParser#resetMaster.
|
|
2189
|
+
}, {
|
|
2190
|
+
key: "visitResetMaster",
|
|
2191
|
+
value: function visitResetMaster(ctx) {
|
|
2192
|
+
return this.visitChildren(ctx);
|
|
2193
|
+
}
|
|
2194
|
+
|
|
2195
|
+
// Visit a parse tree produced by MySqlParser#resetSlave.
|
|
2196
|
+
}, {
|
|
2197
|
+
key: "visitResetSlave",
|
|
2198
|
+
value: function visitResetSlave(ctx) {
|
|
2199
|
+
return this.visitChildren(ctx);
|
|
2200
|
+
}
|
|
2201
|
+
|
|
2202
|
+
// Visit a parse tree produced by MySqlParser#startSlave.
|
|
2203
|
+
}, {
|
|
2204
|
+
key: "visitStartSlave",
|
|
2205
|
+
value: function visitStartSlave(ctx) {
|
|
2206
|
+
return this.visitChildren(ctx);
|
|
2207
|
+
}
|
|
2208
|
+
|
|
2209
|
+
// Visit a parse tree produced by MySqlParser#stopSlave.
|
|
2210
|
+
}, {
|
|
2211
|
+
key: "visitStopSlave",
|
|
2212
|
+
value: function visitStopSlave(ctx) {
|
|
2213
|
+
return this.visitChildren(ctx);
|
|
2214
|
+
}
|
|
2215
|
+
|
|
2216
|
+
// Visit a parse tree produced by MySqlParser#startGroupReplication.
|
|
2217
|
+
}, {
|
|
2218
|
+
key: "visitStartGroupReplication",
|
|
2219
|
+
value: function visitStartGroupReplication(ctx) {
|
|
2220
|
+
return this.visitChildren(ctx);
|
|
2221
|
+
}
|
|
2222
|
+
|
|
2223
|
+
// Visit a parse tree produced by MySqlParser#stopGroupReplication.
|
|
2224
|
+
}, {
|
|
2225
|
+
key: "visitStopGroupReplication",
|
|
2226
|
+
value: function visitStopGroupReplication(ctx) {
|
|
2227
|
+
return this.visitChildren(ctx);
|
|
2228
|
+
}
|
|
2229
|
+
|
|
2230
|
+
// Visit a parse tree produced by MySqlParser#masterStringOption.
|
|
2231
|
+
}, {
|
|
2232
|
+
key: "visitMasterStringOption",
|
|
2233
|
+
value: function visitMasterStringOption(ctx) {
|
|
2234
|
+
return this.visitChildren(ctx);
|
|
2235
|
+
}
|
|
2236
|
+
|
|
2237
|
+
// Visit a parse tree produced by MySqlParser#masterDecimalOption.
|
|
2238
|
+
}, {
|
|
2239
|
+
key: "visitMasterDecimalOption",
|
|
2240
|
+
value: function visitMasterDecimalOption(ctx) {
|
|
2241
|
+
return this.visitChildren(ctx);
|
|
2242
|
+
}
|
|
2243
|
+
|
|
2244
|
+
// Visit a parse tree produced by MySqlParser#masterBoolOption.
|
|
2245
|
+
}, {
|
|
2246
|
+
key: "visitMasterBoolOption",
|
|
2247
|
+
value: function visitMasterBoolOption(ctx) {
|
|
2248
|
+
return this.visitChildren(ctx);
|
|
2249
|
+
}
|
|
2250
|
+
|
|
2251
|
+
// Visit a parse tree produced by MySqlParser#masterRealOption.
|
|
2252
|
+
}, {
|
|
2253
|
+
key: "visitMasterRealOption",
|
|
2254
|
+
value: function visitMasterRealOption(ctx) {
|
|
2255
|
+
return this.visitChildren(ctx);
|
|
2256
|
+
}
|
|
2257
|
+
|
|
2258
|
+
// Visit a parse tree produced by MySqlParser#masterUidListOption.
|
|
2259
|
+
}, {
|
|
2260
|
+
key: "visitMasterUidListOption",
|
|
2261
|
+
value: function visitMasterUidListOption(ctx) {
|
|
2262
|
+
return this.visitChildren(ctx);
|
|
2263
|
+
}
|
|
2264
|
+
|
|
2265
|
+
// Visit a parse tree produced by MySqlParser#stringMasterOption.
|
|
2266
|
+
}, {
|
|
2267
|
+
key: "visitStringMasterOption",
|
|
2268
|
+
value: function visitStringMasterOption(ctx) {
|
|
2269
|
+
return this.visitChildren(ctx);
|
|
2270
|
+
}
|
|
2271
|
+
|
|
2272
|
+
// Visit a parse tree produced by MySqlParser#decimalMasterOption.
|
|
2273
|
+
}, {
|
|
2274
|
+
key: "visitDecimalMasterOption",
|
|
2275
|
+
value: function visitDecimalMasterOption(ctx) {
|
|
2276
|
+
return this.visitChildren(ctx);
|
|
2277
|
+
}
|
|
2278
|
+
|
|
2279
|
+
// Visit a parse tree produced by MySqlParser#boolMasterOption.
|
|
2280
|
+
}, {
|
|
2281
|
+
key: "visitBoolMasterOption",
|
|
2282
|
+
value: function visitBoolMasterOption(ctx) {
|
|
2283
|
+
return this.visitChildren(ctx);
|
|
2284
|
+
}
|
|
2285
|
+
|
|
2286
|
+
// Visit a parse tree produced by MySqlParser#channelOption.
|
|
2287
|
+
}, {
|
|
2288
|
+
key: "visitChannelOption",
|
|
2289
|
+
value: function visitChannelOption(ctx) {
|
|
2290
|
+
return this.visitChildren(ctx);
|
|
2291
|
+
}
|
|
2292
|
+
|
|
2293
|
+
// Visit a parse tree produced by MySqlParser#doDbReplication.
|
|
2294
|
+
}, {
|
|
2295
|
+
key: "visitDoDbReplication",
|
|
2296
|
+
value: function visitDoDbReplication(ctx) {
|
|
2297
|
+
return this.visitChildren(ctx);
|
|
2298
|
+
}
|
|
2299
|
+
|
|
2300
|
+
// Visit a parse tree produced by MySqlParser#ignoreDbReplication.
|
|
2301
|
+
}, {
|
|
2302
|
+
key: "visitIgnoreDbReplication",
|
|
2303
|
+
value: function visitIgnoreDbReplication(ctx) {
|
|
2304
|
+
return this.visitChildren(ctx);
|
|
2305
|
+
}
|
|
2306
|
+
|
|
2307
|
+
// Visit a parse tree produced by MySqlParser#doTableReplication.
|
|
2308
|
+
}, {
|
|
2309
|
+
key: "visitDoTableReplication",
|
|
2310
|
+
value: function visitDoTableReplication(ctx) {
|
|
2311
|
+
return this.visitChildren(ctx);
|
|
2312
|
+
}
|
|
2313
|
+
|
|
2314
|
+
// Visit a parse tree produced by MySqlParser#ignoreTableReplication.
|
|
2315
|
+
}, {
|
|
2316
|
+
key: "visitIgnoreTableReplication",
|
|
2317
|
+
value: function visitIgnoreTableReplication(ctx) {
|
|
2318
|
+
return this.visitChildren(ctx);
|
|
2319
|
+
}
|
|
2320
|
+
|
|
2321
|
+
// Visit a parse tree produced by MySqlParser#wildDoTableReplication.
|
|
2322
|
+
}, {
|
|
2323
|
+
key: "visitWildDoTableReplication",
|
|
2324
|
+
value: function visitWildDoTableReplication(ctx) {
|
|
2325
|
+
return this.visitChildren(ctx);
|
|
2326
|
+
}
|
|
2327
|
+
|
|
2328
|
+
// Visit a parse tree produced by MySqlParser#wildIgnoreTableReplication.
|
|
2329
|
+
}, {
|
|
2330
|
+
key: "visitWildIgnoreTableReplication",
|
|
2331
|
+
value: function visitWildIgnoreTableReplication(ctx) {
|
|
2332
|
+
return this.visitChildren(ctx);
|
|
2333
|
+
}
|
|
2334
|
+
|
|
2335
|
+
// Visit a parse tree produced by MySqlParser#rewriteDbReplication.
|
|
2336
|
+
}, {
|
|
2337
|
+
key: "visitRewriteDbReplication",
|
|
2338
|
+
value: function visitRewriteDbReplication(ctx) {
|
|
2339
|
+
return this.visitChildren(ctx);
|
|
2340
|
+
}
|
|
2341
|
+
|
|
2342
|
+
// Visit a parse tree produced by MySqlParser#tablePair.
|
|
2343
|
+
}, {
|
|
2344
|
+
key: "visitTablePair",
|
|
2345
|
+
value: function visitTablePair(ctx) {
|
|
2346
|
+
return this.visitChildren(ctx);
|
|
2347
|
+
}
|
|
2348
|
+
|
|
2349
|
+
// Visit a parse tree produced by MySqlParser#threadType.
|
|
2350
|
+
}, {
|
|
2351
|
+
key: "visitThreadType",
|
|
2352
|
+
value: function visitThreadType(ctx) {
|
|
2353
|
+
return this.visitChildren(ctx);
|
|
2354
|
+
}
|
|
2355
|
+
|
|
2356
|
+
// Visit a parse tree produced by MySqlParser#gtidsUntilOption.
|
|
2357
|
+
}, {
|
|
2358
|
+
key: "visitGtidsUntilOption",
|
|
2359
|
+
value: function visitGtidsUntilOption(ctx) {
|
|
2360
|
+
return this.visitChildren(ctx);
|
|
2361
|
+
}
|
|
2362
|
+
|
|
2363
|
+
// Visit a parse tree produced by MySqlParser#masterLogUntilOption.
|
|
2364
|
+
}, {
|
|
2365
|
+
key: "visitMasterLogUntilOption",
|
|
2366
|
+
value: function visitMasterLogUntilOption(ctx) {
|
|
2367
|
+
return this.visitChildren(ctx);
|
|
2368
|
+
}
|
|
2369
|
+
|
|
2370
|
+
// Visit a parse tree produced by MySqlParser#relayLogUntilOption.
|
|
2371
|
+
}, {
|
|
2372
|
+
key: "visitRelayLogUntilOption",
|
|
2373
|
+
value: function visitRelayLogUntilOption(ctx) {
|
|
2374
|
+
return this.visitChildren(ctx);
|
|
2375
|
+
}
|
|
2376
|
+
|
|
2377
|
+
// Visit a parse tree produced by MySqlParser#sqlGapsUntilOption.
|
|
2378
|
+
}, {
|
|
2379
|
+
key: "visitSqlGapsUntilOption",
|
|
2380
|
+
value: function visitSqlGapsUntilOption(ctx) {
|
|
2381
|
+
return this.visitChildren(ctx);
|
|
2382
|
+
}
|
|
2383
|
+
|
|
2384
|
+
// Visit a parse tree produced by MySqlParser#userConnectionOption.
|
|
2385
|
+
}, {
|
|
2386
|
+
key: "visitUserConnectionOption",
|
|
2387
|
+
value: function visitUserConnectionOption(ctx) {
|
|
2388
|
+
return this.visitChildren(ctx);
|
|
2389
|
+
}
|
|
2390
|
+
|
|
2391
|
+
// Visit a parse tree produced by MySqlParser#passwordConnectionOption.
|
|
2392
|
+
}, {
|
|
2393
|
+
key: "visitPasswordConnectionOption",
|
|
2394
|
+
value: function visitPasswordConnectionOption(ctx) {
|
|
2395
|
+
return this.visitChildren(ctx);
|
|
2396
|
+
}
|
|
2397
|
+
|
|
2398
|
+
// Visit a parse tree produced by MySqlParser#defaultAuthConnectionOption.
|
|
2399
|
+
}, {
|
|
2400
|
+
key: "visitDefaultAuthConnectionOption",
|
|
2401
|
+
value: function visitDefaultAuthConnectionOption(ctx) {
|
|
2402
|
+
return this.visitChildren(ctx);
|
|
2403
|
+
}
|
|
2404
|
+
|
|
2405
|
+
// Visit a parse tree produced by MySqlParser#pluginDirConnectionOption.
|
|
2406
|
+
}, {
|
|
2407
|
+
key: "visitPluginDirConnectionOption",
|
|
2408
|
+
value: function visitPluginDirConnectionOption(ctx) {
|
|
2409
|
+
return this.visitChildren(ctx);
|
|
2410
|
+
}
|
|
2411
|
+
|
|
2412
|
+
// Visit a parse tree produced by MySqlParser#gtuidSet.
|
|
2413
|
+
}, {
|
|
2414
|
+
key: "visitGtuidSet",
|
|
2415
|
+
value: function visitGtuidSet(ctx) {
|
|
2416
|
+
return this.visitChildren(ctx);
|
|
2417
|
+
}
|
|
2418
|
+
|
|
2419
|
+
// Visit a parse tree produced by MySqlParser#xaStartTransaction.
|
|
2420
|
+
}, {
|
|
2421
|
+
key: "visitXaStartTransaction",
|
|
2422
|
+
value: function visitXaStartTransaction(ctx) {
|
|
2423
|
+
return this.visitChildren(ctx);
|
|
2424
|
+
}
|
|
2425
|
+
|
|
2426
|
+
// Visit a parse tree produced by MySqlParser#xaEndTransaction.
|
|
2427
|
+
}, {
|
|
2428
|
+
key: "visitXaEndTransaction",
|
|
2429
|
+
value: function visitXaEndTransaction(ctx) {
|
|
2430
|
+
return this.visitChildren(ctx);
|
|
2431
|
+
}
|
|
2432
|
+
|
|
2433
|
+
// Visit a parse tree produced by MySqlParser#xaPrepareStatement.
|
|
2434
|
+
}, {
|
|
2435
|
+
key: "visitXaPrepareStatement",
|
|
2436
|
+
value: function visitXaPrepareStatement(ctx) {
|
|
2437
|
+
return this.visitChildren(ctx);
|
|
2438
|
+
}
|
|
2439
|
+
|
|
2440
|
+
// Visit a parse tree produced by MySqlParser#xaCommitWork.
|
|
2441
|
+
}, {
|
|
2442
|
+
key: "visitXaCommitWork",
|
|
2443
|
+
value: function visitXaCommitWork(ctx) {
|
|
2444
|
+
return this.visitChildren(ctx);
|
|
2445
|
+
}
|
|
2446
|
+
|
|
2447
|
+
// Visit a parse tree produced by MySqlParser#xaRollbackWork.
|
|
2448
|
+
}, {
|
|
2449
|
+
key: "visitXaRollbackWork",
|
|
2450
|
+
value: function visitXaRollbackWork(ctx) {
|
|
2451
|
+
return this.visitChildren(ctx);
|
|
2452
|
+
}
|
|
2453
|
+
|
|
2454
|
+
// Visit a parse tree produced by MySqlParser#xaRecoverWork.
|
|
2455
|
+
}, {
|
|
2456
|
+
key: "visitXaRecoverWork",
|
|
2457
|
+
value: function visitXaRecoverWork(ctx) {
|
|
2458
|
+
return this.visitChildren(ctx);
|
|
2459
|
+
}
|
|
2460
|
+
|
|
2461
|
+
// Visit a parse tree produced by MySqlParser#prepareStatement.
|
|
2462
|
+
}, {
|
|
2463
|
+
key: "visitPrepareStatement",
|
|
2464
|
+
value: function visitPrepareStatement(ctx) {
|
|
2465
|
+
return this.visitChildren(ctx);
|
|
2466
|
+
}
|
|
2467
|
+
|
|
2468
|
+
// Visit a parse tree produced by MySqlParser#executeStatement.
|
|
2469
|
+
}, {
|
|
2470
|
+
key: "visitExecuteStatement",
|
|
2471
|
+
value: function visitExecuteStatement(ctx) {
|
|
2472
|
+
return this.visitChildren(ctx);
|
|
2473
|
+
}
|
|
2474
|
+
|
|
2475
|
+
// Visit a parse tree produced by MySqlParser#deallocatePrepare.
|
|
2476
|
+
}, {
|
|
2477
|
+
key: "visitDeallocatePrepare",
|
|
2478
|
+
value: function visitDeallocatePrepare(ctx) {
|
|
2479
|
+
return this.visitChildren(ctx);
|
|
2480
|
+
}
|
|
2481
|
+
|
|
2482
|
+
// Visit a parse tree produced by MySqlParser#routineBody.
|
|
2483
|
+
}, {
|
|
2484
|
+
key: "visitRoutineBody",
|
|
2485
|
+
value: function visitRoutineBody(ctx) {
|
|
2486
|
+
return this.visitChildren(ctx);
|
|
2487
|
+
}
|
|
2488
|
+
|
|
2489
|
+
// Visit a parse tree produced by MySqlParser#blockStatement.
|
|
2490
|
+
}, {
|
|
2491
|
+
key: "visitBlockStatement",
|
|
2492
|
+
value: function visitBlockStatement(ctx) {
|
|
2493
|
+
return this.visitChildren(ctx);
|
|
2494
|
+
}
|
|
2495
|
+
|
|
2496
|
+
// Visit a parse tree produced by MySqlParser#caseStatement.
|
|
2497
|
+
}, {
|
|
2498
|
+
key: "visitCaseStatement",
|
|
2499
|
+
value: function visitCaseStatement(ctx) {
|
|
2500
|
+
return this.visitChildren(ctx);
|
|
2501
|
+
}
|
|
2502
|
+
|
|
2503
|
+
// Visit a parse tree produced by MySqlParser#ifStatement.
|
|
2504
|
+
}, {
|
|
2505
|
+
key: "visitIfStatement",
|
|
2506
|
+
value: function visitIfStatement(ctx) {
|
|
2507
|
+
return this.visitChildren(ctx);
|
|
2508
|
+
}
|
|
2509
|
+
|
|
2510
|
+
// Visit a parse tree produced by MySqlParser#iterateStatement.
|
|
2511
|
+
}, {
|
|
2512
|
+
key: "visitIterateStatement",
|
|
2513
|
+
value: function visitIterateStatement(ctx) {
|
|
2514
|
+
return this.visitChildren(ctx);
|
|
2515
|
+
}
|
|
2516
|
+
|
|
2517
|
+
// Visit a parse tree produced by MySqlParser#leaveStatement.
|
|
2518
|
+
}, {
|
|
2519
|
+
key: "visitLeaveStatement",
|
|
2520
|
+
value: function visitLeaveStatement(ctx) {
|
|
2521
|
+
return this.visitChildren(ctx);
|
|
2522
|
+
}
|
|
2523
|
+
|
|
2524
|
+
// Visit a parse tree produced by MySqlParser#loopStatement.
|
|
2525
|
+
}, {
|
|
2526
|
+
key: "visitLoopStatement",
|
|
2527
|
+
value: function visitLoopStatement(ctx) {
|
|
2528
|
+
return this.visitChildren(ctx);
|
|
2529
|
+
}
|
|
2530
|
+
|
|
2531
|
+
// Visit a parse tree produced by MySqlParser#repeatStatement.
|
|
2532
|
+
}, {
|
|
2533
|
+
key: "visitRepeatStatement",
|
|
2534
|
+
value: function visitRepeatStatement(ctx) {
|
|
2535
|
+
return this.visitChildren(ctx);
|
|
2536
|
+
}
|
|
2537
|
+
|
|
2538
|
+
// Visit a parse tree produced by MySqlParser#returnStatement.
|
|
2539
|
+
}, {
|
|
2540
|
+
key: "visitReturnStatement",
|
|
2541
|
+
value: function visitReturnStatement(ctx) {
|
|
2542
|
+
return this.visitChildren(ctx);
|
|
2543
|
+
}
|
|
2544
|
+
|
|
2545
|
+
// Visit a parse tree produced by MySqlParser#whileStatement.
|
|
2546
|
+
}, {
|
|
2547
|
+
key: "visitWhileStatement",
|
|
2548
|
+
value: function visitWhileStatement(ctx) {
|
|
2549
|
+
return this.visitChildren(ctx);
|
|
2550
|
+
}
|
|
2551
|
+
|
|
2552
|
+
// Visit a parse tree produced by MySqlParser#CloseCursor.
|
|
2553
|
+
}, {
|
|
2554
|
+
key: "visitCloseCursor",
|
|
2555
|
+
value: function visitCloseCursor(ctx) {
|
|
2556
|
+
return this.visitChildren(ctx);
|
|
2557
|
+
}
|
|
2558
|
+
|
|
2559
|
+
// Visit a parse tree produced by MySqlParser#FetchCursor.
|
|
2560
|
+
}, {
|
|
2561
|
+
key: "visitFetchCursor",
|
|
2562
|
+
value: function visitFetchCursor(ctx) {
|
|
2563
|
+
return this.visitChildren(ctx);
|
|
2564
|
+
}
|
|
2565
|
+
|
|
2566
|
+
// Visit a parse tree produced by MySqlParser#OpenCursor.
|
|
2567
|
+
}, {
|
|
2568
|
+
key: "visitOpenCursor",
|
|
2569
|
+
value: function visitOpenCursor(ctx) {
|
|
2570
|
+
return this.visitChildren(ctx);
|
|
2571
|
+
}
|
|
2572
|
+
|
|
2573
|
+
// Visit a parse tree produced by MySqlParser#declareVariable.
|
|
2574
|
+
}, {
|
|
2575
|
+
key: "visitDeclareVariable",
|
|
2576
|
+
value: function visitDeclareVariable(ctx) {
|
|
2577
|
+
return this.visitChildren(ctx);
|
|
2578
|
+
}
|
|
2579
|
+
|
|
2580
|
+
// Visit a parse tree produced by MySqlParser#declareCondition.
|
|
2581
|
+
}, {
|
|
2582
|
+
key: "visitDeclareCondition",
|
|
2583
|
+
value: function visitDeclareCondition(ctx) {
|
|
2584
|
+
return this.visitChildren(ctx);
|
|
2585
|
+
}
|
|
2586
|
+
|
|
2587
|
+
// Visit a parse tree produced by MySqlParser#declareCursor.
|
|
2588
|
+
}, {
|
|
2589
|
+
key: "visitDeclareCursor",
|
|
2590
|
+
value: function visitDeclareCursor(ctx) {
|
|
2591
|
+
return this.visitChildren(ctx);
|
|
2592
|
+
}
|
|
2593
|
+
|
|
2594
|
+
// Visit a parse tree produced by MySqlParser#declareHandler.
|
|
2595
|
+
}, {
|
|
2596
|
+
key: "visitDeclareHandler",
|
|
2597
|
+
value: function visitDeclareHandler(ctx) {
|
|
2598
|
+
return this.visitChildren(ctx);
|
|
2599
|
+
}
|
|
2600
|
+
|
|
2601
|
+
// Visit a parse tree produced by MySqlParser#handlerConditionCode.
|
|
2602
|
+
}, {
|
|
2603
|
+
key: "visitHandlerConditionCode",
|
|
2604
|
+
value: function visitHandlerConditionCode(ctx) {
|
|
2605
|
+
return this.visitChildren(ctx);
|
|
2606
|
+
}
|
|
2607
|
+
|
|
2608
|
+
// Visit a parse tree produced by MySqlParser#handlerConditionState.
|
|
2609
|
+
}, {
|
|
2610
|
+
key: "visitHandlerConditionState",
|
|
2611
|
+
value: function visitHandlerConditionState(ctx) {
|
|
2612
|
+
return this.visitChildren(ctx);
|
|
2613
|
+
}
|
|
2614
|
+
|
|
2615
|
+
// Visit a parse tree produced by MySqlParser#handlerConditionName.
|
|
2616
|
+
}, {
|
|
2617
|
+
key: "visitHandlerConditionName",
|
|
2618
|
+
value: function visitHandlerConditionName(ctx) {
|
|
2619
|
+
return this.visitChildren(ctx);
|
|
2620
|
+
}
|
|
2621
|
+
|
|
2622
|
+
// Visit a parse tree produced by MySqlParser#handlerConditionWarning.
|
|
2623
|
+
}, {
|
|
2624
|
+
key: "visitHandlerConditionWarning",
|
|
2625
|
+
value: function visitHandlerConditionWarning(ctx) {
|
|
2626
|
+
return this.visitChildren(ctx);
|
|
2627
|
+
}
|
|
2628
|
+
|
|
2629
|
+
// Visit a parse tree produced by MySqlParser#handlerConditionNotfound.
|
|
2630
|
+
}, {
|
|
2631
|
+
key: "visitHandlerConditionNotfound",
|
|
2632
|
+
value: function visitHandlerConditionNotfound(ctx) {
|
|
2633
|
+
return this.visitChildren(ctx);
|
|
2634
|
+
}
|
|
2635
|
+
|
|
2636
|
+
// Visit a parse tree produced by MySqlParser#handlerConditionException.
|
|
2637
|
+
}, {
|
|
2638
|
+
key: "visitHandlerConditionException",
|
|
2639
|
+
value: function visitHandlerConditionException(ctx) {
|
|
2640
|
+
return this.visitChildren(ctx);
|
|
2641
|
+
}
|
|
2642
|
+
|
|
2643
|
+
// Visit a parse tree produced by MySqlParser#procedureSqlStatement.
|
|
2644
|
+
}, {
|
|
2645
|
+
key: "visitProcedureSqlStatement",
|
|
2646
|
+
value: function visitProcedureSqlStatement(ctx) {
|
|
2647
|
+
return this.visitChildren(ctx);
|
|
2648
|
+
}
|
|
2649
|
+
|
|
2650
|
+
// Visit a parse tree produced by MySqlParser#caseAlternative.
|
|
2651
|
+
}, {
|
|
2652
|
+
key: "visitCaseAlternative",
|
|
2653
|
+
value: function visitCaseAlternative(ctx) {
|
|
2654
|
+
return this.visitChildren(ctx);
|
|
2655
|
+
}
|
|
2656
|
+
|
|
2657
|
+
// Visit a parse tree produced by MySqlParser#elifAlternative.
|
|
2658
|
+
}, {
|
|
2659
|
+
key: "visitElifAlternative",
|
|
2660
|
+
value: function visitElifAlternative(ctx) {
|
|
2661
|
+
return this.visitChildren(ctx);
|
|
2662
|
+
}
|
|
2663
|
+
|
|
2664
|
+
// Visit a parse tree produced by MySqlParser#alterUserMysqlV56.
|
|
2665
|
+
}, {
|
|
2666
|
+
key: "visitAlterUserMysqlV56",
|
|
2667
|
+
value: function visitAlterUserMysqlV56(ctx) {
|
|
2668
|
+
return this.visitChildren(ctx);
|
|
2669
|
+
}
|
|
2670
|
+
|
|
2671
|
+
// Visit a parse tree produced by MySqlParser#alterUserMysqlV80.
|
|
2672
|
+
}, {
|
|
2673
|
+
key: "visitAlterUserMysqlV80",
|
|
2674
|
+
value: function visitAlterUserMysqlV80(ctx) {
|
|
2675
|
+
return this.visitChildren(ctx);
|
|
2676
|
+
}
|
|
2677
|
+
|
|
2678
|
+
// Visit a parse tree produced by MySqlParser#createUserMysqlV56.
|
|
2679
|
+
}, {
|
|
2680
|
+
key: "visitCreateUserMysqlV56",
|
|
2681
|
+
value: function visitCreateUserMysqlV56(ctx) {
|
|
2682
|
+
return this.visitChildren(ctx);
|
|
2683
|
+
}
|
|
2684
|
+
|
|
2685
|
+
// Visit a parse tree produced by MySqlParser#createUserMysqlV80.
|
|
2686
|
+
}, {
|
|
2687
|
+
key: "visitCreateUserMysqlV80",
|
|
2688
|
+
value: function visitCreateUserMysqlV80(ctx) {
|
|
2689
|
+
return this.visitChildren(ctx);
|
|
2690
|
+
}
|
|
2691
|
+
|
|
2692
|
+
// Visit a parse tree produced by MySqlParser#dropUser.
|
|
2693
|
+
}, {
|
|
2694
|
+
key: "visitDropUser",
|
|
2695
|
+
value: function visitDropUser(ctx) {
|
|
2696
|
+
return this.visitChildren(ctx);
|
|
2697
|
+
}
|
|
2698
|
+
|
|
2699
|
+
// Visit a parse tree produced by MySqlParser#grantStatement.
|
|
2700
|
+
}, {
|
|
2701
|
+
key: "visitGrantStatement",
|
|
2702
|
+
value: function visitGrantStatement(ctx) {
|
|
2703
|
+
return this.visitChildren(ctx);
|
|
2704
|
+
}
|
|
2705
|
+
|
|
2706
|
+
// Visit a parse tree produced by MySqlParser#roleOption.
|
|
2707
|
+
}, {
|
|
2708
|
+
key: "visitRoleOption",
|
|
2709
|
+
value: function visitRoleOption(ctx) {
|
|
2710
|
+
return this.visitChildren(ctx);
|
|
2711
|
+
}
|
|
2712
|
+
|
|
2713
|
+
// Visit a parse tree produced by MySqlParser#grantProxy.
|
|
2714
|
+
}, {
|
|
2715
|
+
key: "visitGrantProxy",
|
|
2716
|
+
value: function visitGrantProxy(ctx) {
|
|
2717
|
+
return this.visitChildren(ctx);
|
|
2718
|
+
}
|
|
2719
|
+
|
|
2720
|
+
// Visit a parse tree produced by MySqlParser#renameUser.
|
|
2721
|
+
}, {
|
|
2722
|
+
key: "visitRenameUser",
|
|
2723
|
+
value: function visitRenameUser(ctx) {
|
|
2724
|
+
return this.visitChildren(ctx);
|
|
2725
|
+
}
|
|
2726
|
+
|
|
2727
|
+
// Visit a parse tree produced by MySqlParser#detailRevoke.
|
|
2728
|
+
}, {
|
|
2729
|
+
key: "visitDetailRevoke",
|
|
2730
|
+
value: function visitDetailRevoke(ctx) {
|
|
2731
|
+
return this.visitChildren(ctx);
|
|
2732
|
+
}
|
|
2733
|
+
|
|
2734
|
+
// Visit a parse tree produced by MySqlParser#shortRevoke.
|
|
2735
|
+
}, {
|
|
2736
|
+
key: "visitShortRevoke",
|
|
2737
|
+
value: function visitShortRevoke(ctx) {
|
|
2738
|
+
return this.visitChildren(ctx);
|
|
2739
|
+
}
|
|
2740
|
+
|
|
2741
|
+
// Visit a parse tree produced by MySqlParser#roleRevoke.
|
|
2742
|
+
}, {
|
|
2743
|
+
key: "visitRoleRevoke",
|
|
2744
|
+
value: function visitRoleRevoke(ctx) {
|
|
2745
|
+
return this.visitChildren(ctx);
|
|
2746
|
+
}
|
|
2747
|
+
|
|
2748
|
+
// Visit a parse tree produced by MySqlParser#revokeProxy.
|
|
2749
|
+
}, {
|
|
2750
|
+
key: "visitRevokeProxy",
|
|
2751
|
+
value: function visitRevokeProxy(ctx) {
|
|
2752
|
+
return this.visitChildren(ctx);
|
|
2753
|
+
}
|
|
2754
|
+
|
|
2755
|
+
// Visit a parse tree produced by MySqlParser#setPasswordStatement.
|
|
2756
|
+
}, {
|
|
2757
|
+
key: "visitSetPasswordStatement",
|
|
2758
|
+
value: function visitSetPasswordStatement(ctx) {
|
|
2759
|
+
return this.visitChildren(ctx);
|
|
2760
|
+
}
|
|
2761
|
+
|
|
2762
|
+
// Visit a parse tree produced by MySqlParser#userSpecification.
|
|
2763
|
+
}, {
|
|
2764
|
+
key: "visitUserSpecification",
|
|
2765
|
+
value: function visitUserSpecification(ctx) {
|
|
2766
|
+
return this.visitChildren(ctx);
|
|
2767
|
+
}
|
|
2768
|
+
|
|
2769
|
+
// Visit a parse tree produced by MySqlParser#hashAuthOption.
|
|
2770
|
+
}, {
|
|
2771
|
+
key: "visitHashAuthOption",
|
|
2772
|
+
value: function visitHashAuthOption(ctx) {
|
|
2773
|
+
return this.visitChildren(ctx);
|
|
2774
|
+
}
|
|
2775
|
+
|
|
2776
|
+
// Visit a parse tree produced by MySqlParser#randomAuthOption.
|
|
2777
|
+
}, {
|
|
2778
|
+
key: "visitRandomAuthOption",
|
|
2779
|
+
value: function visitRandomAuthOption(ctx) {
|
|
2780
|
+
return this.visitChildren(ctx);
|
|
2781
|
+
}
|
|
2782
|
+
|
|
2783
|
+
// Visit a parse tree produced by MySqlParser#stringAuthOption.
|
|
2784
|
+
}, {
|
|
2785
|
+
key: "visitStringAuthOption",
|
|
2786
|
+
value: function visitStringAuthOption(ctx) {
|
|
2787
|
+
return this.visitChildren(ctx);
|
|
2788
|
+
}
|
|
2789
|
+
|
|
2790
|
+
// Visit a parse tree produced by MySqlParser#moduleAuthOption.
|
|
2791
|
+
}, {
|
|
2792
|
+
key: "visitModuleAuthOption",
|
|
2793
|
+
value: function visitModuleAuthOption(ctx) {
|
|
2794
|
+
return this.visitChildren(ctx);
|
|
2795
|
+
}
|
|
2796
|
+
|
|
2797
|
+
// Visit a parse tree produced by MySqlParser#simpleAuthOption.
|
|
2798
|
+
}, {
|
|
2799
|
+
key: "visitSimpleAuthOption",
|
|
2800
|
+
value: function visitSimpleAuthOption(ctx) {
|
|
2801
|
+
return this.visitChildren(ctx);
|
|
2802
|
+
}
|
|
2803
|
+
|
|
2804
|
+
// Visit a parse tree produced by MySqlParser#authOptionClause.
|
|
2805
|
+
}, {
|
|
2806
|
+
key: "visitAuthOptionClause",
|
|
2807
|
+
value: function visitAuthOptionClause(ctx) {
|
|
2808
|
+
return this.visitChildren(ctx);
|
|
2809
|
+
}
|
|
2810
|
+
|
|
2811
|
+
// Visit a parse tree produced by MySqlParser#module.
|
|
2812
|
+
}, {
|
|
2813
|
+
key: "visitModule",
|
|
2814
|
+
value: function visitModule(ctx) {
|
|
2815
|
+
return this.visitChildren(ctx);
|
|
2816
|
+
}
|
|
2817
|
+
|
|
2818
|
+
// Visit a parse tree produced by MySqlParser#passwordModuleOption.
|
|
2819
|
+
}, {
|
|
2820
|
+
key: "visitPasswordModuleOption",
|
|
2821
|
+
value: function visitPasswordModuleOption(ctx) {
|
|
2822
|
+
return this.visitChildren(ctx);
|
|
2823
|
+
}
|
|
2824
|
+
|
|
2825
|
+
// Visit a parse tree produced by MySqlParser#tlsOption.
|
|
2826
|
+
}, {
|
|
2827
|
+
key: "visitTlsOption",
|
|
2828
|
+
value: function visitTlsOption(ctx) {
|
|
2829
|
+
return this.visitChildren(ctx);
|
|
2830
|
+
}
|
|
2831
|
+
|
|
2832
|
+
// Visit a parse tree produced by MySqlParser#userResourceOption.
|
|
2833
|
+
}, {
|
|
2834
|
+
key: "visitUserResourceOption",
|
|
2835
|
+
value: function visitUserResourceOption(ctx) {
|
|
2836
|
+
return this.visitChildren(ctx);
|
|
2837
|
+
}
|
|
2838
|
+
|
|
2839
|
+
// Visit a parse tree produced by MySqlParser#userPasswordOption.
|
|
2840
|
+
}, {
|
|
2841
|
+
key: "visitUserPasswordOption",
|
|
2842
|
+
value: function visitUserPasswordOption(ctx) {
|
|
2843
|
+
return this.visitChildren(ctx);
|
|
2844
|
+
}
|
|
2845
|
+
|
|
2846
|
+
// Visit a parse tree produced by MySqlParser#userLockOption.
|
|
2847
|
+
}, {
|
|
2848
|
+
key: "visitUserLockOption",
|
|
2849
|
+
value: function visitUserLockOption(ctx) {
|
|
2850
|
+
return this.visitChildren(ctx);
|
|
2851
|
+
}
|
|
2852
|
+
|
|
2853
|
+
// Visit a parse tree produced by MySqlParser#privelegeClause.
|
|
2854
|
+
}, {
|
|
2855
|
+
key: "visitPrivelegeClause",
|
|
2856
|
+
value: function visitPrivelegeClause(ctx) {
|
|
2857
|
+
return this.visitChildren(ctx);
|
|
2858
|
+
}
|
|
2859
|
+
|
|
2860
|
+
// Visit a parse tree produced by MySqlParser#privilege.
|
|
2861
|
+
}, {
|
|
2862
|
+
key: "visitPrivilege",
|
|
2863
|
+
value: function visitPrivilege(ctx) {
|
|
2864
|
+
return this.visitChildren(ctx);
|
|
2865
|
+
}
|
|
2866
|
+
|
|
2867
|
+
// Visit a parse tree produced by MySqlParser#currentSchemaPriviLevel.
|
|
2868
|
+
}, {
|
|
2869
|
+
key: "visitCurrentSchemaPriviLevel",
|
|
2870
|
+
value: function visitCurrentSchemaPriviLevel(ctx) {
|
|
2871
|
+
return this.visitChildren(ctx);
|
|
2872
|
+
}
|
|
2873
|
+
|
|
2874
|
+
// Visit a parse tree produced by MySqlParser#globalPrivLevel.
|
|
2875
|
+
}, {
|
|
2876
|
+
key: "visitGlobalPrivLevel",
|
|
2877
|
+
value: function visitGlobalPrivLevel(ctx) {
|
|
2878
|
+
return this.visitChildren(ctx);
|
|
2879
|
+
}
|
|
2880
|
+
|
|
2881
|
+
// Visit a parse tree produced by MySqlParser#definiteSchemaPrivLevel.
|
|
2882
|
+
}, {
|
|
2883
|
+
key: "visitDefiniteSchemaPrivLevel",
|
|
2884
|
+
value: function visitDefiniteSchemaPrivLevel(ctx) {
|
|
2885
|
+
return this.visitChildren(ctx);
|
|
2886
|
+
}
|
|
2887
|
+
|
|
2888
|
+
// Visit a parse tree produced by MySqlParser#definiteFullTablePrivLevel.
|
|
2889
|
+
}, {
|
|
2890
|
+
key: "visitDefiniteFullTablePrivLevel",
|
|
2891
|
+
value: function visitDefiniteFullTablePrivLevel(ctx) {
|
|
2892
|
+
return this.visitChildren(ctx);
|
|
2893
|
+
}
|
|
2894
|
+
|
|
2895
|
+
// Visit a parse tree produced by MySqlParser#definiteFullTablePrivLevel2.
|
|
2896
|
+
}, {
|
|
2897
|
+
key: "visitDefiniteFullTablePrivLevel2",
|
|
2898
|
+
value: function visitDefiniteFullTablePrivLevel2(ctx) {
|
|
2899
|
+
return this.visitChildren(ctx);
|
|
2900
|
+
}
|
|
2901
|
+
|
|
2902
|
+
// Visit a parse tree produced by MySqlParser#definiteTablePrivLevel.
|
|
2903
|
+
}, {
|
|
2904
|
+
key: "visitDefiniteTablePrivLevel",
|
|
2905
|
+
value: function visitDefiniteTablePrivLevel(ctx) {
|
|
2906
|
+
return this.visitChildren(ctx);
|
|
2907
|
+
}
|
|
2908
|
+
|
|
2909
|
+
// Visit a parse tree produced by MySqlParser#renameUserClause.
|
|
2910
|
+
}, {
|
|
2911
|
+
key: "visitRenameUserClause",
|
|
2912
|
+
value: function visitRenameUserClause(ctx) {
|
|
2913
|
+
return this.visitChildren(ctx);
|
|
2914
|
+
}
|
|
2915
|
+
|
|
2916
|
+
// Visit a parse tree produced by MySqlParser#analyzeTable.
|
|
2917
|
+
}, {
|
|
2918
|
+
key: "visitAnalyzeTable",
|
|
2919
|
+
value: function visitAnalyzeTable(ctx) {
|
|
2920
|
+
return this.visitChildren(ctx);
|
|
2921
|
+
}
|
|
2922
|
+
|
|
2923
|
+
// Visit a parse tree produced by MySqlParser#checkTable.
|
|
2924
|
+
}, {
|
|
2925
|
+
key: "visitCheckTable",
|
|
2926
|
+
value: function visitCheckTable(ctx) {
|
|
2927
|
+
return this.visitChildren(ctx);
|
|
2928
|
+
}
|
|
2929
|
+
|
|
2930
|
+
// Visit a parse tree produced by MySqlParser#checksumTable.
|
|
2931
|
+
}, {
|
|
2932
|
+
key: "visitChecksumTable",
|
|
2933
|
+
value: function visitChecksumTable(ctx) {
|
|
2934
|
+
return this.visitChildren(ctx);
|
|
2935
|
+
}
|
|
2936
|
+
|
|
2937
|
+
// Visit a parse tree produced by MySqlParser#optimizeTable.
|
|
2938
|
+
}, {
|
|
2939
|
+
key: "visitOptimizeTable",
|
|
2940
|
+
value: function visitOptimizeTable(ctx) {
|
|
2941
|
+
return this.visitChildren(ctx);
|
|
2942
|
+
}
|
|
2943
|
+
|
|
2944
|
+
// Visit a parse tree produced by MySqlParser#repairTable.
|
|
2945
|
+
}, {
|
|
2946
|
+
key: "visitRepairTable",
|
|
2947
|
+
value: function visitRepairTable(ctx) {
|
|
2948
|
+
return this.visitChildren(ctx);
|
|
2949
|
+
}
|
|
2950
|
+
|
|
2951
|
+
// Visit a parse tree produced by MySqlParser#checkTableOption.
|
|
2952
|
+
}, {
|
|
2953
|
+
key: "visitCheckTableOption",
|
|
2954
|
+
value: function visitCheckTableOption(ctx) {
|
|
2955
|
+
return this.visitChildren(ctx);
|
|
2956
|
+
}
|
|
2957
|
+
|
|
2958
|
+
// Visit a parse tree produced by MySqlParser#createUdfunction.
|
|
2959
|
+
}, {
|
|
2960
|
+
key: "visitCreateUdfunction",
|
|
2961
|
+
value: function visitCreateUdfunction(ctx) {
|
|
2962
|
+
return this.visitChildren(ctx);
|
|
2963
|
+
}
|
|
2964
|
+
|
|
2965
|
+
// Visit a parse tree produced by MySqlParser#installPlugin.
|
|
2966
|
+
}, {
|
|
2967
|
+
key: "visitInstallPlugin",
|
|
2968
|
+
value: function visitInstallPlugin(ctx) {
|
|
2969
|
+
return this.visitChildren(ctx);
|
|
2970
|
+
}
|
|
2971
|
+
|
|
2972
|
+
// Visit a parse tree produced by MySqlParser#uninstallPlugin.
|
|
2973
|
+
}, {
|
|
2974
|
+
key: "visitUninstallPlugin",
|
|
2975
|
+
value: function visitUninstallPlugin(ctx) {
|
|
2976
|
+
return this.visitChildren(ctx);
|
|
2977
|
+
}
|
|
2978
|
+
|
|
2979
|
+
// Visit a parse tree produced by MySqlParser#setVariable.
|
|
2980
|
+
}, {
|
|
2981
|
+
key: "visitSetVariable",
|
|
2982
|
+
value: function visitSetVariable(ctx) {
|
|
2983
|
+
return this.visitChildren(ctx);
|
|
2984
|
+
}
|
|
2985
|
+
|
|
2986
|
+
// Visit a parse tree produced by MySqlParser#setCharset.
|
|
2987
|
+
}, {
|
|
2988
|
+
key: "visitSetCharset",
|
|
2989
|
+
value: function visitSetCharset(ctx) {
|
|
2990
|
+
return this.visitChildren(ctx);
|
|
2991
|
+
}
|
|
2992
|
+
|
|
2993
|
+
// Visit a parse tree produced by MySqlParser#setNames.
|
|
2994
|
+
}, {
|
|
2995
|
+
key: "visitSetNames",
|
|
2996
|
+
value: function visitSetNames(ctx) {
|
|
2997
|
+
return this.visitChildren(ctx);
|
|
2998
|
+
}
|
|
2999
|
+
|
|
3000
|
+
// Visit a parse tree produced by MySqlParser#setPassword.
|
|
3001
|
+
}, {
|
|
3002
|
+
key: "visitSetPassword",
|
|
3003
|
+
value: function visitSetPassword(ctx) {
|
|
3004
|
+
return this.visitChildren(ctx);
|
|
3005
|
+
}
|
|
3006
|
+
|
|
3007
|
+
// Visit a parse tree produced by MySqlParser#setTransaction.
|
|
3008
|
+
}, {
|
|
3009
|
+
key: "visitSetTransaction",
|
|
3010
|
+
value: function visitSetTransaction(ctx) {
|
|
3011
|
+
return this.visitChildren(ctx);
|
|
3012
|
+
}
|
|
3013
|
+
|
|
3014
|
+
// Visit a parse tree produced by MySqlParser#setAutocommit.
|
|
3015
|
+
}, {
|
|
3016
|
+
key: "visitSetAutocommit",
|
|
3017
|
+
value: function visitSetAutocommit(ctx) {
|
|
3018
|
+
return this.visitChildren(ctx);
|
|
3019
|
+
}
|
|
3020
|
+
|
|
3021
|
+
// Visit a parse tree produced by MySqlParser#setNewValueInsideTrigger.
|
|
3022
|
+
}, {
|
|
3023
|
+
key: "visitSetNewValueInsideTrigger",
|
|
3024
|
+
value: function visitSetNewValueInsideTrigger(ctx) {
|
|
3025
|
+
return this.visitChildren(ctx);
|
|
3026
|
+
}
|
|
3027
|
+
|
|
3028
|
+
// Visit a parse tree produced by MySqlParser#showMasterLogs.
|
|
3029
|
+
}, {
|
|
3030
|
+
key: "visitShowMasterLogs",
|
|
3031
|
+
value: function visitShowMasterLogs(ctx) {
|
|
3032
|
+
return this.visitChildren(ctx);
|
|
3033
|
+
}
|
|
3034
|
+
|
|
3035
|
+
// Visit a parse tree produced by MySqlParser#showLogEvents.
|
|
3036
|
+
}, {
|
|
3037
|
+
key: "visitShowLogEvents",
|
|
3038
|
+
value: function visitShowLogEvents(ctx) {
|
|
3039
|
+
return this.visitChildren(ctx);
|
|
3040
|
+
}
|
|
3041
|
+
|
|
3042
|
+
// Visit a parse tree produced by MySqlParser#showObjectFilter.
|
|
3043
|
+
}, {
|
|
3044
|
+
key: "visitShowObjectFilter",
|
|
3045
|
+
value: function visitShowObjectFilter(ctx) {
|
|
3046
|
+
return this.visitChildren(ctx);
|
|
3047
|
+
}
|
|
3048
|
+
|
|
3049
|
+
// Visit a parse tree produced by MySqlParser#showColumns.
|
|
3050
|
+
}, {
|
|
3051
|
+
key: "visitShowColumns",
|
|
3052
|
+
value: function visitShowColumns(ctx) {
|
|
3053
|
+
return this.visitChildren(ctx);
|
|
3054
|
+
}
|
|
3055
|
+
|
|
3056
|
+
// Visit a parse tree produced by MySqlParser#showCreateDb.
|
|
3057
|
+
}, {
|
|
3058
|
+
key: "visitShowCreateDb",
|
|
3059
|
+
value: function visitShowCreateDb(ctx) {
|
|
3060
|
+
return this.visitChildren(ctx);
|
|
3061
|
+
}
|
|
3062
|
+
|
|
3063
|
+
// Visit a parse tree produced by MySqlParser#showCreateFullIdObject.
|
|
3064
|
+
}, {
|
|
3065
|
+
key: "visitShowCreateFullIdObject",
|
|
3066
|
+
value: function visitShowCreateFullIdObject(ctx) {
|
|
3067
|
+
return this.visitChildren(ctx);
|
|
3068
|
+
}
|
|
3069
|
+
|
|
3070
|
+
// Visit a parse tree produced by MySqlParser#showCreateUser.
|
|
3071
|
+
}, {
|
|
3072
|
+
key: "visitShowCreateUser",
|
|
3073
|
+
value: function visitShowCreateUser(ctx) {
|
|
3074
|
+
return this.visitChildren(ctx);
|
|
3075
|
+
}
|
|
3076
|
+
|
|
3077
|
+
// Visit a parse tree produced by MySqlParser#showEngine.
|
|
3078
|
+
}, {
|
|
3079
|
+
key: "visitShowEngine",
|
|
3080
|
+
value: function visitShowEngine(ctx) {
|
|
3081
|
+
return this.visitChildren(ctx);
|
|
3082
|
+
}
|
|
3083
|
+
|
|
3084
|
+
// Visit a parse tree produced by MySqlParser#showGlobalInfo.
|
|
3085
|
+
}, {
|
|
3086
|
+
key: "visitShowGlobalInfo",
|
|
3087
|
+
value: function visitShowGlobalInfo(ctx) {
|
|
3088
|
+
return this.visitChildren(ctx);
|
|
3089
|
+
}
|
|
3090
|
+
|
|
3091
|
+
// Visit a parse tree produced by MySqlParser#showErrors.
|
|
3092
|
+
}, {
|
|
3093
|
+
key: "visitShowErrors",
|
|
3094
|
+
value: function visitShowErrors(ctx) {
|
|
3095
|
+
return this.visitChildren(ctx);
|
|
3096
|
+
}
|
|
3097
|
+
|
|
3098
|
+
// Visit a parse tree produced by MySqlParser#showCountErrors.
|
|
3099
|
+
}, {
|
|
3100
|
+
key: "visitShowCountErrors",
|
|
3101
|
+
value: function visitShowCountErrors(ctx) {
|
|
3102
|
+
return this.visitChildren(ctx);
|
|
3103
|
+
}
|
|
3104
|
+
|
|
3105
|
+
// Visit a parse tree produced by MySqlParser#showSchemaFilter.
|
|
3106
|
+
}, {
|
|
3107
|
+
key: "visitShowSchemaFilter",
|
|
3108
|
+
value: function visitShowSchemaFilter(ctx) {
|
|
3109
|
+
return this.visitChildren(ctx);
|
|
3110
|
+
}
|
|
3111
|
+
|
|
3112
|
+
// Visit a parse tree produced by MySqlParser#showRoutine.
|
|
3113
|
+
}, {
|
|
3114
|
+
key: "visitShowRoutine",
|
|
3115
|
+
value: function visitShowRoutine(ctx) {
|
|
3116
|
+
return this.visitChildren(ctx);
|
|
3117
|
+
}
|
|
3118
|
+
|
|
3119
|
+
// Visit a parse tree produced by MySqlParser#showGrants.
|
|
3120
|
+
}, {
|
|
3121
|
+
key: "visitShowGrants",
|
|
3122
|
+
value: function visitShowGrants(ctx) {
|
|
3123
|
+
return this.visitChildren(ctx);
|
|
3124
|
+
}
|
|
3125
|
+
|
|
3126
|
+
// Visit a parse tree produced by MySqlParser#showIndexes.
|
|
3127
|
+
}, {
|
|
3128
|
+
key: "visitShowIndexes",
|
|
3129
|
+
value: function visitShowIndexes(ctx) {
|
|
3130
|
+
return this.visitChildren(ctx);
|
|
3131
|
+
}
|
|
3132
|
+
|
|
3133
|
+
// Visit a parse tree produced by MySqlParser#showOpenTables.
|
|
3134
|
+
}, {
|
|
3135
|
+
key: "visitShowOpenTables",
|
|
3136
|
+
value: function visitShowOpenTables(ctx) {
|
|
3137
|
+
return this.visitChildren(ctx);
|
|
3138
|
+
}
|
|
3139
|
+
|
|
3140
|
+
// Visit a parse tree produced by MySqlParser#showProfile.
|
|
3141
|
+
}, {
|
|
3142
|
+
key: "visitShowProfile",
|
|
3143
|
+
value: function visitShowProfile(ctx) {
|
|
3144
|
+
return this.visitChildren(ctx);
|
|
3145
|
+
}
|
|
3146
|
+
|
|
3147
|
+
// Visit a parse tree produced by MySqlParser#showSlaveStatus.
|
|
3148
|
+
}, {
|
|
3149
|
+
key: "visitShowSlaveStatus",
|
|
3150
|
+
value: function visitShowSlaveStatus(ctx) {
|
|
3151
|
+
return this.visitChildren(ctx);
|
|
3152
|
+
}
|
|
3153
|
+
|
|
3154
|
+
// Visit a parse tree produced by MySqlParser#variableClause.
|
|
3155
|
+
}, {
|
|
3156
|
+
key: "visitVariableClause",
|
|
3157
|
+
value: function visitVariableClause(ctx) {
|
|
3158
|
+
return this.visitChildren(ctx);
|
|
3159
|
+
}
|
|
3160
|
+
|
|
3161
|
+
// Visit a parse tree produced by MySqlParser#showCommonEntity.
|
|
3162
|
+
}, {
|
|
3163
|
+
key: "visitShowCommonEntity",
|
|
3164
|
+
value: function visitShowCommonEntity(ctx) {
|
|
3165
|
+
return this.visitChildren(ctx);
|
|
3166
|
+
}
|
|
3167
|
+
|
|
3168
|
+
// Visit a parse tree produced by MySqlParser#showFilter.
|
|
3169
|
+
}, {
|
|
3170
|
+
key: "visitShowFilter",
|
|
3171
|
+
value: function visitShowFilter(ctx) {
|
|
3172
|
+
return this.visitChildren(ctx);
|
|
3173
|
+
}
|
|
3174
|
+
|
|
3175
|
+
// Visit a parse tree produced by MySqlParser#showGlobalInfoClause.
|
|
3176
|
+
}, {
|
|
3177
|
+
key: "visitShowGlobalInfoClause",
|
|
3178
|
+
value: function visitShowGlobalInfoClause(ctx) {
|
|
3179
|
+
return this.visitChildren(ctx);
|
|
3180
|
+
}
|
|
3181
|
+
|
|
3182
|
+
// Visit a parse tree produced by MySqlParser#showSchemaEntity.
|
|
3183
|
+
}, {
|
|
3184
|
+
key: "visitShowSchemaEntity",
|
|
3185
|
+
value: function visitShowSchemaEntity(ctx) {
|
|
3186
|
+
return this.visitChildren(ctx);
|
|
3187
|
+
}
|
|
3188
|
+
|
|
3189
|
+
// Visit a parse tree produced by MySqlParser#showProfileType.
|
|
3190
|
+
}, {
|
|
3191
|
+
key: "visitShowProfileType",
|
|
3192
|
+
value: function visitShowProfileType(ctx) {
|
|
3193
|
+
return this.visitChildren(ctx);
|
|
3194
|
+
}
|
|
3195
|
+
|
|
3196
|
+
// Visit a parse tree produced by MySqlParser#binlogStatement.
|
|
3197
|
+
}, {
|
|
3198
|
+
key: "visitBinlogStatement",
|
|
3199
|
+
value: function visitBinlogStatement(ctx) {
|
|
3200
|
+
return this.visitChildren(ctx);
|
|
3201
|
+
}
|
|
3202
|
+
|
|
3203
|
+
// Visit a parse tree produced by MySqlParser#cacheIndexStatement.
|
|
3204
|
+
}, {
|
|
3205
|
+
key: "visitCacheIndexStatement",
|
|
3206
|
+
value: function visitCacheIndexStatement(ctx) {
|
|
3207
|
+
return this.visitChildren(ctx);
|
|
3208
|
+
}
|
|
3209
|
+
|
|
3210
|
+
// Visit a parse tree produced by MySqlParser#flushStatement.
|
|
3211
|
+
}, {
|
|
3212
|
+
key: "visitFlushStatement",
|
|
3213
|
+
value: function visitFlushStatement(ctx) {
|
|
3214
|
+
return this.visitChildren(ctx);
|
|
3215
|
+
}
|
|
3216
|
+
|
|
3217
|
+
// Visit a parse tree produced by MySqlParser#killStatement.
|
|
3218
|
+
}, {
|
|
3219
|
+
key: "visitKillStatement",
|
|
3220
|
+
value: function visitKillStatement(ctx) {
|
|
3221
|
+
return this.visitChildren(ctx);
|
|
3222
|
+
}
|
|
3223
|
+
|
|
3224
|
+
// Visit a parse tree produced by MySqlParser#loadIndexIntoCache.
|
|
3225
|
+
}, {
|
|
3226
|
+
key: "visitLoadIndexIntoCache",
|
|
3227
|
+
value: function visitLoadIndexIntoCache(ctx) {
|
|
3228
|
+
return this.visitChildren(ctx);
|
|
3229
|
+
}
|
|
3230
|
+
|
|
3231
|
+
// Visit a parse tree produced by MySqlParser#resetStatement.
|
|
3232
|
+
}, {
|
|
3233
|
+
key: "visitResetStatement",
|
|
3234
|
+
value: function visitResetStatement(ctx) {
|
|
3235
|
+
return this.visitChildren(ctx);
|
|
3236
|
+
}
|
|
3237
|
+
|
|
3238
|
+
// Visit a parse tree produced by MySqlParser#shutdownStatement.
|
|
3239
|
+
}, {
|
|
3240
|
+
key: "visitShutdownStatement",
|
|
3241
|
+
value: function visitShutdownStatement(ctx) {
|
|
3242
|
+
return this.visitChildren(ctx);
|
|
3243
|
+
}
|
|
3244
|
+
|
|
3245
|
+
// Visit a parse tree produced by MySqlParser#tableIndexes.
|
|
3246
|
+
}, {
|
|
3247
|
+
key: "visitTableIndexes",
|
|
3248
|
+
value: function visitTableIndexes(ctx) {
|
|
3249
|
+
return this.visitChildren(ctx);
|
|
3250
|
+
}
|
|
3251
|
+
|
|
3252
|
+
// Visit a parse tree produced by MySqlParser#simpleFlushOption.
|
|
3253
|
+
}, {
|
|
3254
|
+
key: "visitSimpleFlushOption",
|
|
3255
|
+
value: function visitSimpleFlushOption(ctx) {
|
|
3256
|
+
return this.visitChildren(ctx);
|
|
3257
|
+
}
|
|
3258
|
+
|
|
3259
|
+
// Visit a parse tree produced by MySqlParser#channelFlushOption.
|
|
3260
|
+
}, {
|
|
3261
|
+
key: "visitChannelFlushOption",
|
|
3262
|
+
value: function visitChannelFlushOption(ctx) {
|
|
3263
|
+
return this.visitChildren(ctx);
|
|
3264
|
+
}
|
|
3265
|
+
|
|
3266
|
+
// Visit a parse tree produced by MySqlParser#tableFlushOption.
|
|
3267
|
+
}, {
|
|
3268
|
+
key: "visitTableFlushOption",
|
|
3269
|
+
value: function visitTableFlushOption(ctx) {
|
|
3270
|
+
return this.visitChildren(ctx);
|
|
3271
|
+
}
|
|
3272
|
+
|
|
3273
|
+
// Visit a parse tree produced by MySqlParser#flushTableOption.
|
|
3274
|
+
}, {
|
|
3275
|
+
key: "visitFlushTableOption",
|
|
3276
|
+
value: function visitFlushTableOption(ctx) {
|
|
3277
|
+
return this.visitChildren(ctx);
|
|
3278
|
+
}
|
|
3279
|
+
|
|
3280
|
+
// Visit a parse tree produced by MySqlParser#loadedTableIndexes.
|
|
3281
|
+
}, {
|
|
3282
|
+
key: "visitLoadedTableIndexes",
|
|
3283
|
+
value: function visitLoadedTableIndexes(ctx) {
|
|
3284
|
+
return this.visitChildren(ctx);
|
|
3285
|
+
}
|
|
3286
|
+
|
|
3287
|
+
// Visit a parse tree produced by MySqlParser#simpleDescribeStatement.
|
|
3288
|
+
}, {
|
|
3289
|
+
key: "visitSimpleDescribeStatement",
|
|
3290
|
+
value: function visitSimpleDescribeStatement(ctx) {
|
|
3291
|
+
return this.visitChildren(ctx);
|
|
3292
|
+
}
|
|
3293
|
+
|
|
3294
|
+
// Visit a parse tree produced by MySqlParser#fullDescribeStatement.
|
|
3295
|
+
}, {
|
|
3296
|
+
key: "visitFullDescribeStatement",
|
|
3297
|
+
value: function visitFullDescribeStatement(ctx) {
|
|
3298
|
+
return this.visitChildren(ctx);
|
|
3299
|
+
}
|
|
3300
|
+
|
|
3301
|
+
// Visit a parse tree produced by MySqlParser#helpStatement.
|
|
3302
|
+
}, {
|
|
3303
|
+
key: "visitHelpStatement",
|
|
3304
|
+
value: function visitHelpStatement(ctx) {
|
|
3305
|
+
return this.visitChildren(ctx);
|
|
3306
|
+
}
|
|
3307
|
+
|
|
3308
|
+
// Visit a parse tree produced by MySqlParser#useStatement.
|
|
3309
|
+
}, {
|
|
3310
|
+
key: "visitUseStatement",
|
|
3311
|
+
value: function visitUseStatement(ctx) {
|
|
3312
|
+
return this.visitChildren(ctx);
|
|
3313
|
+
}
|
|
3314
|
+
|
|
3315
|
+
// Visit a parse tree produced by MySqlParser#signalStatement.
|
|
3316
|
+
}, {
|
|
3317
|
+
key: "visitSignalStatement",
|
|
3318
|
+
value: function visitSignalStatement(ctx) {
|
|
3319
|
+
return this.visitChildren(ctx);
|
|
3320
|
+
}
|
|
3321
|
+
|
|
3322
|
+
// Visit a parse tree produced by MySqlParser#resignalStatement.
|
|
3323
|
+
}, {
|
|
3324
|
+
key: "visitResignalStatement",
|
|
3325
|
+
value: function visitResignalStatement(ctx) {
|
|
3326
|
+
return this.visitChildren(ctx);
|
|
3327
|
+
}
|
|
3328
|
+
|
|
3329
|
+
// Visit a parse tree produced by MySqlParser#signalConditionInformation.
|
|
3330
|
+
}, {
|
|
3331
|
+
key: "visitSignalConditionInformation",
|
|
3332
|
+
value: function visitSignalConditionInformation(ctx) {
|
|
3333
|
+
return this.visitChildren(ctx);
|
|
3334
|
+
}
|
|
3335
|
+
|
|
3336
|
+
// Visit a parse tree produced by MySqlParser#withStatement.
|
|
3337
|
+
}, {
|
|
3338
|
+
key: "visitWithStatement",
|
|
3339
|
+
value: function visitWithStatement(ctx) {
|
|
3340
|
+
return this.visitChildren(ctx);
|
|
3341
|
+
}
|
|
3342
|
+
|
|
3343
|
+
// Visit a parse tree produced by MySqlParser#tableStatement.
|
|
3344
|
+
}, {
|
|
3345
|
+
key: "visitTableStatement",
|
|
3346
|
+
value: function visitTableStatement(ctx) {
|
|
3347
|
+
return this.visitChildren(ctx);
|
|
3348
|
+
}
|
|
3349
|
+
|
|
3350
|
+
// Visit a parse tree produced by MySqlParser#diagnosticsStatement.
|
|
3351
|
+
}, {
|
|
3352
|
+
key: "visitDiagnosticsStatement",
|
|
3353
|
+
value: function visitDiagnosticsStatement(ctx) {
|
|
3354
|
+
return this.visitChildren(ctx);
|
|
3355
|
+
}
|
|
3356
|
+
|
|
3357
|
+
// Visit a parse tree produced by MySqlParser#diagnosticsConditionInformationName.
|
|
3358
|
+
}, {
|
|
3359
|
+
key: "visitDiagnosticsConditionInformationName",
|
|
3360
|
+
value: function visitDiagnosticsConditionInformationName(ctx) {
|
|
3361
|
+
return this.visitChildren(ctx);
|
|
3362
|
+
}
|
|
3363
|
+
|
|
3364
|
+
// Visit a parse tree produced by MySqlParser#describeStatements.
|
|
3365
|
+
}, {
|
|
3366
|
+
key: "visitDescribeStatements",
|
|
3367
|
+
value: function visitDescribeStatements(ctx) {
|
|
3368
|
+
return this.visitChildren(ctx);
|
|
3369
|
+
}
|
|
3370
|
+
|
|
3371
|
+
// Visit a parse tree produced by MySqlParser#describeConnection.
|
|
3372
|
+
}, {
|
|
3373
|
+
key: "visitDescribeConnection",
|
|
3374
|
+
value: function visitDescribeConnection(ctx) {
|
|
3375
|
+
return this.visitChildren(ctx);
|
|
3376
|
+
}
|
|
3377
|
+
|
|
3378
|
+
// Visit a parse tree produced by MySqlParser#fullId.
|
|
3379
|
+
}, {
|
|
3380
|
+
key: "visitFullId",
|
|
3381
|
+
value: function visitFullId(ctx) {
|
|
3382
|
+
return this.visitChildren(ctx);
|
|
3383
|
+
}
|
|
3384
|
+
|
|
3385
|
+
// Visit a parse tree produced by MySqlParser#tableName.
|
|
3386
|
+
}, {
|
|
3387
|
+
key: "visitTableName",
|
|
3388
|
+
value: function visitTableName(ctx) {
|
|
3389
|
+
return this.visitChildren(ctx);
|
|
3390
|
+
}
|
|
3391
|
+
|
|
3392
|
+
// Visit a parse tree produced by MySqlParser#roleName.
|
|
3393
|
+
}, {
|
|
3394
|
+
key: "visitRoleName",
|
|
3395
|
+
value: function visitRoleName(ctx) {
|
|
3396
|
+
return this.visitChildren(ctx);
|
|
3397
|
+
}
|
|
3398
|
+
|
|
3399
|
+
// Visit a parse tree produced by MySqlParser#fullColumnName.
|
|
3400
|
+
}, {
|
|
3401
|
+
key: "visitFullColumnName",
|
|
3402
|
+
value: function visitFullColumnName(ctx) {
|
|
3403
|
+
return this.visitChildren(ctx);
|
|
3404
|
+
}
|
|
3405
|
+
|
|
3406
|
+
// Visit a parse tree produced by MySqlParser#indexColumnName.
|
|
3407
|
+
}, {
|
|
3408
|
+
key: "visitIndexColumnName",
|
|
3409
|
+
value: function visitIndexColumnName(ctx) {
|
|
3410
|
+
return this.visitChildren(ctx);
|
|
3411
|
+
}
|
|
3412
|
+
|
|
3413
|
+
// Visit a parse tree produced by MySqlParser#simpleUserName.
|
|
3414
|
+
}, {
|
|
3415
|
+
key: "visitSimpleUserName",
|
|
3416
|
+
value: function visitSimpleUserName(ctx) {
|
|
3417
|
+
return this.visitChildren(ctx);
|
|
3418
|
+
}
|
|
3419
|
+
|
|
3420
|
+
// Visit a parse tree produced by MySqlParser#hostName.
|
|
3421
|
+
}, {
|
|
3422
|
+
key: "visitHostName",
|
|
3423
|
+
value: function visitHostName(ctx) {
|
|
3424
|
+
return this.visitChildren(ctx);
|
|
3425
|
+
}
|
|
3426
|
+
|
|
3427
|
+
// Visit a parse tree produced by MySqlParser#userName.
|
|
3428
|
+
}, {
|
|
3429
|
+
key: "visitUserName",
|
|
3430
|
+
value: function visitUserName(ctx) {
|
|
3431
|
+
return this.visitChildren(ctx);
|
|
3432
|
+
}
|
|
3433
|
+
|
|
3434
|
+
// Visit a parse tree produced by MySqlParser#mysqlVariable.
|
|
3435
|
+
}, {
|
|
3436
|
+
key: "visitMysqlVariable",
|
|
3437
|
+
value: function visitMysqlVariable(ctx) {
|
|
3438
|
+
return this.visitChildren(ctx);
|
|
3439
|
+
}
|
|
3440
|
+
|
|
3441
|
+
// Visit a parse tree produced by MySqlParser#charsetName.
|
|
3442
|
+
}, {
|
|
3443
|
+
key: "visitCharsetName",
|
|
3444
|
+
value: function visitCharsetName(ctx) {
|
|
3445
|
+
return this.visitChildren(ctx);
|
|
3446
|
+
}
|
|
3447
|
+
|
|
3448
|
+
// Visit a parse tree produced by MySqlParser#collationName.
|
|
3449
|
+
}, {
|
|
3450
|
+
key: "visitCollationName",
|
|
3451
|
+
value: function visitCollationName(ctx) {
|
|
3452
|
+
return this.visitChildren(ctx);
|
|
3453
|
+
}
|
|
3454
|
+
|
|
3455
|
+
// Visit a parse tree produced by MySqlParser#engineName.
|
|
3456
|
+
}, {
|
|
3457
|
+
key: "visitEngineName",
|
|
3458
|
+
value: function visitEngineName(ctx) {
|
|
3459
|
+
return this.visitChildren(ctx);
|
|
3460
|
+
}
|
|
3461
|
+
|
|
3462
|
+
// Visit a parse tree produced by MySqlParser#engineNameBase.
|
|
3463
|
+
}, {
|
|
3464
|
+
key: "visitEngineNameBase",
|
|
3465
|
+
value: function visitEngineNameBase(ctx) {
|
|
3466
|
+
return this.visitChildren(ctx);
|
|
3467
|
+
}
|
|
3468
|
+
|
|
3469
|
+
// Visit a parse tree produced by MySqlParser#uuidSet.
|
|
3470
|
+
}, {
|
|
3471
|
+
key: "visitUuidSet",
|
|
3472
|
+
value: function visitUuidSet(ctx) {
|
|
3473
|
+
return this.visitChildren(ctx);
|
|
3474
|
+
}
|
|
3475
|
+
|
|
3476
|
+
// Visit a parse tree produced by MySqlParser#xid.
|
|
3477
|
+
}, {
|
|
3478
|
+
key: "visitXid",
|
|
3479
|
+
value: function visitXid(ctx) {
|
|
3480
|
+
return this.visitChildren(ctx);
|
|
3481
|
+
}
|
|
3482
|
+
|
|
3483
|
+
// Visit a parse tree produced by MySqlParser#xuidStringId.
|
|
3484
|
+
}, {
|
|
3485
|
+
key: "visitXuidStringId",
|
|
3486
|
+
value: function visitXuidStringId(ctx) {
|
|
3487
|
+
return this.visitChildren(ctx);
|
|
3488
|
+
}
|
|
3489
|
+
|
|
3490
|
+
// Visit a parse tree produced by MySqlParser#authPlugin.
|
|
3491
|
+
}, {
|
|
3492
|
+
key: "visitAuthPlugin",
|
|
3493
|
+
value: function visitAuthPlugin(ctx) {
|
|
3494
|
+
return this.visitChildren(ctx);
|
|
3495
|
+
}
|
|
3496
|
+
|
|
3497
|
+
// Visit a parse tree produced by MySqlParser#uid.
|
|
3498
|
+
}, {
|
|
3499
|
+
key: "visitUid",
|
|
3500
|
+
value: function visitUid(ctx) {
|
|
3501
|
+
return this.visitChildren(ctx);
|
|
3502
|
+
}
|
|
3503
|
+
|
|
3504
|
+
// Visit a parse tree produced by MySqlParser#simpleId.
|
|
3505
|
+
}, {
|
|
3506
|
+
key: "visitSimpleId",
|
|
3507
|
+
value: function visitSimpleId(ctx) {
|
|
3508
|
+
return this.visitChildren(ctx);
|
|
3509
|
+
}
|
|
3510
|
+
|
|
3511
|
+
// Visit a parse tree produced by MySqlParser#dottedId.
|
|
3512
|
+
}, {
|
|
3513
|
+
key: "visitDottedId",
|
|
3514
|
+
value: function visitDottedId(ctx) {
|
|
3515
|
+
return this.visitChildren(ctx);
|
|
3516
|
+
}
|
|
3517
|
+
|
|
3518
|
+
// Visit a parse tree produced by MySqlParser#decimalLiteral.
|
|
3519
|
+
}, {
|
|
3520
|
+
key: "visitDecimalLiteral",
|
|
3521
|
+
value: function visitDecimalLiteral(ctx) {
|
|
3522
|
+
return this.visitChildren(ctx);
|
|
3523
|
+
}
|
|
3524
|
+
|
|
3525
|
+
// Visit a parse tree produced by MySqlParser#fileSizeLiteral.
|
|
3526
|
+
}, {
|
|
3527
|
+
key: "visitFileSizeLiteral",
|
|
3528
|
+
value: function visitFileSizeLiteral(ctx) {
|
|
3529
|
+
return this.visitChildren(ctx);
|
|
3530
|
+
}
|
|
3531
|
+
|
|
3532
|
+
// Visit a parse tree produced by MySqlParser#stringLiteral.
|
|
3533
|
+
}, {
|
|
3534
|
+
key: "visitStringLiteral",
|
|
3535
|
+
value: function visitStringLiteral(ctx) {
|
|
3536
|
+
return this.visitChildren(ctx);
|
|
3537
|
+
}
|
|
3538
|
+
|
|
3539
|
+
// Visit a parse tree produced by MySqlParser#booleanLiteral.
|
|
3540
|
+
}, {
|
|
3541
|
+
key: "visitBooleanLiteral",
|
|
3542
|
+
value: function visitBooleanLiteral(ctx) {
|
|
3543
|
+
return this.visitChildren(ctx);
|
|
3544
|
+
}
|
|
3545
|
+
|
|
3546
|
+
// Visit a parse tree produced by MySqlParser#hexadecimalLiteral.
|
|
3547
|
+
}, {
|
|
3548
|
+
key: "visitHexadecimalLiteral",
|
|
3549
|
+
value: function visitHexadecimalLiteral(ctx) {
|
|
3550
|
+
return this.visitChildren(ctx);
|
|
3551
|
+
}
|
|
3552
|
+
|
|
3553
|
+
// Visit a parse tree produced by MySqlParser#nullNotnull.
|
|
3554
|
+
}, {
|
|
3555
|
+
key: "visitNullNotnull",
|
|
3556
|
+
value: function visitNullNotnull(ctx) {
|
|
3557
|
+
return this.visitChildren(ctx);
|
|
3558
|
+
}
|
|
3559
|
+
|
|
3560
|
+
// Visit a parse tree produced by MySqlParser#constant.
|
|
3561
|
+
}, {
|
|
3562
|
+
key: "visitConstant",
|
|
3563
|
+
value: function visitConstant(ctx) {
|
|
3564
|
+
return this.visitChildren(ctx);
|
|
3565
|
+
}
|
|
3566
|
+
|
|
3567
|
+
// Visit a parse tree produced by MySqlParser#stringDataType.
|
|
3568
|
+
}, {
|
|
3569
|
+
key: "visitStringDataType",
|
|
3570
|
+
value: function visitStringDataType(ctx) {
|
|
3571
|
+
return this.visitChildren(ctx);
|
|
3572
|
+
}
|
|
3573
|
+
|
|
3574
|
+
// Visit a parse tree produced by MySqlParser#nationalVaryingStringDataType.
|
|
3575
|
+
}, {
|
|
3576
|
+
key: "visitNationalVaryingStringDataType",
|
|
3577
|
+
value: function visitNationalVaryingStringDataType(ctx) {
|
|
3578
|
+
return this.visitChildren(ctx);
|
|
3579
|
+
}
|
|
3580
|
+
|
|
3581
|
+
// Visit a parse tree produced by MySqlParser#nationalStringDataType.
|
|
3582
|
+
}, {
|
|
3583
|
+
key: "visitNationalStringDataType",
|
|
3584
|
+
value: function visitNationalStringDataType(ctx) {
|
|
3585
|
+
return this.visitChildren(ctx);
|
|
3586
|
+
}
|
|
3587
|
+
|
|
3588
|
+
// Visit a parse tree produced by MySqlParser#dimensionDataType.
|
|
3589
|
+
}, {
|
|
3590
|
+
key: "visitDimensionDataType",
|
|
3591
|
+
value: function visitDimensionDataType(ctx) {
|
|
3592
|
+
return this.visitChildren(ctx);
|
|
3593
|
+
}
|
|
3594
|
+
|
|
3595
|
+
// Visit a parse tree produced by MySqlParser#simpleDataType.
|
|
3596
|
+
}, {
|
|
3597
|
+
key: "visitSimpleDataType",
|
|
3598
|
+
value: function visitSimpleDataType(ctx) {
|
|
3599
|
+
return this.visitChildren(ctx);
|
|
3600
|
+
}
|
|
3601
|
+
|
|
3602
|
+
// Visit a parse tree produced by MySqlParser#collectionDataType.
|
|
3603
|
+
}, {
|
|
3604
|
+
key: "visitCollectionDataType",
|
|
3605
|
+
value: function visitCollectionDataType(ctx) {
|
|
3606
|
+
return this.visitChildren(ctx);
|
|
3607
|
+
}
|
|
3608
|
+
|
|
3609
|
+
// Visit a parse tree produced by MySqlParser#spatialDataType.
|
|
3610
|
+
}, {
|
|
3611
|
+
key: "visitSpatialDataType",
|
|
3612
|
+
value: function visitSpatialDataType(ctx) {
|
|
3613
|
+
return this.visitChildren(ctx);
|
|
3614
|
+
}
|
|
3615
|
+
|
|
3616
|
+
// Visit a parse tree produced by MySqlParser#longVarcharDataType.
|
|
3617
|
+
}, {
|
|
3618
|
+
key: "visitLongVarcharDataType",
|
|
3619
|
+
value: function visitLongVarcharDataType(ctx) {
|
|
3620
|
+
return this.visitChildren(ctx);
|
|
3621
|
+
}
|
|
3622
|
+
|
|
3623
|
+
// Visit a parse tree produced by MySqlParser#longVarbinaryDataType.
|
|
3624
|
+
}, {
|
|
3625
|
+
key: "visitLongVarbinaryDataType",
|
|
3626
|
+
value: function visitLongVarbinaryDataType(ctx) {
|
|
3627
|
+
return this.visitChildren(ctx);
|
|
3628
|
+
}
|
|
3629
|
+
|
|
3630
|
+
// Visit a parse tree produced by MySqlParser#collectionOptions.
|
|
3631
|
+
}, {
|
|
3632
|
+
key: "visitCollectionOptions",
|
|
3633
|
+
value: function visitCollectionOptions(ctx) {
|
|
3634
|
+
return this.visitChildren(ctx);
|
|
3635
|
+
}
|
|
3636
|
+
|
|
3637
|
+
// Visit a parse tree produced by MySqlParser#convertedDataType.
|
|
3638
|
+
}, {
|
|
3639
|
+
key: "visitConvertedDataType",
|
|
3640
|
+
value: function visitConvertedDataType(ctx) {
|
|
3641
|
+
return this.visitChildren(ctx);
|
|
3642
|
+
}
|
|
3643
|
+
|
|
3644
|
+
// Visit a parse tree produced by MySqlParser#lengthOneDimension.
|
|
3645
|
+
}, {
|
|
3646
|
+
key: "visitLengthOneDimension",
|
|
3647
|
+
value: function visitLengthOneDimension(ctx) {
|
|
3648
|
+
return this.visitChildren(ctx);
|
|
3649
|
+
}
|
|
3650
|
+
|
|
3651
|
+
// Visit a parse tree produced by MySqlParser#lengthTwoDimension.
|
|
3652
|
+
}, {
|
|
3653
|
+
key: "visitLengthTwoDimension",
|
|
3654
|
+
value: function visitLengthTwoDimension(ctx) {
|
|
3655
|
+
return this.visitChildren(ctx);
|
|
3656
|
+
}
|
|
3657
|
+
|
|
3658
|
+
// Visit a parse tree produced by MySqlParser#lengthTwoOptionalDimension.
|
|
3659
|
+
}, {
|
|
3660
|
+
key: "visitLengthTwoOptionalDimension",
|
|
3661
|
+
value: function visitLengthTwoOptionalDimension(ctx) {
|
|
3662
|
+
return this.visitChildren(ctx);
|
|
3663
|
+
}
|
|
3664
|
+
|
|
3665
|
+
// Visit a parse tree produced by MySqlParser#uidList.
|
|
3666
|
+
}, {
|
|
3667
|
+
key: "visitUidList",
|
|
3668
|
+
value: function visitUidList(ctx) {
|
|
3669
|
+
return this.visitChildren(ctx);
|
|
3670
|
+
}
|
|
3671
|
+
|
|
3672
|
+
// Visit a parse tree produced by MySqlParser#fullColumnNameList.
|
|
3673
|
+
}, {
|
|
3674
|
+
key: "visitFullColumnNameList",
|
|
3675
|
+
value: function visitFullColumnNameList(ctx) {
|
|
3676
|
+
return this.visitChildren(ctx);
|
|
3677
|
+
}
|
|
3678
|
+
|
|
3679
|
+
// Visit a parse tree produced by MySqlParser#tables.
|
|
3680
|
+
}, {
|
|
3681
|
+
key: "visitTables",
|
|
3682
|
+
value: function visitTables(ctx) {
|
|
3683
|
+
return this.visitChildren(ctx);
|
|
3684
|
+
}
|
|
3685
|
+
|
|
3686
|
+
// Visit a parse tree produced by MySqlParser#indexColumnNames.
|
|
3687
|
+
}, {
|
|
3688
|
+
key: "visitIndexColumnNames",
|
|
3689
|
+
value: function visitIndexColumnNames(ctx) {
|
|
3690
|
+
return this.visitChildren(ctx);
|
|
3691
|
+
}
|
|
3692
|
+
|
|
3693
|
+
// Visit a parse tree produced by MySqlParser#expressions.
|
|
3694
|
+
}, {
|
|
3695
|
+
key: "visitExpressions",
|
|
3696
|
+
value: function visitExpressions(ctx) {
|
|
3697
|
+
return this.visitChildren(ctx);
|
|
3698
|
+
}
|
|
3699
|
+
|
|
3700
|
+
// Visit a parse tree produced by MySqlParser#expressionsWithDefaults.
|
|
3701
|
+
}, {
|
|
3702
|
+
key: "visitExpressionsWithDefaults",
|
|
3703
|
+
value: function visitExpressionsWithDefaults(ctx) {
|
|
3704
|
+
return this.visitChildren(ctx);
|
|
3705
|
+
}
|
|
3706
|
+
|
|
3707
|
+
// Visit a parse tree produced by MySqlParser#constants.
|
|
3708
|
+
}, {
|
|
3709
|
+
key: "visitConstants",
|
|
3710
|
+
value: function visitConstants(ctx) {
|
|
3711
|
+
return this.visitChildren(ctx);
|
|
3712
|
+
}
|
|
3713
|
+
|
|
3714
|
+
// Visit a parse tree produced by MySqlParser#simpleStrings.
|
|
3715
|
+
}, {
|
|
3716
|
+
key: "visitSimpleStrings",
|
|
3717
|
+
value: function visitSimpleStrings(ctx) {
|
|
3718
|
+
return this.visitChildren(ctx);
|
|
3719
|
+
}
|
|
3720
|
+
|
|
3721
|
+
// Visit a parse tree produced by MySqlParser#userVariables.
|
|
3722
|
+
}, {
|
|
3723
|
+
key: "visitUserVariables",
|
|
3724
|
+
value: function visitUserVariables(ctx) {
|
|
3725
|
+
return this.visitChildren(ctx);
|
|
3726
|
+
}
|
|
3727
|
+
|
|
3728
|
+
// Visit a parse tree produced by MySqlParser#defaultValue.
|
|
3729
|
+
}, {
|
|
3730
|
+
key: "visitDefaultValue",
|
|
3731
|
+
value: function visitDefaultValue(ctx) {
|
|
3732
|
+
return this.visitChildren(ctx);
|
|
3733
|
+
}
|
|
3734
|
+
|
|
3735
|
+
// Visit a parse tree produced by MySqlParser#currentTimestamp.
|
|
3736
|
+
}, {
|
|
3737
|
+
key: "visitCurrentTimestamp",
|
|
3738
|
+
value: function visitCurrentTimestamp(ctx) {
|
|
3739
|
+
return this.visitChildren(ctx);
|
|
3740
|
+
}
|
|
3741
|
+
|
|
3742
|
+
// Visit a parse tree produced by MySqlParser#expressionOrDefault.
|
|
3743
|
+
}, {
|
|
3744
|
+
key: "visitExpressionOrDefault",
|
|
3745
|
+
value: function visitExpressionOrDefault(ctx) {
|
|
3746
|
+
return this.visitChildren(ctx);
|
|
3747
|
+
}
|
|
3748
|
+
|
|
3749
|
+
// Visit a parse tree produced by MySqlParser#ifExists.
|
|
3750
|
+
}, {
|
|
3751
|
+
key: "visitIfExists",
|
|
3752
|
+
value: function visitIfExists(ctx) {
|
|
3753
|
+
return this.visitChildren(ctx);
|
|
3754
|
+
}
|
|
3755
|
+
|
|
3756
|
+
// Visit a parse tree produced by MySqlParser#ifNotExists.
|
|
3757
|
+
}, {
|
|
3758
|
+
key: "visitIfNotExists",
|
|
3759
|
+
value: function visitIfNotExists(ctx) {
|
|
3760
|
+
return this.visitChildren(ctx);
|
|
3761
|
+
}
|
|
3762
|
+
|
|
3763
|
+
// Visit a parse tree produced by MySqlParser#orReplace.
|
|
3764
|
+
}, {
|
|
3765
|
+
key: "visitOrReplace",
|
|
3766
|
+
value: function visitOrReplace(ctx) {
|
|
3767
|
+
return this.visitChildren(ctx);
|
|
3768
|
+
}
|
|
3769
|
+
|
|
3770
|
+
// Visit a parse tree produced by MySqlParser#waitNowaitClause.
|
|
3771
|
+
}, {
|
|
3772
|
+
key: "visitWaitNowaitClause",
|
|
3773
|
+
value: function visitWaitNowaitClause(ctx) {
|
|
3774
|
+
return this.visitChildren(ctx);
|
|
3775
|
+
}
|
|
3776
|
+
|
|
3777
|
+
// Visit a parse tree produced by MySqlParser#specificFunctionCall.
|
|
3778
|
+
}, {
|
|
3779
|
+
key: "visitSpecificFunctionCall",
|
|
3780
|
+
value: function visitSpecificFunctionCall(ctx) {
|
|
3781
|
+
return this.visitChildren(ctx);
|
|
3782
|
+
}
|
|
3783
|
+
|
|
3784
|
+
// Visit a parse tree produced by MySqlParser#aggregateFunctionCall.
|
|
3785
|
+
}, {
|
|
3786
|
+
key: "visitAggregateFunctionCall",
|
|
3787
|
+
value: function visitAggregateFunctionCall(ctx) {
|
|
3788
|
+
return this.visitChildren(ctx);
|
|
3789
|
+
}
|
|
3790
|
+
|
|
3791
|
+
// Visit a parse tree produced by MySqlParser#nonAggregateFunctionCall.
|
|
3792
|
+
}, {
|
|
3793
|
+
key: "visitNonAggregateFunctionCall",
|
|
3794
|
+
value: function visitNonAggregateFunctionCall(ctx) {
|
|
3795
|
+
return this.visitChildren(ctx);
|
|
3796
|
+
}
|
|
3797
|
+
|
|
3798
|
+
// Visit a parse tree produced by MySqlParser#scalarFunctionCall.
|
|
3799
|
+
}, {
|
|
3800
|
+
key: "visitScalarFunctionCall",
|
|
3801
|
+
value: function visitScalarFunctionCall(ctx) {
|
|
3802
|
+
return this.visitChildren(ctx);
|
|
3803
|
+
}
|
|
3804
|
+
|
|
3805
|
+
// Visit a parse tree produced by MySqlParser#udfFunctionCall.
|
|
3806
|
+
}, {
|
|
3807
|
+
key: "visitUdfFunctionCall",
|
|
3808
|
+
value: function visitUdfFunctionCall(ctx) {
|
|
3809
|
+
return this.visitChildren(ctx);
|
|
3810
|
+
}
|
|
3811
|
+
|
|
3812
|
+
// Visit a parse tree produced by MySqlParser#passwordFunctionCall.
|
|
3813
|
+
}, {
|
|
3814
|
+
key: "visitPasswordFunctionCall",
|
|
3815
|
+
value: function visitPasswordFunctionCall(ctx) {
|
|
3816
|
+
return this.visitChildren(ctx);
|
|
3817
|
+
}
|
|
3818
|
+
|
|
3819
|
+
// Visit a parse tree produced by MySqlParser#simpleFunctionCall.
|
|
3820
|
+
}, {
|
|
3821
|
+
key: "visitSimpleFunctionCall",
|
|
3822
|
+
value: function visitSimpleFunctionCall(ctx) {
|
|
3823
|
+
return this.visitChildren(ctx);
|
|
3824
|
+
}
|
|
3825
|
+
|
|
3826
|
+
// Visit a parse tree produced by MySqlParser#currentUser.
|
|
3827
|
+
}, {
|
|
3828
|
+
key: "visitCurrentUser",
|
|
3829
|
+
value: function visitCurrentUser(ctx) {
|
|
3830
|
+
return this.visitChildren(ctx);
|
|
3831
|
+
}
|
|
3832
|
+
|
|
3833
|
+
// Visit a parse tree produced by MySqlParser#dataTypeFunctionCall.
|
|
3834
|
+
}, {
|
|
3835
|
+
key: "visitDataTypeFunctionCall",
|
|
3836
|
+
value: function visitDataTypeFunctionCall(ctx) {
|
|
3837
|
+
return this.visitChildren(ctx);
|
|
3838
|
+
}
|
|
3839
|
+
|
|
3840
|
+
// Visit a parse tree produced by MySqlParser#valuesFunctionCall.
|
|
3841
|
+
}, {
|
|
3842
|
+
key: "visitValuesFunctionCall",
|
|
3843
|
+
value: function visitValuesFunctionCall(ctx) {
|
|
3844
|
+
return this.visitChildren(ctx);
|
|
3845
|
+
}
|
|
3846
|
+
|
|
3847
|
+
// Visit a parse tree produced by MySqlParser#caseExpressionFunctionCall.
|
|
3848
|
+
}, {
|
|
3849
|
+
key: "visitCaseExpressionFunctionCall",
|
|
3850
|
+
value: function visitCaseExpressionFunctionCall(ctx) {
|
|
3851
|
+
return this.visitChildren(ctx);
|
|
3852
|
+
}
|
|
3853
|
+
|
|
3854
|
+
// Visit a parse tree produced by MySqlParser#caseFunctionCall.
|
|
3855
|
+
}, {
|
|
3856
|
+
key: "visitCaseFunctionCall",
|
|
3857
|
+
value: function visitCaseFunctionCall(ctx) {
|
|
3858
|
+
return this.visitChildren(ctx);
|
|
3859
|
+
}
|
|
3860
|
+
|
|
3861
|
+
// Visit a parse tree produced by MySqlParser#charFunctionCall.
|
|
3862
|
+
}, {
|
|
3863
|
+
key: "visitCharFunctionCall",
|
|
3864
|
+
value: function visitCharFunctionCall(ctx) {
|
|
3865
|
+
return this.visitChildren(ctx);
|
|
3866
|
+
}
|
|
3867
|
+
|
|
3868
|
+
// Visit a parse tree produced by MySqlParser#positionFunctionCall.
|
|
3869
|
+
}, {
|
|
3870
|
+
key: "visitPositionFunctionCall",
|
|
3871
|
+
value: function visitPositionFunctionCall(ctx) {
|
|
3872
|
+
return this.visitChildren(ctx);
|
|
3873
|
+
}
|
|
3874
|
+
|
|
3875
|
+
// Visit a parse tree produced by MySqlParser#substrFunctionCall.
|
|
3876
|
+
}, {
|
|
3877
|
+
key: "visitSubstrFunctionCall",
|
|
3878
|
+
value: function visitSubstrFunctionCall(ctx) {
|
|
3879
|
+
return this.visitChildren(ctx);
|
|
3880
|
+
}
|
|
3881
|
+
|
|
3882
|
+
// Visit a parse tree produced by MySqlParser#trimFunctionCall.
|
|
3883
|
+
}, {
|
|
3884
|
+
key: "visitTrimFunctionCall",
|
|
3885
|
+
value: function visitTrimFunctionCall(ctx) {
|
|
3886
|
+
return this.visitChildren(ctx);
|
|
3887
|
+
}
|
|
3888
|
+
|
|
3889
|
+
// Visit a parse tree produced by MySqlParser#weightFunctionCall.
|
|
3890
|
+
}, {
|
|
3891
|
+
key: "visitWeightFunctionCall",
|
|
3892
|
+
value: function visitWeightFunctionCall(ctx) {
|
|
3893
|
+
return this.visitChildren(ctx);
|
|
3894
|
+
}
|
|
3895
|
+
|
|
3896
|
+
// Visit a parse tree produced by MySqlParser#extractFunctionCall.
|
|
3897
|
+
}, {
|
|
3898
|
+
key: "visitExtractFunctionCall",
|
|
3899
|
+
value: function visitExtractFunctionCall(ctx) {
|
|
3900
|
+
return this.visitChildren(ctx);
|
|
3901
|
+
}
|
|
3902
|
+
|
|
3903
|
+
// Visit a parse tree produced by MySqlParser#getFormatFunctionCall.
|
|
3904
|
+
}, {
|
|
3905
|
+
key: "visitGetFormatFunctionCall",
|
|
3906
|
+
value: function visitGetFormatFunctionCall(ctx) {
|
|
3907
|
+
return this.visitChildren(ctx);
|
|
3908
|
+
}
|
|
3909
|
+
|
|
3910
|
+
// Visit a parse tree produced by MySqlParser#jsonValueFunctionCall.
|
|
3911
|
+
}, {
|
|
3912
|
+
key: "visitJsonValueFunctionCall",
|
|
3913
|
+
value: function visitJsonValueFunctionCall(ctx) {
|
|
3914
|
+
return this.visitChildren(ctx);
|
|
3915
|
+
}
|
|
3916
|
+
|
|
3917
|
+
// Visit a parse tree produced by MySqlParser#caseFuncAlternative.
|
|
3918
|
+
}, {
|
|
3919
|
+
key: "visitCaseFuncAlternative",
|
|
3920
|
+
value: function visitCaseFuncAlternative(ctx) {
|
|
3921
|
+
return this.visitChildren(ctx);
|
|
3922
|
+
}
|
|
3923
|
+
|
|
3924
|
+
// Visit a parse tree produced by MySqlParser#levelWeightList.
|
|
3925
|
+
}, {
|
|
3926
|
+
key: "visitLevelWeightList",
|
|
3927
|
+
value: function visitLevelWeightList(ctx) {
|
|
3928
|
+
return this.visitChildren(ctx);
|
|
3929
|
+
}
|
|
3930
|
+
|
|
3931
|
+
// Visit a parse tree produced by MySqlParser#levelWeightRange.
|
|
3932
|
+
}, {
|
|
3933
|
+
key: "visitLevelWeightRange",
|
|
3934
|
+
value: function visitLevelWeightRange(ctx) {
|
|
3935
|
+
return this.visitChildren(ctx);
|
|
3936
|
+
}
|
|
3937
|
+
|
|
3938
|
+
// Visit a parse tree produced by MySqlParser#levelInWeightListElement.
|
|
3939
|
+
}, {
|
|
3940
|
+
key: "visitLevelInWeightListElement",
|
|
3941
|
+
value: function visitLevelInWeightListElement(ctx) {
|
|
3942
|
+
return this.visitChildren(ctx);
|
|
3943
|
+
}
|
|
3944
|
+
|
|
3945
|
+
// Visit a parse tree produced by MySqlParser#aggregateWindowedFunction.
|
|
3946
|
+
}, {
|
|
3947
|
+
key: "visitAggregateWindowedFunction",
|
|
3948
|
+
value: function visitAggregateWindowedFunction(ctx) {
|
|
3949
|
+
return this.visitChildren(ctx);
|
|
3950
|
+
}
|
|
3951
|
+
|
|
3952
|
+
// Visit a parse tree produced by MySqlParser#nonAggregateWindowedFunction.
|
|
3953
|
+
}, {
|
|
3954
|
+
key: "visitNonAggregateWindowedFunction",
|
|
3955
|
+
value: function visitNonAggregateWindowedFunction(ctx) {
|
|
3956
|
+
return this.visitChildren(ctx);
|
|
3957
|
+
}
|
|
3958
|
+
|
|
3959
|
+
// Visit a parse tree produced by MySqlParser#overClause.
|
|
3960
|
+
}, {
|
|
3961
|
+
key: "visitOverClause",
|
|
3962
|
+
value: function visitOverClause(ctx) {
|
|
3963
|
+
return this.visitChildren(ctx);
|
|
3964
|
+
}
|
|
3965
|
+
|
|
3966
|
+
// Visit a parse tree produced by MySqlParser#windowSpec.
|
|
3967
|
+
}, {
|
|
3968
|
+
key: "visitWindowSpec",
|
|
3969
|
+
value: function visitWindowSpec(ctx) {
|
|
3970
|
+
return this.visitChildren(ctx);
|
|
3971
|
+
}
|
|
3972
|
+
|
|
3973
|
+
// Visit a parse tree produced by MySqlParser#windowName.
|
|
3974
|
+
}, {
|
|
3975
|
+
key: "visitWindowName",
|
|
3976
|
+
value: function visitWindowName(ctx) {
|
|
3977
|
+
return this.visitChildren(ctx);
|
|
3978
|
+
}
|
|
3979
|
+
|
|
3980
|
+
// Visit a parse tree produced by MySqlParser#frameClause.
|
|
3981
|
+
}, {
|
|
3982
|
+
key: "visitFrameClause",
|
|
3983
|
+
value: function visitFrameClause(ctx) {
|
|
3984
|
+
return this.visitChildren(ctx);
|
|
3985
|
+
}
|
|
3986
|
+
|
|
3987
|
+
// Visit a parse tree produced by MySqlParser#frameUnits.
|
|
3988
|
+
}, {
|
|
3989
|
+
key: "visitFrameUnits",
|
|
3990
|
+
value: function visitFrameUnits(ctx) {
|
|
3991
|
+
return this.visitChildren(ctx);
|
|
3992
|
+
}
|
|
3993
|
+
|
|
3994
|
+
// Visit a parse tree produced by MySqlParser#frameExtent.
|
|
3995
|
+
}, {
|
|
3996
|
+
key: "visitFrameExtent",
|
|
3997
|
+
value: function visitFrameExtent(ctx) {
|
|
3998
|
+
return this.visitChildren(ctx);
|
|
3999
|
+
}
|
|
4000
|
+
|
|
4001
|
+
// Visit a parse tree produced by MySqlParser#frameBetween.
|
|
4002
|
+
}, {
|
|
4003
|
+
key: "visitFrameBetween",
|
|
4004
|
+
value: function visitFrameBetween(ctx) {
|
|
4005
|
+
return this.visitChildren(ctx);
|
|
4006
|
+
}
|
|
4007
|
+
|
|
4008
|
+
// Visit a parse tree produced by MySqlParser#frameRange.
|
|
4009
|
+
}, {
|
|
4010
|
+
key: "visitFrameRange",
|
|
4011
|
+
value: function visitFrameRange(ctx) {
|
|
4012
|
+
return this.visitChildren(ctx);
|
|
4013
|
+
}
|
|
4014
|
+
|
|
4015
|
+
// Visit a parse tree produced by MySqlParser#partitionClause.
|
|
4016
|
+
}, {
|
|
4017
|
+
key: "visitPartitionClause",
|
|
4018
|
+
value: function visitPartitionClause(ctx) {
|
|
4019
|
+
return this.visitChildren(ctx);
|
|
4020
|
+
}
|
|
4021
|
+
|
|
4022
|
+
// Visit a parse tree produced by MySqlParser#scalarFunctionName.
|
|
4023
|
+
}, {
|
|
4024
|
+
key: "visitScalarFunctionName",
|
|
4025
|
+
value: function visitScalarFunctionName(ctx) {
|
|
4026
|
+
return this.visitChildren(ctx);
|
|
4027
|
+
}
|
|
4028
|
+
|
|
4029
|
+
// Visit a parse tree produced by MySqlParser#passwordFunctionClause.
|
|
4030
|
+
}, {
|
|
4031
|
+
key: "visitPasswordFunctionClause",
|
|
4032
|
+
value: function visitPasswordFunctionClause(ctx) {
|
|
4033
|
+
return this.visitChildren(ctx);
|
|
4034
|
+
}
|
|
4035
|
+
|
|
4036
|
+
// Visit a parse tree produced by MySqlParser#functionArgs.
|
|
4037
|
+
}, {
|
|
4038
|
+
key: "visitFunctionArgs",
|
|
4039
|
+
value: function visitFunctionArgs(ctx) {
|
|
4040
|
+
return this.visitChildren(ctx);
|
|
4041
|
+
}
|
|
4042
|
+
|
|
4043
|
+
// Visit a parse tree produced by MySqlParser#functionArg.
|
|
4044
|
+
}, {
|
|
4045
|
+
key: "visitFunctionArg",
|
|
4046
|
+
value: function visitFunctionArg(ctx) {
|
|
4047
|
+
return this.visitChildren(ctx);
|
|
4048
|
+
}
|
|
4049
|
+
|
|
4050
|
+
// Visit a parse tree produced by MySqlParser#isExpression.
|
|
4051
|
+
}, {
|
|
4052
|
+
key: "visitIsExpression",
|
|
4053
|
+
value: function visitIsExpression(ctx) {
|
|
4054
|
+
return this.visitChildren(ctx);
|
|
4055
|
+
}
|
|
4056
|
+
|
|
4057
|
+
// Visit a parse tree produced by MySqlParser#notExpression.
|
|
4058
|
+
}, {
|
|
4059
|
+
key: "visitNotExpression",
|
|
4060
|
+
value: function visitNotExpression(ctx) {
|
|
4061
|
+
return this.visitChildren(ctx);
|
|
4062
|
+
}
|
|
4063
|
+
|
|
4064
|
+
// Visit a parse tree produced by MySqlParser#logicalExpression.
|
|
4065
|
+
}, {
|
|
4066
|
+
key: "visitLogicalExpression",
|
|
4067
|
+
value: function visitLogicalExpression(ctx) {
|
|
4068
|
+
return this.visitChildren(ctx);
|
|
4069
|
+
}
|
|
4070
|
+
|
|
4071
|
+
// Visit a parse tree produced by MySqlParser#predicateExpression.
|
|
4072
|
+
}, {
|
|
4073
|
+
key: "visitPredicateExpression",
|
|
4074
|
+
value: function visitPredicateExpression(ctx) {
|
|
4075
|
+
return this.visitChildren(ctx);
|
|
4076
|
+
}
|
|
4077
|
+
|
|
4078
|
+
// Visit a parse tree produced by MySqlParser#soundsLikePredicate.
|
|
4079
|
+
}, {
|
|
4080
|
+
key: "visitSoundsLikePredicate",
|
|
4081
|
+
value: function visitSoundsLikePredicate(ctx) {
|
|
4082
|
+
return this.visitChildren(ctx);
|
|
4083
|
+
}
|
|
4084
|
+
|
|
4085
|
+
// Visit a parse tree produced by MySqlParser#expressionAtomPredicate.
|
|
4086
|
+
}, {
|
|
4087
|
+
key: "visitExpressionAtomPredicate",
|
|
4088
|
+
value: function visitExpressionAtomPredicate(ctx) {
|
|
4089
|
+
return this.visitChildren(ctx);
|
|
4090
|
+
}
|
|
4091
|
+
|
|
4092
|
+
// Visit a parse tree produced by MySqlParser#subqueryComparisonPredicate.
|
|
4093
|
+
}, {
|
|
4094
|
+
key: "visitSubqueryComparisonPredicate",
|
|
4095
|
+
value: function visitSubqueryComparisonPredicate(ctx) {
|
|
4096
|
+
return this.visitChildren(ctx);
|
|
4097
|
+
}
|
|
4098
|
+
|
|
4099
|
+
// Visit a parse tree produced by MySqlParser#jsonMemberOfPredicate.
|
|
4100
|
+
}, {
|
|
4101
|
+
key: "visitJsonMemberOfPredicate",
|
|
4102
|
+
value: function visitJsonMemberOfPredicate(ctx) {
|
|
4103
|
+
return this.visitChildren(ctx);
|
|
4104
|
+
}
|
|
4105
|
+
|
|
4106
|
+
// Visit a parse tree produced by MySqlParser#binaryComparisonPredicate.
|
|
4107
|
+
}, {
|
|
4108
|
+
key: "visitBinaryComparisonPredicate",
|
|
4109
|
+
value: function visitBinaryComparisonPredicate(ctx) {
|
|
4110
|
+
return this.visitChildren(ctx);
|
|
4111
|
+
}
|
|
4112
|
+
|
|
4113
|
+
// Visit a parse tree produced by MySqlParser#inPredicate.
|
|
4114
|
+
}, {
|
|
4115
|
+
key: "visitInPredicate",
|
|
4116
|
+
value: function visitInPredicate(ctx) {
|
|
4117
|
+
return this.visitChildren(ctx);
|
|
4118
|
+
}
|
|
4119
|
+
|
|
4120
|
+
// Visit a parse tree produced by MySqlParser#betweenPredicate.
|
|
4121
|
+
}, {
|
|
4122
|
+
key: "visitBetweenPredicate",
|
|
4123
|
+
value: function visitBetweenPredicate(ctx) {
|
|
4124
|
+
return this.visitChildren(ctx);
|
|
4125
|
+
}
|
|
4126
|
+
|
|
4127
|
+
// Visit a parse tree produced by MySqlParser#isNullPredicate.
|
|
4128
|
+
}, {
|
|
4129
|
+
key: "visitIsNullPredicate",
|
|
4130
|
+
value: function visitIsNullPredicate(ctx) {
|
|
4131
|
+
return this.visitChildren(ctx);
|
|
4132
|
+
}
|
|
4133
|
+
|
|
4134
|
+
// Visit a parse tree produced by MySqlParser#likePredicate.
|
|
4135
|
+
}, {
|
|
4136
|
+
key: "visitLikePredicate",
|
|
4137
|
+
value: function visitLikePredicate(ctx) {
|
|
4138
|
+
return this.visitChildren(ctx);
|
|
4139
|
+
}
|
|
4140
|
+
|
|
4141
|
+
// Visit a parse tree produced by MySqlParser#regexpPredicate.
|
|
4142
|
+
}, {
|
|
4143
|
+
key: "visitRegexpPredicate",
|
|
4144
|
+
value: function visitRegexpPredicate(ctx) {
|
|
4145
|
+
return this.visitChildren(ctx);
|
|
4146
|
+
}
|
|
4147
|
+
|
|
4148
|
+
// Visit a parse tree produced by MySqlParser#unaryExpressionAtom.
|
|
4149
|
+
}, {
|
|
4150
|
+
key: "visitUnaryExpressionAtom",
|
|
4151
|
+
value: function visitUnaryExpressionAtom(ctx) {
|
|
4152
|
+
return this.visitChildren(ctx);
|
|
4153
|
+
}
|
|
4154
|
+
|
|
4155
|
+
// Visit a parse tree produced by MySqlParser#collateExpressionAtom.
|
|
4156
|
+
}, {
|
|
4157
|
+
key: "visitCollateExpressionAtom",
|
|
4158
|
+
value: function visitCollateExpressionAtom(ctx) {
|
|
4159
|
+
return this.visitChildren(ctx);
|
|
4160
|
+
}
|
|
4161
|
+
|
|
4162
|
+
// Visit a parse tree produced by MySqlParser#variableAssignExpressionAtom.
|
|
4163
|
+
}, {
|
|
4164
|
+
key: "visitVariableAssignExpressionAtom",
|
|
4165
|
+
value: function visitVariableAssignExpressionAtom(ctx) {
|
|
4166
|
+
return this.visitChildren(ctx);
|
|
4167
|
+
}
|
|
4168
|
+
|
|
4169
|
+
// Visit a parse tree produced by MySqlParser#mysqlVariableExpressionAtom.
|
|
4170
|
+
}, {
|
|
4171
|
+
key: "visitMysqlVariableExpressionAtom",
|
|
4172
|
+
value: function visitMysqlVariableExpressionAtom(ctx) {
|
|
4173
|
+
return this.visitChildren(ctx);
|
|
4174
|
+
}
|
|
4175
|
+
|
|
4176
|
+
// Visit a parse tree produced by MySqlParser#nestedExpressionAtom.
|
|
4177
|
+
}, {
|
|
4178
|
+
key: "visitNestedExpressionAtom",
|
|
4179
|
+
value: function visitNestedExpressionAtom(ctx) {
|
|
4180
|
+
return this.visitChildren(ctx);
|
|
4181
|
+
}
|
|
4182
|
+
|
|
4183
|
+
// Visit a parse tree produced by MySqlParser#nestedRowExpressionAtom.
|
|
4184
|
+
}, {
|
|
4185
|
+
key: "visitNestedRowExpressionAtom",
|
|
4186
|
+
value: function visitNestedRowExpressionAtom(ctx) {
|
|
4187
|
+
return this.visitChildren(ctx);
|
|
4188
|
+
}
|
|
4189
|
+
|
|
4190
|
+
// Visit a parse tree produced by MySqlParser#mathExpressionAtom.
|
|
4191
|
+
}, {
|
|
4192
|
+
key: "visitMathExpressionAtom",
|
|
4193
|
+
value: function visitMathExpressionAtom(ctx) {
|
|
4194
|
+
return this.visitChildren(ctx);
|
|
4195
|
+
}
|
|
4196
|
+
|
|
4197
|
+
// Visit a parse tree produced by MySqlParser#existsExpressionAtom.
|
|
4198
|
+
}, {
|
|
4199
|
+
key: "visitExistsExpressionAtom",
|
|
4200
|
+
value: function visitExistsExpressionAtom(ctx) {
|
|
4201
|
+
return this.visitChildren(ctx);
|
|
4202
|
+
}
|
|
4203
|
+
|
|
4204
|
+
// Visit a parse tree produced by MySqlParser#intervalExpressionAtom.
|
|
4205
|
+
}, {
|
|
4206
|
+
key: "visitIntervalExpressionAtom",
|
|
4207
|
+
value: function visitIntervalExpressionAtom(ctx) {
|
|
4208
|
+
return this.visitChildren(ctx);
|
|
4209
|
+
}
|
|
4210
|
+
|
|
4211
|
+
// Visit a parse tree produced by MySqlParser#jsonExpressionAtom.
|
|
4212
|
+
}, {
|
|
4213
|
+
key: "visitJsonExpressionAtom",
|
|
4214
|
+
value: function visitJsonExpressionAtom(ctx) {
|
|
4215
|
+
return this.visitChildren(ctx);
|
|
4216
|
+
}
|
|
4217
|
+
|
|
4218
|
+
// Visit a parse tree produced by MySqlParser#subqueryExpressionAtom.
|
|
4219
|
+
}, {
|
|
4220
|
+
key: "visitSubqueryExpressionAtom",
|
|
4221
|
+
value: function visitSubqueryExpressionAtom(ctx) {
|
|
4222
|
+
return this.visitChildren(ctx);
|
|
4223
|
+
}
|
|
4224
|
+
|
|
4225
|
+
// Visit a parse tree produced by MySqlParser#constantExpressionAtom.
|
|
4226
|
+
}, {
|
|
4227
|
+
key: "visitConstantExpressionAtom",
|
|
4228
|
+
value: function visitConstantExpressionAtom(ctx) {
|
|
4229
|
+
return this.visitChildren(ctx);
|
|
4230
|
+
}
|
|
4231
|
+
|
|
4232
|
+
// Visit a parse tree produced by MySqlParser#functionCallExpressionAtom.
|
|
4233
|
+
}, {
|
|
4234
|
+
key: "visitFunctionCallExpressionAtom",
|
|
4235
|
+
value: function visitFunctionCallExpressionAtom(ctx) {
|
|
4236
|
+
return this.visitChildren(ctx);
|
|
4237
|
+
}
|
|
4238
|
+
|
|
4239
|
+
// Visit a parse tree produced by MySqlParser#binaryExpressionAtom.
|
|
4240
|
+
}, {
|
|
4241
|
+
key: "visitBinaryExpressionAtom",
|
|
4242
|
+
value: function visitBinaryExpressionAtom(ctx) {
|
|
4243
|
+
return this.visitChildren(ctx);
|
|
4244
|
+
}
|
|
4245
|
+
|
|
4246
|
+
// Visit a parse tree produced by MySqlParser#fullColumnNameExpressionAtom.
|
|
4247
|
+
}, {
|
|
4248
|
+
key: "visitFullColumnNameExpressionAtom",
|
|
4249
|
+
value: function visitFullColumnNameExpressionAtom(ctx) {
|
|
4250
|
+
return this.visitChildren(ctx);
|
|
4251
|
+
}
|
|
4252
|
+
|
|
4253
|
+
// Visit a parse tree produced by MySqlParser#bitExpressionAtom.
|
|
4254
|
+
}, {
|
|
4255
|
+
key: "visitBitExpressionAtom",
|
|
4256
|
+
value: function visitBitExpressionAtom(ctx) {
|
|
4257
|
+
return this.visitChildren(ctx);
|
|
4258
|
+
}
|
|
4259
|
+
|
|
4260
|
+
// Visit a parse tree produced by MySqlParser#unaryOperator.
|
|
4261
|
+
}, {
|
|
4262
|
+
key: "visitUnaryOperator",
|
|
4263
|
+
value: function visitUnaryOperator(ctx) {
|
|
4264
|
+
return this.visitChildren(ctx);
|
|
4265
|
+
}
|
|
4266
|
+
|
|
4267
|
+
// Visit a parse tree produced by MySqlParser#comparisonOperator.
|
|
4268
|
+
}, {
|
|
4269
|
+
key: "visitComparisonOperator",
|
|
4270
|
+
value: function visitComparisonOperator(ctx) {
|
|
4271
|
+
return this.visitChildren(ctx);
|
|
4272
|
+
}
|
|
4273
|
+
|
|
4274
|
+
// Visit a parse tree produced by MySqlParser#logicalOperator.
|
|
4275
|
+
}, {
|
|
4276
|
+
key: "visitLogicalOperator",
|
|
4277
|
+
value: function visitLogicalOperator(ctx) {
|
|
4278
|
+
return this.visitChildren(ctx);
|
|
4279
|
+
}
|
|
4280
|
+
|
|
4281
|
+
// Visit a parse tree produced by MySqlParser#bitOperator.
|
|
4282
|
+
}, {
|
|
4283
|
+
key: "visitBitOperator",
|
|
4284
|
+
value: function visitBitOperator(ctx) {
|
|
4285
|
+
return this.visitChildren(ctx);
|
|
4286
|
+
}
|
|
4287
|
+
|
|
4288
|
+
// Visit a parse tree produced by MySqlParser#multOperator.
|
|
4289
|
+
}, {
|
|
4290
|
+
key: "visitMultOperator",
|
|
4291
|
+
value: function visitMultOperator(ctx) {
|
|
4292
|
+
return this.visitChildren(ctx);
|
|
4293
|
+
}
|
|
4294
|
+
|
|
4295
|
+
// Visit a parse tree produced by MySqlParser#addOperator.
|
|
4296
|
+
}, {
|
|
4297
|
+
key: "visitAddOperator",
|
|
4298
|
+
value: function visitAddOperator(ctx) {
|
|
4299
|
+
return this.visitChildren(ctx);
|
|
4300
|
+
}
|
|
4301
|
+
|
|
4302
|
+
// Visit a parse tree produced by MySqlParser#jsonOperator.
|
|
4303
|
+
}, {
|
|
4304
|
+
key: "visitJsonOperator",
|
|
4305
|
+
value: function visitJsonOperator(ctx) {
|
|
4306
|
+
return this.visitChildren(ctx);
|
|
4307
|
+
}
|
|
4308
|
+
|
|
4309
|
+
// Visit a parse tree produced by MySqlParser#charsetNameBase.
|
|
4310
|
+
}, {
|
|
4311
|
+
key: "visitCharsetNameBase",
|
|
4312
|
+
value: function visitCharsetNameBase(ctx) {
|
|
4313
|
+
return this.visitChildren(ctx);
|
|
4314
|
+
}
|
|
4315
|
+
|
|
4316
|
+
// Visit a parse tree produced by MySqlParser#transactionLevelBase.
|
|
4317
|
+
}, {
|
|
4318
|
+
key: "visitTransactionLevelBase",
|
|
4319
|
+
value: function visitTransactionLevelBase(ctx) {
|
|
4320
|
+
return this.visitChildren(ctx);
|
|
4321
|
+
}
|
|
4322
|
+
|
|
4323
|
+
// Visit a parse tree produced by MySqlParser#privilegesBase.
|
|
4324
|
+
}, {
|
|
4325
|
+
key: "visitPrivilegesBase",
|
|
4326
|
+
value: function visitPrivilegesBase(ctx) {
|
|
4327
|
+
return this.visitChildren(ctx);
|
|
4328
|
+
}
|
|
4329
|
+
|
|
4330
|
+
// Visit a parse tree produced by MySqlParser#intervalTypeBase.
|
|
4331
|
+
}, {
|
|
4332
|
+
key: "visitIntervalTypeBase",
|
|
4333
|
+
value: function visitIntervalTypeBase(ctx) {
|
|
4334
|
+
return this.visitChildren(ctx);
|
|
4335
|
+
}
|
|
4336
|
+
|
|
4337
|
+
// Visit a parse tree produced by MySqlParser#dataTypeBase.
|
|
4338
|
+
}, {
|
|
4339
|
+
key: "visitDataTypeBase",
|
|
4340
|
+
value: function visitDataTypeBase(ctx) {
|
|
4341
|
+
return this.visitChildren(ctx);
|
|
4342
|
+
}
|
|
4343
|
+
|
|
4344
|
+
// Visit a parse tree produced by MySqlParser#keywordsCanBeId.
|
|
4345
|
+
}, {
|
|
4346
|
+
key: "visitKeywordsCanBeId",
|
|
4347
|
+
value: function visitKeywordsCanBeId(ctx) {
|
|
4348
|
+
return this.visitChildren(ctx);
|
|
4349
|
+
}
|
|
4350
|
+
|
|
4351
|
+
// Visit a parse tree produced by MySqlParser#functionNameBase.
|
|
4352
|
+
}, {
|
|
4353
|
+
key: "visitFunctionNameBase",
|
|
4354
|
+
value: function visitFunctionNameBase(ctx) {
|
|
4355
|
+
return this.visitChildren(ctx);
|
|
4356
|
+
}
|
|
4357
|
+
}]);
|
|
4358
|
+
return MySqlParserVisitor;
|
|
4359
|
+
}(_antlr["default"].tree.ParseTreeVisitor);
|
|
4360
|
+
exports["default"] = MySqlParserVisitor;
|