Class MySqlParserBaseVisitor<T>
- java.lang.Object
-
- org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T>
-
- io.edurt.datacap.parser.mysql.MySqlParserBaseVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Implemented Interfaces:
MySqlParserVisitor<T>,org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
public class MySqlParserBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements MySqlParserVisitor<T>
This class provides an empty implementation ofMySqlParserVisitor, which can be extended to create a visitor which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description MySqlParserBaseVisitor()
-
Method Summary
-
Methods inherited from class org.antlr.v4.runtime.tree.AbstractParseTreeVisitor
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminal
-
-
-
-
Method Detail
-
visitRoot
public T visitRoot(MySqlParser.RootContext ctx)
Visit a parse tree produced byMySqlParser.root().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRootin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSqlStatements
public T visitSqlStatements(MySqlParser.SqlStatementsContext ctx)
Visit a parse tree produced byMySqlParser.sqlStatements().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSqlStatementsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSqlStatement
public T visitSqlStatement(MySqlParser.SqlStatementContext ctx)
Visit a parse tree produced byMySqlParser.sqlStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSqlStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyStatement_
public T visitEmptyStatement_(MySqlParser.EmptyStatement_Context ctx)
Visit a parse tree produced byMySqlParser.emptyStatement_().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEmptyStatement_in interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDdlStatement
public T visitDdlStatement(MySqlParser.DdlStatementContext ctx)
Visit a parse tree produced byMySqlParser.ddlStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDdlStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDmlStatement
public T visitDmlStatement(MySqlParser.DmlStatementContext ctx)
Visit a parse tree produced byMySqlParser.dmlStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDmlStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionStatement
public T visitTransactionStatement(MySqlParser.TransactionStatementContext ctx)
Visit a parse tree produced byMySqlParser.transactionStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransactionStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReplicationStatement
public T visitReplicationStatement(MySqlParser.ReplicationStatementContext ctx)
Visit a parse tree produced byMySqlParser.replicationStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReplicationStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreparedStatement
public T visitPreparedStatement(MySqlParser.PreparedStatementContext ctx)
Visit a parse tree produced byMySqlParser.preparedStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPreparedStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompoundStatement
public T visitCompoundStatement(MySqlParser.CompoundStatementContext ctx)
Visit a parse tree produced byMySqlParser.compoundStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCompoundStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAdministrationStatement
public T visitAdministrationStatement(MySqlParser.AdministrationStatementContext ctx)
Visit a parse tree produced byMySqlParser.administrationStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAdministrationStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUtilityStatement
public T visitUtilityStatement(MySqlParser.UtilityStatementContext ctx)
Visit a parse tree produced byMySqlParser.utilityStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUtilityStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabase
public T visitCreateDatabase(MySqlParser.CreateDatabaseContext ctx)
Visit a parse tree produced byMySqlParser.createDatabase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateDatabasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateEvent
public T visitCreateEvent(MySqlParser.CreateEventContext ctx)
Visit a parse tree produced byMySqlParser.createEvent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateEventin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndex
public T visitCreateIndex(MySqlParser.CreateIndexContext ctx)
Visit a parse tree produced byMySqlParser.createIndex().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateIndexin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLogfileGroup
public T visitCreateLogfileGroup(MySqlParser.CreateLogfileGroupContext ctx)
Visit a parse tree produced byMySqlParser.createLogfileGroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateLogfileGroupin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateProcedure
public T visitCreateProcedure(MySqlParser.CreateProcedureContext ctx)
Visit a parse tree produced byMySqlParser.createProcedure().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateProcedurein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateFunction
public T visitCreateFunction(MySqlParser.CreateFunctionContext ctx)
Visit a parse tree produced byMySqlParser.createFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateFunctionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateRole
public T visitCreateRole(MySqlParser.CreateRoleContext ctx)
Visit a parse tree produced byMySqlParser.createRole().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateRolein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateServer
public T visitCreateServer(MySqlParser.CreateServerContext ctx)
Visit a parse tree produced byMySqlParser.createServer().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateServerin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyCreateTable
public T visitCopyCreateTable(MySqlParser.CopyCreateTableContext ctx)
Visit a parse tree produced by thecopyCreateTablelabeled alternative inMySqlParser.createTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCopyCreateTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryCreateTable
public T visitQueryCreateTable(MySqlParser.QueryCreateTableContext ctx)
Visit a parse tree produced by thequeryCreateTablelabeled alternative inMySqlParser.createTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQueryCreateTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnCreateTable
public T visitColumnCreateTable(MySqlParser.ColumnCreateTableContext ctx)
Visit a parse tree produced by thecolumnCreateTablelabeled alternative inMySqlParser.createTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnCreateTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTablespaceInnodb
public T visitCreateTablespaceInnodb(MySqlParser.CreateTablespaceInnodbContext ctx)
Visit a parse tree produced byMySqlParser.createTablespaceInnodb().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTablespaceInnodbin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTablespaceNdb
public T visitCreateTablespaceNdb(MySqlParser.CreateTablespaceNdbContext ctx)
Visit a parse tree produced byMySqlParser.createTablespaceNdb().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTablespaceNdbin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTrigger
public T visitCreateTrigger(MySqlParser.CreateTriggerContext ctx)
Visit a parse tree produced byMySqlParser.createTrigger().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateTriggerin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithClause
public T visitWithClause(MySqlParser.WithClauseContext ctx)
Visit a parse tree produced byMySqlParser.withClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWithClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonTableExpressions
public T visitCommonTableExpressions(MySqlParser.CommonTableExpressionsContext ctx)
Visit a parse tree produced byMySqlParser.commonTableExpressions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommonTableExpressionsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCteName
public T visitCteName(MySqlParser.CteNameContext ctx)
Visit a parse tree produced byMySqlParser.cteName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCteNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCteColumnName
public T visitCteColumnName(MySqlParser.CteColumnNameContext ctx)
Visit a parse tree produced byMySqlParser.cteColumnName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCteColumnNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateView
public T visitCreateView(MySqlParser.CreateViewContext ctx)
Visit a parse tree produced byMySqlParser.createView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateViewin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabaseOption
public T visitCreateDatabaseOption(MySqlParser.CreateDatabaseOptionContext ctx)
Visit a parse tree produced byMySqlParser.createDatabaseOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateDatabaseOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharSet
public T visitCharSet(MySqlParser.CharSetContext ctx)
Visit a parse tree produced byMySqlParser.charSet().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharSetin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentUserExpression
public T visitCurrentUserExpression(MySqlParser.CurrentUserExpressionContext ctx)
Visit a parse tree produced byMySqlParser.currentUserExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCurrentUserExpressionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOwnerStatement
public T visitOwnerStatement(MySqlParser.OwnerStatementContext ctx)
Visit a parse tree produced byMySqlParser.ownerStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOwnerStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreciseSchedule
public T visitPreciseSchedule(MySqlParser.PreciseScheduleContext ctx)
Visit a parse tree produced by thepreciseSchedulelabeled alternative inMySqlParser.scheduleExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPreciseSchedulein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalSchedule
public T visitIntervalSchedule(MySqlParser.IntervalScheduleContext ctx)
Visit a parse tree produced by theintervalSchedulelabeled alternative inMySqlParser.scheduleExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIntervalSchedulein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimestampValue
public T visitTimestampValue(MySqlParser.TimestampValueContext ctx)
Visit a parse tree produced byMySqlParser.timestampValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTimestampValuein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalExpr
public T visitIntervalExpr(MySqlParser.IntervalExprContext ctx)
Visit a parse tree produced byMySqlParser.intervalExpr().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIntervalExprin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalType
public T visitIntervalType(MySqlParser.IntervalTypeContext ctx)
Visit a parse tree produced byMySqlParser.intervalType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIntervalTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnableType
public T visitEnableType(MySqlParser.EnableTypeContext ctx)
Visit a parse tree produced byMySqlParser.enableType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEnableTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexType
public T visitIndexType(MySqlParser.IndexTypeContext ctx)
Visit a parse tree produced byMySqlParser.indexType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexOption
public T visitIndexOption(MySqlParser.IndexOptionContext ctx)
Visit a parse tree produced byMySqlParser.indexOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureParameter
public T visitProcedureParameter(MySqlParser.ProcedureParameterContext ctx)
Visit a parse tree produced byMySqlParser.procedureParameter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitProcedureParameterin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionParameter
public T visitFunctionParameter(MySqlParser.FunctionParameterContext ctx)
Visit a parse tree produced byMySqlParser.functionParameter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionParameterin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineComment
public T visitRoutineComment(MySqlParser.RoutineCommentContext ctx)
Visit a parse tree produced by theroutineCommentlabeled alternative inMySqlParser.routineOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoutineCommentin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineLanguage
public T visitRoutineLanguage(MySqlParser.RoutineLanguageContext ctx)
Visit a parse tree produced by theroutineLanguagelabeled alternative inMySqlParser.routineOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoutineLanguagein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineBehavior
public T visitRoutineBehavior(MySqlParser.RoutineBehaviorContext ctx)
Visit a parse tree produced by theroutineBehaviorlabeled alternative inMySqlParser.routineOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoutineBehaviorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineData
public T visitRoutineData(MySqlParser.RoutineDataContext ctx)
Visit a parse tree produced by theroutineDatalabeled alternative inMySqlParser.routineOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoutineDatain interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineSecurity
public T visitRoutineSecurity(MySqlParser.RoutineSecurityContext ctx)
Visit a parse tree produced by theroutineSecuritylabeled alternative inMySqlParser.routineOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoutineSecurityin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServerOption
public T visitServerOption(MySqlParser.ServerOptionContext ctx)
Visit a parse tree produced byMySqlParser.serverOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitServerOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinitions
public T visitCreateDefinitions(MySqlParser.CreateDefinitionsContext ctx)
Visit a parse tree produced byMySqlParser.createDefinitions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateDefinitionsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDeclaration
public T visitColumnDeclaration(MySqlParser.ColumnDeclarationContext ctx)
Visit a parse tree produced by thecolumnDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnDeclarationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintDeclaration
public T visitConstraintDeclaration(MySqlParser.ConstraintDeclarationContext ctx)
Visit a parse tree produced by theconstraintDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstraintDeclarationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexDeclaration
public T visitIndexDeclaration(MySqlParser.IndexDeclarationContext ctx)
Visit a parse tree produced by theindexDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexDeclarationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefinition
public T visitColumnDefinition(MySqlParser.ColumnDefinitionContext ctx)
Visit a parse tree produced byMySqlParser.columnDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitColumnDefinitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullColumnConstraint
public T visitNullColumnConstraint(MySqlParser.NullColumnConstraintContext ctx)
Visit a parse tree produced by thenullColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNullColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultColumnConstraint
public T visitDefaultColumnConstraint(MySqlParser.DefaultColumnConstraintContext ctx)
Visit a parse tree produced by thedefaultColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefaultColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVisibilityColumnConstraint
public T visitVisibilityColumnConstraint(MySqlParser.VisibilityColumnConstraintContext ctx)
Visit a parse tree produced by thevisibilityColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVisibilityColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInvisibilityColumnConstraint
public T visitInvisibilityColumnConstraint(MySqlParser.InvisibilityColumnConstraintContext ctx)
Visit a parse tree produced by theinvisibilityColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInvisibilityColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAutoIncrementColumnConstraint
public T visitAutoIncrementColumnConstraint(MySqlParser.AutoIncrementColumnConstraintContext ctx)
Visit a parse tree produced by theautoIncrementColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAutoIncrementColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyColumnConstraint
public T visitPrimaryKeyColumnConstraint(MySqlParser.PrimaryKeyColumnConstraintContext ctx)
Visit a parse tree produced by theprimaryKeyColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrimaryKeyColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUniqueKeyColumnConstraint
public T visitUniqueKeyColumnConstraint(MySqlParser.UniqueKeyColumnConstraintContext ctx)
Visit a parse tree produced by theuniqueKeyColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUniqueKeyColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommentColumnConstraint
public T visitCommentColumnConstraint(MySqlParser.CommentColumnConstraintContext ctx)
Visit a parse tree produced by thecommentColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommentColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormatColumnConstraint
public T visitFormatColumnConstraint(MySqlParser.FormatColumnConstraintContext ctx)
Visit a parse tree produced by theformatColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFormatColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStorageColumnConstraint
public T visitStorageColumnConstraint(MySqlParser.StorageColumnConstraintContext ctx)
Visit a parse tree produced by thestorageColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStorageColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceColumnConstraint
public T visitReferenceColumnConstraint(MySqlParser.ReferenceColumnConstraintContext ctx)
Visit a parse tree produced by thereferenceColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReferenceColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollateColumnConstraint
public T visitCollateColumnConstraint(MySqlParser.CollateColumnConstraintContext ctx)
Visit a parse tree produced by thecollateColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCollateColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneratedColumnConstraint
public T visitGeneratedColumnConstraint(MySqlParser.GeneratedColumnConstraintContext ctx)
Visit a parse tree produced by thegeneratedColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGeneratedColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSerialDefaultColumnConstraint
public T visitSerialDefaultColumnConstraint(MySqlParser.SerialDefaultColumnConstraintContext ctx)
Visit a parse tree produced by theserialDefaultColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSerialDefaultColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckColumnConstraint
public T visitCheckColumnConstraint(MySqlParser.CheckColumnConstraintContext ctx)
Visit a parse tree produced by thecheckColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCheckColumnConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyTableConstraint
public T visitPrimaryKeyTableConstraint(MySqlParser.PrimaryKeyTableConstraintContext ctx)
Visit a parse tree produced by theprimaryKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrimaryKeyTableConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUniqueKeyTableConstraint
public T visitUniqueKeyTableConstraint(MySqlParser.UniqueKeyTableConstraintContext ctx)
Visit a parse tree produced by theuniqueKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUniqueKeyTableConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForeignKeyTableConstraint
public T visitForeignKeyTableConstraint(MySqlParser.ForeignKeyTableConstraintContext ctx)
Visit a parse tree produced by theforeignKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitForeignKeyTableConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckTableConstraint
public T visitCheckTableConstraint(MySqlParser.CheckTableConstraintContext ctx)
Visit a parse tree produced by thecheckTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCheckTableConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceDefinition
public T visitReferenceDefinition(MySqlParser.ReferenceDefinitionContext ctx)
Visit a parse tree produced byMySqlParser.referenceDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReferenceDefinitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceAction
public T visitReferenceAction(MySqlParser.ReferenceActionContext ctx)
Visit a parse tree produced byMySqlParser.referenceAction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReferenceActionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceControlType
public T visitReferenceControlType(MySqlParser.ReferenceControlTypeContext ctx)
Visit a parse tree produced byMySqlParser.referenceControlType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReferenceControlTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleIndexDeclaration
public T visitSimpleIndexDeclaration(MySqlParser.SimpleIndexDeclarationContext ctx)
Visit a parse tree produced by thesimpleIndexDeclarationlabeled alternative inMySqlParser.indexColumnDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleIndexDeclarationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSpecialIndexDeclaration
public T visitSpecialIndexDeclaration(MySqlParser.SpecialIndexDeclarationContext ctx)
Visit a parse tree produced by thespecialIndexDeclarationlabeled alternative inMySqlParser.indexColumnDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSpecialIndexDeclarationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionEngine
public T visitTableOptionEngine(MySqlParser.TableOptionEngineContext ctx)
Visit a parse tree produced by thetableOptionEnginelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionEnginein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionEngineAttribute
public T visitTableOptionEngineAttribute(MySqlParser.TableOptionEngineAttributeContext ctx)
Visit a parse tree produced by thetableOptionEngineAttributelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionEngineAttributein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionAutoextendSize
public T visitTableOptionAutoextendSize(MySqlParser.TableOptionAutoextendSizeContext ctx)
Visit a parse tree produced by thetableOptionAutoextendSizelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionAutoextendSizein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionAutoIncrement
public T visitTableOptionAutoIncrement(MySqlParser.TableOptionAutoIncrementContext ctx)
Visit a parse tree produced by thetableOptionAutoIncrementlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionAutoIncrementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionAverage
public T visitTableOptionAverage(MySqlParser.TableOptionAverageContext ctx)
Visit a parse tree produced by thetableOptionAveragelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionAveragein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionCharset
public T visitTableOptionCharset(MySqlParser.TableOptionCharsetContext ctx)
Visit a parse tree produced by thetableOptionCharsetlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionCharsetin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionChecksum
public T visitTableOptionChecksum(MySqlParser.TableOptionChecksumContext ctx)
Visit a parse tree produced by thetableOptionChecksumlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionChecksumin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionCollate
public T visitTableOptionCollate(MySqlParser.TableOptionCollateContext ctx)
Visit a parse tree produced by thetableOptionCollatelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionCollatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionComment
public T visitTableOptionComment(MySqlParser.TableOptionCommentContext ctx)
Visit a parse tree produced by thetableOptionCommentlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionCommentin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionCompression
public T visitTableOptionCompression(MySqlParser.TableOptionCompressionContext ctx)
Visit a parse tree produced by thetableOptionCompressionlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionCompressionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionConnection
public T visitTableOptionConnection(MySqlParser.TableOptionConnectionContext ctx)
Visit a parse tree produced by thetableOptionConnectionlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionConnectionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionDataDirectory
public T visitTableOptionDataDirectory(MySqlParser.TableOptionDataDirectoryContext ctx)
Visit a parse tree produced by thetableOptionDataDirectorylabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionDataDirectoryin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionDelay
public T visitTableOptionDelay(MySqlParser.TableOptionDelayContext ctx)
Visit a parse tree produced by thetableOptionDelaylabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionDelayin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionEncryption
public T visitTableOptionEncryption(MySqlParser.TableOptionEncryptionContext ctx)
Visit a parse tree produced by thetableOptionEncryptionlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionEncryptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPageCompressed
public T visitTableOptionPageCompressed(MySqlParser.TableOptionPageCompressedContext ctx)
Visit a parse tree produced by thetableOptionPageCompressedlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionPageCompressedin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPageCompressionLevel
public T visitTableOptionPageCompressionLevel(MySqlParser.TableOptionPageCompressionLevelContext ctx)
Visit a parse tree produced by thetableOptionPageCompressionLevellabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionPageCompressionLevelin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionEncryptionKeyId
public T visitTableOptionEncryptionKeyId(MySqlParser.TableOptionEncryptionKeyIdContext ctx)
Visit a parse tree produced by thetableOptionEncryptionKeyIdlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionEncryptionKeyIdin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionIndexDirectory
public T visitTableOptionIndexDirectory(MySqlParser.TableOptionIndexDirectoryContext ctx)
Visit a parse tree produced by thetableOptionIndexDirectorylabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionIndexDirectoryin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionInsertMethod
public T visitTableOptionInsertMethod(MySqlParser.TableOptionInsertMethodContext ctx)
Visit a parse tree produced by thetableOptionInsertMethodlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionInsertMethodin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionKeyBlockSize
public T visitTableOptionKeyBlockSize(MySqlParser.TableOptionKeyBlockSizeContext ctx)
Visit a parse tree produced by thetableOptionKeyBlockSizelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionKeyBlockSizein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionMaxRows
public T visitTableOptionMaxRows(MySqlParser.TableOptionMaxRowsContext ctx)
Visit a parse tree produced by thetableOptionMaxRowslabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionMaxRowsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionMinRows
public T visitTableOptionMinRows(MySqlParser.TableOptionMinRowsContext ctx)
Visit a parse tree produced by thetableOptionMinRowslabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionMinRowsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPackKeys
public T visitTableOptionPackKeys(MySqlParser.TableOptionPackKeysContext ctx)
Visit a parse tree produced by thetableOptionPackKeyslabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionPackKeysin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPassword
public T visitTableOptionPassword(MySqlParser.TableOptionPasswordContext ctx)
Visit a parse tree produced by thetableOptionPasswordlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionPasswordin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionRowFormat
public T visitTableOptionRowFormat(MySqlParser.TableOptionRowFormatContext ctx)
Visit a parse tree produced by thetableOptionRowFormatlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionRowFormatin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionStartTransaction
public T visitTableOptionStartTransaction(MySqlParser.TableOptionStartTransactionContext ctx)
Visit a parse tree produced by thetableOptionStartTransactionlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionStartTransactionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionSecondaryEngineAttribute
public T visitTableOptionSecondaryEngineAttribute(MySqlParser.TableOptionSecondaryEngineAttributeContext ctx)
Visit a parse tree produced by thetableOptionSecondaryEngineAttributelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionSecondaryEngineAttributein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionRecalculation
public T visitTableOptionRecalculation(MySqlParser.TableOptionRecalculationContext ctx)
Visit a parse tree produced by thetableOptionRecalculationlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionRecalculationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPersistent
public T visitTableOptionPersistent(MySqlParser.TableOptionPersistentContext ctx)
Visit a parse tree produced by thetableOptionPersistentlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionPersistentin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionSamplePage
public T visitTableOptionSamplePage(MySqlParser.TableOptionSamplePageContext ctx)
Visit a parse tree produced by thetableOptionSamplePagelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionSamplePagein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionTablespace
public T visitTableOptionTablespace(MySqlParser.TableOptionTablespaceContext ctx)
Visit a parse tree produced by thetableOptionTablespacelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionTablespacein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionTableType
public T visitTableOptionTableType(MySqlParser.TableOptionTableTypeContext ctx)
Visit a parse tree produced by thetableOptionTableTypelabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionTableTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionTransactional
public T visitTableOptionTransactional(MySqlParser.TableOptionTransactionalContext ctx)
Visit a parse tree produced by thetableOptionTransactionallabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionTransactionalin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionUnion
public T visitTableOptionUnion(MySqlParser.TableOptionUnionContext ctx)
Visit a parse tree produced by thetableOptionUnionlabeled alternative inMySqlParser.tableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableOptionUnionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableType
public T visitTableType(MySqlParser.TableTypeContext ctx)
Visit a parse tree produced byMySqlParser.tableType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTablespaceStorage
public T visitTablespaceStorage(MySqlParser.TablespaceStorageContext ctx)
Visit a parse tree produced byMySqlParser.tablespaceStorage().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTablespaceStoragein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionDefinitions
public T visitPartitionDefinitions(MySqlParser.PartitionDefinitionsContext ctx)
Visit a parse tree produced byMySqlParser.partitionDefinitions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionDefinitionsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionFunctionHash
public T visitPartitionFunctionHash(MySqlParser.PartitionFunctionHashContext ctx)
Visit a parse tree produced by thepartitionFunctionHashlabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionFunctionHashin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionFunctionKey
public T visitPartitionFunctionKey(MySqlParser.PartitionFunctionKeyContext ctx)
Visit a parse tree produced by thepartitionFunctionKeylabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionFunctionKeyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionFunctionRange
public T visitPartitionFunctionRange(MySqlParser.PartitionFunctionRangeContext ctx)
Visit a parse tree produced by thepartitionFunctionRangelabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionFunctionRangein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionFunctionList
public T visitPartitionFunctionList(MySqlParser.PartitionFunctionListContext ctx)
Visit a parse tree produced by thepartitionFunctionListlabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionFunctionListin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubPartitionFunctionHash
public T visitSubPartitionFunctionHash(MySqlParser.SubPartitionFunctionHashContext ctx)
Visit a parse tree produced by thesubPartitionFunctionHashlabeled alternative inMySqlParser.subpartitionFunctionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubPartitionFunctionHashin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubPartitionFunctionKey
public T visitSubPartitionFunctionKey(MySqlParser.SubPartitionFunctionKeyContext ctx)
Visit a parse tree produced by thesubPartitionFunctionKeylabeled alternative inMySqlParser.subpartitionFunctionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubPartitionFunctionKeyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionComparison
public T visitPartitionComparison(MySqlParser.PartitionComparisonContext ctx)
Visit a parse tree produced by thepartitionComparisonlabeled alternative inMySqlParser.partitionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionComparisonin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionListAtom
public T visitPartitionListAtom(MySqlParser.PartitionListAtomContext ctx)
Visit a parse tree produced by thepartitionListAtomlabeled alternative inMySqlParser.partitionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionListAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionListVector
public T visitPartitionListVector(MySqlParser.PartitionListVectorContext ctx)
Visit a parse tree produced by thepartitionListVectorlabeled alternative inMySqlParser.partitionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionListVectorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionSimple
public T visitPartitionSimple(MySqlParser.PartitionSimpleContext ctx)
Visit a parse tree produced by thepartitionSimplelabeled alternative inMySqlParser.partitionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionSimplein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionDefinerAtom
public T visitPartitionDefinerAtom(MySqlParser.PartitionDefinerAtomContext ctx)
Visit a parse tree produced byMySqlParser.partitionDefinerAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionDefinerAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionDefinerVector
public T visitPartitionDefinerVector(MySqlParser.PartitionDefinerVectorContext ctx)
Visit a parse tree produced byMySqlParser.partitionDefinerVector().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionDefinerVectorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubpartitionDefinition
public T visitSubpartitionDefinition(MySqlParser.SubpartitionDefinitionContext ctx)
Visit a parse tree produced byMySqlParser.subpartitionDefinition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubpartitionDefinitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionEngine
public T visitPartitionOptionEngine(MySqlParser.PartitionOptionEngineContext ctx)
Visit a parse tree produced by thepartitionOptionEnginelabeled alternative inMySqlParser.partitionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionOptionEnginein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionComment
public T visitPartitionOptionComment(MySqlParser.PartitionOptionCommentContext ctx)
Visit a parse tree produced by thepartitionOptionCommentlabeled alternative inMySqlParser.partitionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionOptionCommentin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionDataDirectory
public T visitPartitionOptionDataDirectory(MySqlParser.PartitionOptionDataDirectoryContext ctx)
Visit a parse tree produced by thepartitionOptionDataDirectorylabeled alternative inMySqlParser.partitionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionOptionDataDirectoryin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionIndexDirectory
public T visitPartitionOptionIndexDirectory(MySqlParser.PartitionOptionIndexDirectoryContext ctx)
Visit a parse tree produced by thepartitionOptionIndexDirectorylabeled alternative inMySqlParser.partitionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionOptionIndexDirectoryin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionMaxRows
public T visitPartitionOptionMaxRows(MySqlParser.PartitionOptionMaxRowsContext ctx)
Visit a parse tree produced by thepartitionOptionMaxRowslabeled alternative inMySqlParser.partitionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionOptionMaxRowsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionMinRows
public T visitPartitionOptionMinRows(MySqlParser.PartitionOptionMinRowsContext ctx)
Visit a parse tree produced by thepartitionOptionMinRowslabeled alternative inMySqlParser.partitionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionOptionMinRowsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionTablespace
public T visitPartitionOptionTablespace(MySqlParser.PartitionOptionTablespaceContext ctx)
Visit a parse tree produced by thepartitionOptionTablespacelabeled alternative inMySqlParser.partitionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionOptionTablespacein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionNodeGroup
public T visitPartitionOptionNodeGroup(MySqlParser.PartitionOptionNodeGroupContext ctx)
Visit a parse tree produced by thepartitionOptionNodeGrouplabeled alternative inMySqlParser.partitionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionOptionNodeGroupin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSimpleDatabase
public T visitAlterSimpleDatabase(MySqlParser.AlterSimpleDatabaseContext ctx)
Visit a parse tree produced by thealterSimpleDatabaselabeled alternative inMySqlParser.alterDatabase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterSimpleDatabasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUpgradeName
public T visitAlterUpgradeName(MySqlParser.AlterUpgradeNameContext ctx)
Visit a parse tree produced by thealterUpgradeNamelabeled alternative inMySqlParser.alterDatabase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterUpgradeNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterEvent
public T visitAlterEvent(MySqlParser.AlterEventContext ctx)
Visit a parse tree produced byMySqlParser.alterEvent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterEventin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterFunction
public T visitAlterFunction(MySqlParser.AlterFunctionContext ctx)
Visit a parse tree produced byMySqlParser.alterFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterFunctionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterInstance
public T visitAlterInstance(MySqlParser.AlterInstanceContext ctx)
Visit a parse tree produced byMySqlParser.alterInstance().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterInstancein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterLogfileGroup
public T visitAlterLogfileGroup(MySqlParser.AlterLogfileGroupContext ctx)
Visit a parse tree produced byMySqlParser.alterLogfileGroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterLogfileGroupin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterProcedure
public T visitAlterProcedure(MySqlParser.AlterProcedureContext ctx)
Visit a parse tree produced byMySqlParser.alterProcedure().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterProcedurein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterServer
public T visitAlterServer(MySqlParser.AlterServerContext ctx)
Visit a parse tree produced byMySqlParser.alterServer().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterServerin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTable
public T visitAlterTable(MySqlParser.AlterTableContext ctx)
Visit a parse tree produced byMySqlParser.alterTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTablespace
public T visitAlterTablespace(MySqlParser.AlterTablespaceContext ctx)
Visit a parse tree produced byMySqlParser.alterTablespace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterTablespacein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterView
public T visitAlterView(MySqlParser.AlterViewContext ctx)
Visit a parse tree produced byMySqlParser.alterView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterViewin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByTableOption
public T visitAlterByTableOption(MySqlParser.AlterByTableOptionContext ctx)
Visit a parse tree produced by thealterByTableOptionlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByTableOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddColumn
public T visitAlterByAddColumn(MySqlParser.AlterByAddColumnContext ctx)
Visit a parse tree produced by thealterByAddColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddColumnin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddColumns
public T visitAlterByAddColumns(MySqlParser.AlterByAddColumnsContext ctx)
Visit a parse tree produced by thealterByAddColumnslabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddColumnsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddIndex
public T visitAlterByAddIndex(MySqlParser.AlterByAddIndexContext ctx)
Visit a parse tree produced by thealterByAddIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddIndexin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddPrimaryKey
public T visitAlterByAddPrimaryKey(MySqlParser.AlterByAddPrimaryKeyContext ctx)
Visit a parse tree produced by thealterByAddPrimaryKeylabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddPrimaryKeyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddUniqueKey
public T visitAlterByAddUniqueKey(MySqlParser.AlterByAddUniqueKeyContext ctx)
Visit a parse tree produced by thealterByAddUniqueKeylabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddUniqueKeyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddSpecialIndex
public T visitAlterByAddSpecialIndex(MySqlParser.AlterByAddSpecialIndexContext ctx)
Visit a parse tree produced by thealterByAddSpecialIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddSpecialIndexin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddForeignKey
public T visitAlterByAddForeignKey(MySqlParser.AlterByAddForeignKeyContext ctx)
Visit a parse tree produced by thealterByAddForeignKeylabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddForeignKeyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddCheckTableConstraint
public T visitAlterByAddCheckTableConstraint(MySqlParser.AlterByAddCheckTableConstraintContext ctx)
Visit a parse tree produced by thealterByAddCheckTableConstraintlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddCheckTableConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAlterCheckTableConstraint
public T visitAlterByAlterCheckTableConstraint(MySqlParser.AlterByAlterCheckTableConstraintContext ctx)
Visit a parse tree produced by thealterByAlterCheckTableConstraintlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAlterCheckTableConstraintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterBySetAlgorithm
public T visitAlterBySetAlgorithm(MySqlParser.AlterBySetAlgorithmContext ctx)
Visit a parse tree produced by thealterBySetAlgorithmlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterBySetAlgorithmin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByChangeDefault
public T visitAlterByChangeDefault(MySqlParser.AlterByChangeDefaultContext ctx)
Visit a parse tree produced by thealterByChangeDefaultlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByChangeDefaultin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByChangeColumn
public T visitAlterByChangeColumn(MySqlParser.AlterByChangeColumnContext ctx)
Visit a parse tree produced by thealterByChangeColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByChangeColumnin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRenameColumn
public T visitAlterByRenameColumn(MySqlParser.AlterByRenameColumnContext ctx)
Visit a parse tree produced by thealterByRenameColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByRenameColumnin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByLock
public T visitAlterByLock(MySqlParser.AlterByLockContext ctx)
Visit a parse tree produced by thealterByLocklabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByLockin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByModifyColumn
public T visitAlterByModifyColumn(MySqlParser.AlterByModifyColumnContext ctx)
Visit a parse tree produced by thealterByModifyColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByModifyColumnin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropColumn
public T visitAlterByDropColumn(MySqlParser.AlterByDropColumnContext ctx)
Visit a parse tree produced by thealterByDropColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDropColumnin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropConstraintCheck
public T visitAlterByDropConstraintCheck(MySqlParser.AlterByDropConstraintCheckContext ctx)
Visit a parse tree produced by thealterByDropConstraintChecklabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDropConstraintCheckin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropPrimaryKey
public T visitAlterByDropPrimaryKey(MySqlParser.AlterByDropPrimaryKeyContext ctx)
Visit a parse tree produced by thealterByDropPrimaryKeylabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDropPrimaryKeyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropIndex
public T visitAlterByDropIndex(MySqlParser.AlterByDropIndexContext ctx)
Visit a parse tree produced by thealterByDropIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDropIndexin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRenameIndex
public T visitAlterByRenameIndex(MySqlParser.AlterByRenameIndexContext ctx)
Visit a parse tree produced by thealterByRenameIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByRenameIndexin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAlterColumnDefault
public T visitAlterByAlterColumnDefault(MySqlParser.AlterByAlterColumnDefaultContext ctx)
Visit a parse tree produced by thealterByAlterColumnDefaultlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAlterColumnDefaultin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAlterIndexVisibility
public T visitAlterByAlterIndexVisibility(MySqlParser.AlterByAlterIndexVisibilityContext ctx)
Visit a parse tree produced by thealterByAlterIndexVisibilitylabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAlterIndexVisibilityin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropForeignKey
public T visitAlterByDropForeignKey(MySqlParser.AlterByDropForeignKeyContext ctx)
Visit a parse tree produced by thealterByDropForeignKeylabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDropForeignKeyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDisableKeys
public T visitAlterByDisableKeys(MySqlParser.AlterByDisableKeysContext ctx)
Visit a parse tree produced by thealterByDisableKeyslabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDisableKeysin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByEnableKeys
public T visitAlterByEnableKeys(MySqlParser.AlterByEnableKeysContext ctx)
Visit a parse tree produced by thealterByEnableKeyslabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByEnableKeysin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRename
public T visitAlterByRename(MySqlParser.AlterByRenameContext ctx)
Visit a parse tree produced by thealterByRenamelabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByRenamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByOrder
public T visitAlterByOrder(MySqlParser.AlterByOrderContext ctx)
Visit a parse tree produced by thealterByOrderlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByOrderin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByConvertCharset
public T visitAlterByConvertCharset(MySqlParser.AlterByConvertCharsetContext ctx)
Visit a parse tree produced by thealterByConvertCharsetlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByConvertCharsetin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDefaultCharset
public T visitAlterByDefaultCharset(MySqlParser.AlterByDefaultCharsetContext ctx)
Visit a parse tree produced by thealterByDefaultCharsetlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDefaultCharsetin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDiscardTablespace
public T visitAlterByDiscardTablespace(MySqlParser.AlterByDiscardTablespaceContext ctx)
Visit a parse tree produced by thealterByDiscardTablespacelabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDiscardTablespacein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByImportTablespace
public T visitAlterByImportTablespace(MySqlParser.AlterByImportTablespaceContext ctx)
Visit a parse tree produced by thealterByImportTablespacelabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByImportTablespacein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByForce
public T visitAlterByForce(MySqlParser.AlterByForceContext ctx)
Visit a parse tree produced by thealterByForcelabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByForcein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByValidate
public T visitAlterByValidate(MySqlParser.AlterByValidateContext ctx)
Visit a parse tree produced by thealterByValidatelabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByValidatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddDefinitions
public T visitAlterByAddDefinitions(MySqlParser.AlterByAddDefinitionsContext ctx)
Visit a parse tree produced by thealterByAddDefinitionslabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddDefinitionsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterPartition
public T visitAlterPartition(MySqlParser.AlterPartitionContext ctx)
Visit a parse tree produced by thealterPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterPartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddPartition
public T visitAlterByAddPartition(MySqlParser.AlterByAddPartitionContext ctx)
Visit a parse tree produced by thealterByAddPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAddPartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropPartition
public T visitAlterByDropPartition(MySqlParser.AlterByDropPartitionContext ctx)
Visit a parse tree produced by thealterByDropPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDropPartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDiscardPartition
public T visitAlterByDiscardPartition(MySqlParser.AlterByDiscardPartitionContext ctx)
Visit a parse tree produced by thealterByDiscardPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByDiscardPartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByImportPartition
public T visitAlterByImportPartition(MySqlParser.AlterByImportPartitionContext ctx)
Visit a parse tree produced by thealterByImportPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByImportPartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByTruncatePartition
public T visitAlterByTruncatePartition(MySqlParser.AlterByTruncatePartitionContext ctx)
Visit a parse tree produced by thealterByTruncatePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByTruncatePartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByCoalescePartition
public T visitAlterByCoalescePartition(MySqlParser.AlterByCoalescePartitionContext ctx)
Visit a parse tree produced by thealterByCoalescePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByCoalescePartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByReorganizePartition
public T visitAlterByReorganizePartition(MySqlParser.AlterByReorganizePartitionContext ctx)
Visit a parse tree produced by thealterByReorganizePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByReorganizePartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByExchangePartition
public T visitAlterByExchangePartition(MySqlParser.AlterByExchangePartitionContext ctx)
Visit a parse tree produced by thealterByExchangePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByExchangePartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAnalyzePartition
public T visitAlterByAnalyzePartition(MySqlParser.AlterByAnalyzePartitionContext ctx)
Visit a parse tree produced by thealterByAnalyzePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByAnalyzePartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByCheckPartition
public T visitAlterByCheckPartition(MySqlParser.AlterByCheckPartitionContext ctx)
Visit a parse tree produced by thealterByCheckPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByCheckPartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByOptimizePartition
public T visitAlterByOptimizePartition(MySqlParser.AlterByOptimizePartitionContext ctx)
Visit a parse tree produced by thealterByOptimizePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByOptimizePartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRebuildPartition
public T visitAlterByRebuildPartition(MySqlParser.AlterByRebuildPartitionContext ctx)
Visit a parse tree produced by thealterByRebuildPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByRebuildPartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRepairPartition
public T visitAlterByRepairPartition(MySqlParser.AlterByRepairPartitionContext ctx)
Visit a parse tree produced by thealterByRepairPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByRepairPartitionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRemovePartitioning
public T visitAlterByRemovePartitioning(MySqlParser.AlterByRemovePartitioningContext ctx)
Visit a parse tree produced by thealterByRemovePartitioninglabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByRemovePartitioningin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByUpgradePartitioning
public T visitAlterByUpgradePartitioning(MySqlParser.AlterByUpgradePartitioningContext ctx)
Visit a parse tree produced by thealterByUpgradePartitioninglabeled alternative inMySqlParser.alterPartitionSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterByUpgradePartitioningin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDatabase
public T visitDropDatabase(MySqlParser.DropDatabaseContext ctx)
Visit a parse tree produced byMySqlParser.dropDatabase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropDatabasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropEvent
public T visitDropEvent(MySqlParser.DropEventContext ctx)
Visit a parse tree produced byMySqlParser.dropEvent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropEventin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropIndex
public T visitDropIndex(MySqlParser.DropIndexContext ctx)
Visit a parse tree produced byMySqlParser.dropIndex().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropIndexin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropLogfileGroup
public T visitDropLogfileGroup(MySqlParser.DropLogfileGroupContext ctx)
Visit a parse tree produced byMySqlParser.dropLogfileGroup().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropLogfileGroupin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropProcedure
public T visitDropProcedure(MySqlParser.DropProcedureContext ctx)
Visit a parse tree produced byMySqlParser.dropProcedure().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropProcedurein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropFunction
public T visitDropFunction(MySqlParser.DropFunctionContext ctx)
Visit a parse tree produced byMySqlParser.dropFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropFunctionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropServer
public T visitDropServer(MySqlParser.DropServerContext ctx)
Visit a parse tree produced byMySqlParser.dropServer().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropServerin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTable
public T visitDropTable(MySqlParser.DropTableContext ctx)
Visit a parse tree produced byMySqlParser.dropTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTablespace
public T visitDropTablespace(MySqlParser.DropTablespaceContext ctx)
Visit a parse tree produced byMySqlParser.dropTablespace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTablespacein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTrigger
public T visitDropTrigger(MySqlParser.DropTriggerContext ctx)
Visit a parse tree produced byMySqlParser.dropTrigger().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropTriggerin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropView
public T visitDropView(MySqlParser.DropViewContext ctx)
Visit a parse tree produced byMySqlParser.dropView().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropViewin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRole
public T visitDropRole(MySqlParser.DropRoleContext ctx)
Visit a parse tree produced byMySqlParser.dropRole().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropRolein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetRole
public T visitSetRole(MySqlParser.SetRoleContext ctx)
Visit a parse tree produced byMySqlParser.setRole().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetRolein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameTable
public T visitRenameTable(MySqlParser.RenameTableContext ctx)
Visit a parse tree produced byMySqlParser.renameTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRenameTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameTableClause
public T visitRenameTableClause(MySqlParser.RenameTableClauseContext ctx)
Visit a parse tree produced byMySqlParser.renameTableClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRenameTableClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTruncateTable
public T visitTruncateTable(MySqlParser.TruncateTableContext ctx)
Visit a parse tree produced byMySqlParser.truncateTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTruncateTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallStatement
public T visitCallStatement(MySqlParser.CallStatementContext ctx)
Visit a parse tree produced byMySqlParser.callStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCallStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeleteStatement
public T visitDeleteStatement(MySqlParser.DeleteStatementContext ctx)
Visit a parse tree produced byMySqlParser.deleteStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeleteStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoStatement
public T visitDoStatement(MySqlParser.DoStatementContext ctx)
Visit a parse tree produced byMySqlParser.doStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDoStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerStatement
public T visitHandlerStatement(MySqlParser.HandlerStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertStatement
public T visitInsertStatement(MySqlParser.InsertStatementContext ctx)
Visit a parse tree produced byMySqlParser.insertStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInsertStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoadDataStatement
public T visitLoadDataStatement(MySqlParser.LoadDataStatementContext ctx)
Visit a parse tree produced byMySqlParser.loadDataStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLoadDataStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoadXmlStatement
public T visitLoadXmlStatement(MySqlParser.LoadXmlStatementContext ctx)
Visit a parse tree produced byMySqlParser.loadXmlStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLoadXmlStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReplaceStatement
public T visitReplaceStatement(MySqlParser.ReplaceStatementContext ctx)
Visit a parse tree produced byMySqlParser.replaceStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReplaceStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleSelect
public T visitSimpleSelect(MySqlParser.SimpleSelectContext ctx)
Visit a parse tree produced by thesimpleSelectlabeled alternative inMySqlParser.selectStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleSelectin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesisSelect
public T visitParenthesisSelect(MySqlParser.ParenthesisSelectContext ctx)
Visit a parse tree produced by theparenthesisSelectlabeled alternative inMySqlParser.selectStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitParenthesisSelectin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnionSelect
public T visitUnionSelect(MySqlParser.UnionSelectContext ctx)
Visit a parse tree produced by theunionSelectlabeled alternative inMySqlParser.selectStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnionSelectin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnionParenthesisSelect
public T visitUnionParenthesisSelect(MySqlParser.UnionParenthesisSelectContext ctx)
Visit a parse tree produced by theunionParenthesisSelectlabeled alternative inMySqlParser.selectStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnionParenthesisSelectin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithLateralStatement
public T visitWithLateralStatement(MySqlParser.WithLateralStatementContext ctx)
Visit a parse tree produced by thewithLateralStatementlabeled alternative inMySqlParser.selectStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWithLateralStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpdateStatement
public T visitUpdateStatement(MySqlParser.UpdateStatementContext ctx)
Visit a parse tree produced byMySqlParser.updateStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUpdateStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValuesStatement
public T visitValuesStatement(MySqlParser.ValuesStatementContext ctx)
Visit a parse tree produced byMySqlParser.valuesStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValuesStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertStatementValue
public T visitInsertStatementValue(MySqlParser.InsertStatementValueContext ctx)
Visit a parse tree produced byMySqlParser.insertStatementValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInsertStatementValuein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpdatedElement
public T visitUpdatedElement(MySqlParser.UpdatedElementContext ctx)
Visit a parse tree produced byMySqlParser.updatedElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUpdatedElementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentField
public T visitAssignmentField(MySqlParser.AssignmentFieldContext ctx)
Visit a parse tree produced byMySqlParser.assignmentField().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAssignmentFieldin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockClause
public T visitLockClause(MySqlParser.LockClauseContext ctx)
Visit a parse tree produced byMySqlParser.lockClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLockClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleDeleteStatement
public T visitSingleDeleteStatement(MySqlParser.SingleDeleteStatementContext ctx)
Visit a parse tree produced byMySqlParser.singleDeleteStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSingleDeleteStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultipleDeleteStatement
public T visitMultipleDeleteStatement(MySqlParser.MultipleDeleteStatementContext ctx)
Visit a parse tree produced byMySqlParser.multipleDeleteStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMultipleDeleteStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerOpenStatement
public T visitHandlerOpenStatement(MySqlParser.HandlerOpenStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerOpenStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerOpenStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerReadIndexStatement
public T visitHandlerReadIndexStatement(MySqlParser.HandlerReadIndexStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerReadIndexStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerReadIndexStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerReadStatement
public T visitHandlerReadStatement(MySqlParser.HandlerReadStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerReadStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerReadStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerCloseStatement
public T visitHandlerCloseStatement(MySqlParser.HandlerCloseStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerCloseStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerCloseStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleUpdateStatement
public T visitSingleUpdateStatement(MySqlParser.SingleUpdateStatementContext ctx)
Visit a parse tree produced byMySqlParser.singleUpdateStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSingleUpdateStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultipleUpdateStatement
public T visitMultipleUpdateStatement(MySqlParser.MultipleUpdateStatementContext ctx)
Visit a parse tree produced byMySqlParser.multipleUpdateStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMultipleUpdateStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByClause
public T visitOrderByClause(MySqlParser.OrderByClauseContext ctx)
Visit a parse tree produced byMySqlParser.orderByClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrderByClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByExpression
public T visitOrderByExpression(MySqlParser.OrderByExpressionContext ctx)
Visit a parse tree produced byMySqlParser.orderByExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrderByExpressionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSources
public T visitTableSources(MySqlParser.TableSourcesContext ctx)
Visit a parse tree produced byMySqlParser.tableSources().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableSourcesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSourceBase
public T visitTableSourceBase(MySqlParser.TableSourceBaseContext ctx)
Visit a parse tree produced by thetableSourceBaselabeled alternative inMySqlParser.tableSource().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableSourceBasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSourceNested
public T visitTableSourceNested(MySqlParser.TableSourceNestedContext ctx)
Visit a parse tree produced by thetableSourceNestedlabeled alternative inMySqlParser.tableSource().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableSourceNestedin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableJson
public T visitTableJson(MySqlParser.TableJsonContext ctx)
Visit a parse tree produced by thetableJsonlabeled alternative inMySqlParser.tableSource().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableJsonin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtomTableItem
public T visitAtomTableItem(MySqlParser.AtomTableItemContext ctx)
Visit a parse tree produced by theatomTableItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAtomTableItemin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubqueryTableItem
public T visitSubqueryTableItem(MySqlParser.SubqueryTableItemContext ctx)
Visit a parse tree produced by thesubqueryTableItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubqueryTableItemin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSourcesItem
public T visitTableSourcesItem(MySqlParser.TableSourcesItemContext ctx)
Visit a parse tree produced by thetableSourcesItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableSourcesItemin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexHint
public T visitIndexHint(MySqlParser.IndexHintContext ctx)
Visit a parse tree produced byMySqlParser.indexHint().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexHintin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexHintType
public T visitIndexHintType(MySqlParser.IndexHintTypeContext ctx)
Visit a parse tree produced byMySqlParser.indexHintType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexHintTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInnerJoin
public T visitInnerJoin(MySqlParser.InnerJoinContext ctx)
Visit a parse tree produced by theinnerJoinlabeled alternative inMySqlParser.joinPart().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInnerJoinin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStraightJoin
public T visitStraightJoin(MySqlParser.StraightJoinContext ctx)
Visit a parse tree produced by thestraightJoinlabeled alternative inMySqlParser.joinPart().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStraightJoinin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOuterJoin
public T visitOuterJoin(MySqlParser.OuterJoinContext ctx)
Visit a parse tree produced by theouterJoinlabeled alternative inMySqlParser.joinPart().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOuterJoinin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNaturalJoin
public T visitNaturalJoin(MySqlParser.NaturalJoinContext ctx)
Visit a parse tree produced by thenaturalJoinlabeled alternative inMySqlParser.joinPart().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNaturalJoinin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinSpec
public T visitJoinSpec(MySqlParser.JoinSpecContext ctx)
Visit a parse tree produced byMySqlParser.joinSpec().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJoinSpecin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryExpression
public T visitQueryExpression(MySqlParser.QueryExpressionContext ctx)
Visit a parse tree produced byMySqlParser.queryExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQueryExpressionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryExpressionNointo
public T visitQueryExpressionNointo(MySqlParser.QueryExpressionNointoContext ctx)
Visit a parse tree produced byMySqlParser.queryExpressionNointo().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQueryExpressionNointoin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuerySpecification
public T visitQuerySpecification(MySqlParser.QuerySpecificationContext ctx)
Visit a parse tree produced byMySqlParser.querySpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQuerySpecificationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuerySpecificationNointo
public T visitQuerySpecificationNointo(MySqlParser.QuerySpecificationNointoContext ctx)
Visit a parse tree produced byMySqlParser.querySpecificationNointo().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitQuerySpecificationNointoin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnionParenthesis
public T visitUnionParenthesis(MySqlParser.UnionParenthesisContext ctx)
Visit a parse tree produced byMySqlParser.unionParenthesis().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnionParenthesisin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnionStatement
public T visitUnionStatement(MySqlParser.UnionStatementContext ctx)
Visit a parse tree produced byMySqlParser.unionStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnionStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLateralStatement
public T visitLateralStatement(MySqlParser.LateralStatementContext ctx)
Visit a parse tree produced byMySqlParser.lateralStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLateralStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonTable
public T visitJsonTable(MySqlParser.JsonTableContext ctx)
Visit a parse tree produced byMySqlParser.jsonTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonColumnList
public T visitJsonColumnList(MySqlParser.JsonColumnListContext ctx)
Visit a parse tree produced byMySqlParser.jsonColumnList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonColumnListin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonColumn
public T visitJsonColumn(MySqlParser.JsonColumnContext ctx)
Visit a parse tree produced byMySqlParser.jsonColumn().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonColumnin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonOnEmpty
public T visitJsonOnEmpty(MySqlParser.JsonOnEmptyContext ctx)
Visit a parse tree produced byMySqlParser.jsonOnEmpty().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonOnEmptyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonOnError
public T visitJsonOnError(MySqlParser.JsonOnErrorContext ctx)
Visit a parse tree produced byMySqlParser.jsonOnError().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonOnErrorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectSpec
public T visitSelectSpec(MySqlParser.SelectSpecContext ctx)
Visit a parse tree produced byMySqlParser.selectSpec().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectSpecin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectElements
public T visitSelectElements(MySqlParser.SelectElementsContext ctx)
Visit a parse tree produced byMySqlParser.selectElements().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectElementsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectStarElement
public T visitSelectStarElement(MySqlParser.SelectStarElementContext ctx)
Visit a parse tree produced by theselectStarElementlabeled alternative inMySqlParser.selectElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectStarElementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectColumnElement
public T visitSelectColumnElement(MySqlParser.SelectColumnElementContext ctx)
Visit a parse tree produced by theselectColumnElementlabeled alternative inMySqlParser.selectElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectColumnElementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectFunctionElement
public T visitSelectFunctionElement(MySqlParser.SelectFunctionElementContext ctx)
Visit a parse tree produced by theselectFunctionElementlabeled alternative inMySqlParser.selectElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectFunctionElementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectExpressionElement
public T visitSelectExpressionElement(MySqlParser.SelectExpressionElementContext ctx)
Visit a parse tree produced by theselectExpressionElementlabeled alternative inMySqlParser.selectElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectExpressionElementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectIntoVariables
public T visitSelectIntoVariables(MySqlParser.SelectIntoVariablesContext ctx)
Visit a parse tree produced by theselectIntoVariableslabeled alternative inMySqlParser.selectIntoExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectIntoVariablesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectIntoDumpFile
public T visitSelectIntoDumpFile(MySqlParser.SelectIntoDumpFileContext ctx)
Visit a parse tree produced by theselectIntoDumpFilelabeled alternative inMySqlParser.selectIntoExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectIntoDumpFilein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectIntoTextFile
public T visitSelectIntoTextFile(MySqlParser.SelectIntoTextFileContext ctx)
Visit a parse tree produced by theselectIntoTextFilelabeled alternative inMySqlParser.selectIntoExpression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectIntoTextFilein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectFieldsInto
public T visitSelectFieldsInto(MySqlParser.SelectFieldsIntoContext ctx)
Visit a parse tree produced byMySqlParser.selectFieldsInto().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectFieldsIntoin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectLinesInto
public T visitSelectLinesInto(MySqlParser.SelectLinesIntoContext ctx)
Visit a parse tree produced byMySqlParser.selectLinesInto().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSelectLinesIntoin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromClause
public T visitFromClause(MySqlParser.FromClauseContext ctx)
Visit a parse tree produced byMySqlParser.fromClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFromClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByClause
public T visitGroupByClause(MySqlParser.GroupByClauseContext ctx)
Visit a parse tree produced byMySqlParser.groupByClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGroupByClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHavingClause
public T visitHavingClause(MySqlParser.HavingClauseContext ctx)
Visit a parse tree produced byMySqlParser.havingClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHavingClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowClause
public T visitWindowClause(MySqlParser.WindowClauseContext ctx)
Visit a parse tree produced byMySqlParser.windowClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByItem
public T visitGroupByItem(MySqlParser.GroupByItemContext ctx)
Visit a parse tree produced byMySqlParser.groupByItem().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGroupByItemin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClause
public T visitLimitClause(MySqlParser.LimitClauseContext ctx)
Visit a parse tree produced byMySqlParser.limitClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLimitClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClauseAtom
public T visitLimitClauseAtom(MySqlParser.LimitClauseAtomContext ctx)
Visit a parse tree produced byMySqlParser.limitClauseAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLimitClauseAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartTransaction
public T visitStartTransaction(MySqlParser.StartTransactionContext ctx)
Visit a parse tree produced byMySqlParser.startTransaction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStartTransactionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBeginWork
public T visitBeginWork(MySqlParser.BeginWorkContext ctx)
Visit a parse tree produced byMySqlParser.beginWork().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBeginWorkin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommitWork
public T visitCommitWork(MySqlParser.CommitWorkContext ctx)
Visit a parse tree produced byMySqlParser.commitWork().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCommitWorkin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackWork
public T visitRollbackWork(MySqlParser.RollbackWorkContext ctx)
Visit a parse tree produced byMySqlParser.rollbackWork().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRollbackWorkin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSavepointStatement
public T visitSavepointStatement(MySqlParser.SavepointStatementContext ctx)
Visit a parse tree produced byMySqlParser.savepointStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSavepointStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackStatement
public T visitRollbackStatement(MySqlParser.RollbackStatementContext ctx)
Visit a parse tree produced byMySqlParser.rollbackStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRollbackStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReleaseStatement
public T visitReleaseStatement(MySqlParser.ReleaseStatementContext ctx)
Visit a parse tree produced byMySqlParser.releaseStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReleaseStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockTables
public T visitLockTables(MySqlParser.LockTablesContext ctx)
Visit a parse tree produced byMySqlParser.lockTables().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLockTablesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnlockTables
public T visitUnlockTables(MySqlParser.UnlockTablesContext ctx)
Visit a parse tree produced byMySqlParser.unlockTables().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnlockTablesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetAutocommitStatement
public T visitSetAutocommitStatement(MySqlParser.SetAutocommitStatementContext ctx)
Visit a parse tree produced byMySqlParser.setAutocommitStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetAutocommitStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTransactionStatement
public T visitSetTransactionStatement(MySqlParser.SetTransactionStatementContext ctx)
Visit a parse tree produced byMySqlParser.setTransactionStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetTransactionStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionMode
public T visitTransactionMode(MySqlParser.TransactionModeContext ctx)
Visit a parse tree produced byMySqlParser.transactionMode().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransactionModein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockTableElement
public T visitLockTableElement(MySqlParser.LockTableElementContext ctx)
Visit a parse tree produced byMySqlParser.lockTableElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLockTableElementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockAction
public T visitLockAction(MySqlParser.LockActionContext ctx)
Visit a parse tree produced byMySqlParser.lockAction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLockActionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionOption
public T visitTransactionOption(MySqlParser.TransactionOptionContext ctx)
Visit a parse tree produced byMySqlParser.transactionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransactionOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionLevel
public T visitTransactionLevel(MySqlParser.TransactionLevelContext ctx)
Visit a parse tree produced byMySqlParser.transactionLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransactionLevelin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChangeMaster
public T visitChangeMaster(MySqlParser.ChangeMasterContext ctx)
Visit a parse tree produced byMySqlParser.changeMaster().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitChangeMasterin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChangeReplicationFilter
public T visitChangeReplicationFilter(MySqlParser.ChangeReplicationFilterContext ctx)
Visit a parse tree produced byMySqlParser.changeReplicationFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitChangeReplicationFilterin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPurgeBinaryLogs
public T visitPurgeBinaryLogs(MySqlParser.PurgeBinaryLogsContext ctx)
Visit a parse tree produced byMySqlParser.purgeBinaryLogs().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPurgeBinaryLogsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetMaster
public T visitResetMaster(MySqlParser.ResetMasterContext ctx)
Visit a parse tree produced byMySqlParser.resetMaster().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitResetMasterin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetSlave
public T visitResetSlave(MySqlParser.ResetSlaveContext ctx)
Visit a parse tree produced byMySqlParser.resetSlave().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitResetSlavein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartSlave
public T visitStartSlave(MySqlParser.StartSlaveContext ctx)
Visit a parse tree produced byMySqlParser.startSlave().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStartSlavein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStopSlave
public T visitStopSlave(MySqlParser.StopSlaveContext ctx)
Visit a parse tree produced byMySqlParser.stopSlave().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStopSlavein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartGroupReplication
public T visitStartGroupReplication(MySqlParser.StartGroupReplicationContext ctx)
Visit a parse tree produced byMySqlParser.startGroupReplication().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStartGroupReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStopGroupReplication
public T visitStopGroupReplication(MySqlParser.StopGroupReplicationContext ctx)
Visit a parse tree produced byMySqlParser.stopGroupReplication().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStopGroupReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterStringOption
public T visitMasterStringOption(MySqlParser.MasterStringOptionContext ctx)
Visit a parse tree produced by themasterStringOptionlabeled alternative inMySqlParser.masterOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMasterStringOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterDecimalOption
public T visitMasterDecimalOption(MySqlParser.MasterDecimalOptionContext ctx)
Visit a parse tree produced by themasterDecimalOptionlabeled alternative inMySqlParser.masterOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMasterDecimalOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterBoolOption
public T visitMasterBoolOption(MySqlParser.MasterBoolOptionContext ctx)
Visit a parse tree produced by themasterBoolOptionlabeled alternative inMySqlParser.masterOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMasterBoolOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterRealOption
public T visitMasterRealOption(MySqlParser.MasterRealOptionContext ctx)
Visit a parse tree produced by themasterRealOptionlabeled alternative inMySqlParser.masterOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMasterRealOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterUidListOption
public T visitMasterUidListOption(MySqlParser.MasterUidListOptionContext ctx)
Visit a parse tree produced by themasterUidListOptionlabeled alternative inMySqlParser.masterOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMasterUidListOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringMasterOption
public T visitStringMasterOption(MySqlParser.StringMasterOptionContext ctx)
Visit a parse tree produced byMySqlParser.stringMasterOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStringMasterOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecimalMasterOption
public T visitDecimalMasterOption(MySqlParser.DecimalMasterOptionContext ctx)
Visit a parse tree produced byMySqlParser.decimalMasterOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDecimalMasterOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBoolMasterOption
public T visitBoolMasterOption(MySqlParser.BoolMasterOptionContext ctx)
Visit a parse tree produced byMySqlParser.boolMasterOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBoolMasterOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChannelOption
public T visitChannelOption(MySqlParser.ChannelOptionContext ctx)
Visit a parse tree produced byMySqlParser.channelOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitChannelOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoDbReplication
public T visitDoDbReplication(MySqlParser.DoDbReplicationContext ctx)
Visit a parse tree produced by thedoDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDoDbReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoreDbReplication
public T visitIgnoreDbReplication(MySqlParser.IgnoreDbReplicationContext ctx)
Visit a parse tree produced by theignoreDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIgnoreDbReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoTableReplication
public T visitDoTableReplication(MySqlParser.DoTableReplicationContext ctx)
Visit a parse tree produced by thedoTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDoTableReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoreTableReplication
public T visitIgnoreTableReplication(MySqlParser.IgnoreTableReplicationContext ctx)
Visit a parse tree produced by theignoreTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIgnoreTableReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildDoTableReplication
public T visitWildDoTableReplication(MySqlParser.WildDoTableReplicationContext ctx)
Visit a parse tree produced by thewildDoTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWildDoTableReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildIgnoreTableReplication
public T visitWildIgnoreTableReplication(MySqlParser.WildIgnoreTableReplicationContext ctx)
Visit a parse tree produced by thewildIgnoreTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWildIgnoreTableReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRewriteDbReplication
public T visitRewriteDbReplication(MySqlParser.RewriteDbReplicationContext ctx)
Visit a parse tree produced by therewriteDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRewriteDbReplicationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTablePair
public T visitTablePair(MySqlParser.TablePairContext ctx)
Visit a parse tree produced byMySqlParser.tablePair().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTablePairin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThreadType
public T visitThreadType(MySqlParser.ThreadTypeContext ctx)
Visit a parse tree produced byMySqlParser.threadType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitThreadTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGtidsUntilOption
public T visitGtidsUntilOption(MySqlParser.GtidsUntilOptionContext ctx)
Visit a parse tree produced by thegtidsUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGtidsUntilOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterLogUntilOption
public T visitMasterLogUntilOption(MySqlParser.MasterLogUntilOptionContext ctx)
Visit a parse tree produced by themasterLogUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMasterLogUntilOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelayLogUntilOption
public T visitRelayLogUntilOption(MySqlParser.RelayLogUntilOptionContext ctx)
Visit a parse tree produced by therelayLogUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRelayLogUntilOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSqlGapsUntilOption
public T visitSqlGapsUntilOption(MySqlParser.SqlGapsUntilOptionContext ctx)
Visit a parse tree produced by thesqlGapsUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSqlGapsUntilOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserConnectionOption
public T visitUserConnectionOption(MySqlParser.UserConnectionOptionContext ctx)
Visit a parse tree produced by theuserConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUserConnectionOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordConnectionOption
public T visitPasswordConnectionOption(MySqlParser.PasswordConnectionOptionContext ctx)
Visit a parse tree produced by thepasswordConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPasswordConnectionOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultAuthConnectionOption
public T visitDefaultAuthConnectionOption(MySqlParser.DefaultAuthConnectionOptionContext ctx)
Visit a parse tree produced by thedefaultAuthConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefaultAuthConnectionOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPluginDirConnectionOption
public T visitPluginDirConnectionOption(MySqlParser.PluginDirConnectionOptionContext ctx)
Visit a parse tree produced by thepluginDirConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPluginDirConnectionOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGtuidSet
public T visitGtuidSet(MySqlParser.GtuidSetContext ctx)
Visit a parse tree produced byMySqlParser.gtuidSet().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGtuidSetin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaStartTransaction
public T visitXaStartTransaction(MySqlParser.XaStartTransactionContext ctx)
Visit a parse tree produced byMySqlParser.xaStartTransaction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXaStartTransactionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaEndTransaction
public T visitXaEndTransaction(MySqlParser.XaEndTransactionContext ctx)
Visit a parse tree produced byMySqlParser.xaEndTransaction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXaEndTransactionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaPrepareStatement
public T visitXaPrepareStatement(MySqlParser.XaPrepareStatementContext ctx)
Visit a parse tree produced byMySqlParser.xaPrepareStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXaPrepareStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaCommitWork
public T visitXaCommitWork(MySqlParser.XaCommitWorkContext ctx)
Visit a parse tree produced byMySqlParser.xaCommitWork().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXaCommitWorkin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaRollbackWork
public T visitXaRollbackWork(MySqlParser.XaRollbackWorkContext ctx)
Visit a parse tree produced byMySqlParser.xaRollbackWork().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXaRollbackWorkin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaRecoverWork
public T visitXaRecoverWork(MySqlParser.XaRecoverWorkContext ctx)
Visit a parse tree produced byMySqlParser.xaRecoverWork().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXaRecoverWorkin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrepareStatement
public T visitPrepareStatement(MySqlParser.PrepareStatementContext ctx)
Visit a parse tree produced byMySqlParser.prepareStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrepareStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExecuteStatement
public T visitExecuteStatement(MySqlParser.ExecuteStatementContext ctx)
Visit a parse tree produced byMySqlParser.executeStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExecuteStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeallocatePrepare
public T visitDeallocatePrepare(MySqlParser.DeallocatePrepareContext ctx)
Visit a parse tree produced byMySqlParser.deallocatePrepare().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeallocatePreparein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineBody
public T visitRoutineBody(MySqlParser.RoutineBodyContext ctx)
Visit a parse tree produced byMySqlParser.routineBody().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoutineBodyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlockStatement
public T visitBlockStatement(MySqlParser.BlockStatementContext ctx)
Visit a parse tree produced byMySqlParser.blockStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBlockStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseStatement
public T visitCaseStatement(MySqlParser.CaseStatementContext ctx)
Visit a parse tree produced byMySqlParser.caseStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCaseStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfStatement
public T visitIfStatement(MySqlParser.IfStatementContext ctx)
Visit a parse tree produced byMySqlParser.ifStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIfStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIterateStatement
public T visitIterateStatement(MySqlParser.IterateStatementContext ctx)
Visit a parse tree produced byMySqlParser.iterateStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIterateStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLeaveStatement
public T visitLeaveStatement(MySqlParser.LeaveStatementContext ctx)
Visit a parse tree produced byMySqlParser.leaveStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLeaveStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoopStatement
public T visitLoopStatement(MySqlParser.LoopStatementContext ctx)
Visit a parse tree produced byMySqlParser.loopStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLoopStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRepeatStatement
public T visitRepeatStatement(MySqlParser.RepeatStatementContext ctx)
Visit a parse tree produced byMySqlParser.repeatStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRepeatStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnStatement
public T visitReturnStatement(MySqlParser.ReturnStatementContext ctx)
Visit a parse tree produced byMySqlParser.returnStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitReturnStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhileStatement
public T visitWhileStatement(MySqlParser.WhileStatementContext ctx)
Visit a parse tree produced byMySqlParser.whileStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWhileStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCloseCursor
public T visitCloseCursor(MySqlParser.CloseCursorContext ctx)
Visit a parse tree produced by theCloseCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCloseCursorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFetchCursor
public T visitFetchCursor(MySqlParser.FetchCursorContext ctx)
Visit a parse tree produced by theFetchCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFetchCursorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpenCursor
public T visitOpenCursor(MySqlParser.OpenCursorContext ctx)
Visit a parse tree produced by theOpenCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOpenCursorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareVariable
public T visitDeclareVariable(MySqlParser.DeclareVariableContext ctx)
Visit a parse tree produced byMySqlParser.declareVariable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeclareVariablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareCondition
public T visitDeclareCondition(MySqlParser.DeclareConditionContext ctx)
Visit a parse tree produced byMySqlParser.declareCondition().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeclareConditionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareCursor
public T visitDeclareCursor(MySqlParser.DeclareCursorContext ctx)
Visit a parse tree produced byMySqlParser.declareCursor().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeclareCursorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareHandler
public T visitDeclareHandler(MySqlParser.DeclareHandlerContext ctx)
Visit a parse tree produced byMySqlParser.declareHandler().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDeclareHandlerin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionCode
public T visitHandlerConditionCode(MySqlParser.HandlerConditionCodeContext ctx)
Visit a parse tree produced by thehandlerConditionCodelabeled alternative inMySqlParser.handlerConditionValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerConditionCodein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionState
public T visitHandlerConditionState(MySqlParser.HandlerConditionStateContext ctx)
Visit a parse tree produced by thehandlerConditionStatelabeled alternative inMySqlParser.handlerConditionValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerConditionStatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionName
public T visitHandlerConditionName(MySqlParser.HandlerConditionNameContext ctx)
Visit a parse tree produced by thehandlerConditionNamelabeled alternative inMySqlParser.handlerConditionValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerConditionNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionWarning
public T visitHandlerConditionWarning(MySqlParser.HandlerConditionWarningContext ctx)
Visit a parse tree produced by thehandlerConditionWarninglabeled alternative inMySqlParser.handlerConditionValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerConditionWarningin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionNotfound
public T visitHandlerConditionNotfound(MySqlParser.HandlerConditionNotfoundContext ctx)
Visit a parse tree produced by thehandlerConditionNotfoundlabeled alternative inMySqlParser.handlerConditionValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerConditionNotfoundin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionException
public T visitHandlerConditionException(MySqlParser.HandlerConditionExceptionContext ctx)
Visit a parse tree produced by thehandlerConditionExceptionlabeled alternative inMySqlParser.handlerConditionValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHandlerConditionExceptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureSqlStatement
public T visitProcedureSqlStatement(MySqlParser.ProcedureSqlStatementContext ctx)
Visit a parse tree produced byMySqlParser.procedureSqlStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitProcedureSqlStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseAlternative
public T visitCaseAlternative(MySqlParser.CaseAlternativeContext ctx)
Visit a parse tree produced byMySqlParser.caseAlternative().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCaseAlternativein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElifAlternative
public T visitElifAlternative(MySqlParser.ElifAlternativeContext ctx)
Visit a parse tree produced byMySqlParser.elifAlternative().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitElifAlternativein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUserMysqlV56
public T visitAlterUserMysqlV56(MySqlParser.AlterUserMysqlV56Context ctx)
Visit a parse tree produced by thealterUserMysqlV56labeled alternative inMySqlParser.alterUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterUserMysqlV56in interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUserMysqlV80
public T visitAlterUserMysqlV80(MySqlParser.AlterUserMysqlV80Context ctx)
Visit a parse tree produced by thealterUserMysqlV80labeled alternative inMySqlParser.alterUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAlterUserMysqlV80in interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserMysqlV56
public T visitCreateUserMysqlV56(MySqlParser.CreateUserMysqlV56Context ctx)
Visit a parse tree produced by thecreateUserMysqlV56labeled alternative inMySqlParser.createUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateUserMysqlV56in interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserMysqlV80
public T visitCreateUserMysqlV80(MySqlParser.CreateUserMysqlV80Context ctx)
Visit a parse tree produced by thecreateUserMysqlV80labeled alternative inMySqlParser.createUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateUserMysqlV80in interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropUser
public T visitDropUser(MySqlParser.DropUserContext ctx)
Visit a parse tree produced byMySqlParser.dropUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDropUserin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantStatement
public T visitGrantStatement(MySqlParser.GrantStatementContext ctx)
Visit a parse tree produced byMySqlParser.grantStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGrantStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleOption
public T visitRoleOption(MySqlParser.RoleOptionContext ctx)
Visit a parse tree produced byMySqlParser.roleOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoleOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantProxy
public T visitGrantProxy(MySqlParser.GrantProxyContext ctx)
Visit a parse tree produced byMySqlParser.grantProxy().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGrantProxyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameUser
public T visitRenameUser(MySqlParser.RenameUserContext ctx)
Visit a parse tree produced byMySqlParser.renameUser().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRenameUserin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDetailRevoke
public T visitDetailRevoke(MySqlParser.DetailRevokeContext ctx)
Visit a parse tree produced by thedetailRevokelabeled alternative inMySqlParser.revokeStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDetailRevokein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShortRevoke
public T visitShortRevoke(MySqlParser.ShortRevokeContext ctx)
Visit a parse tree produced by theshortRevokelabeled alternative inMySqlParser.revokeStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShortRevokein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleRevoke
public T visitRoleRevoke(MySqlParser.RoleRevokeContext ctx)
Visit a parse tree produced by theroleRevokelabeled alternative inMySqlParser.revokeStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoleRevokein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevokeProxy
public T visitRevokeProxy(MySqlParser.RevokeProxyContext ctx)
Visit a parse tree produced byMySqlParser.revokeProxy().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRevokeProxyin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetPasswordStatement
public T visitSetPasswordStatement(MySqlParser.SetPasswordStatementContext ctx)
Visit a parse tree produced byMySqlParser.setPasswordStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetPasswordStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserSpecification
public T visitUserSpecification(MySqlParser.UserSpecificationContext ctx)
Visit a parse tree produced byMySqlParser.userSpecification().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUserSpecificationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHashAuthOption
public T visitHashAuthOption(MySqlParser.HashAuthOptionContext ctx)
Visit a parse tree produced by thehashAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHashAuthOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRandomAuthOption
public T visitRandomAuthOption(MySqlParser.RandomAuthOptionContext ctx)
Visit a parse tree produced by therandomAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRandomAuthOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringAuthOption
public T visitStringAuthOption(MySqlParser.StringAuthOptionContext ctx)
Visit a parse tree produced by thestringAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStringAuthOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModuleAuthOption
public T visitModuleAuthOption(MySqlParser.ModuleAuthOptionContext ctx)
Visit a parse tree produced by themoduleAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitModuleAuthOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleAuthOption
public T visitSimpleAuthOption(MySqlParser.SimpleAuthOptionContext ctx)
Visit a parse tree produced by thesimpleAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleAuthOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAuthOptionClause
public T visitAuthOptionClause(MySqlParser.AuthOptionClauseContext ctx)
Visit a parse tree produced byMySqlParser.authOptionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAuthOptionClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModule
public T visitModule(MySqlParser.ModuleContext ctx)
Visit a parse tree produced by themodulelabeled alternative inMySqlParser.authenticationRule().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitModulein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordModuleOption
public T visitPasswordModuleOption(MySqlParser.PasswordModuleOptionContext ctx)
Visit a parse tree produced by thepasswordModuleOptionlabeled alternative inMySqlParser.authenticationRule().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPasswordModuleOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTlsOption
public T visitTlsOption(MySqlParser.TlsOptionContext ctx)
Visit a parse tree produced byMySqlParser.tlsOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTlsOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserResourceOption
public T visitUserResourceOption(MySqlParser.UserResourceOptionContext ctx)
Visit a parse tree produced byMySqlParser.userResourceOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUserResourceOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserPasswordOption
public T visitUserPasswordOption(MySqlParser.UserPasswordOptionContext ctx)
Visit a parse tree produced byMySqlParser.userPasswordOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUserPasswordOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserLockOption
public T visitUserLockOption(MySqlParser.UserLockOptionContext ctx)
Visit a parse tree produced byMySqlParser.userLockOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUserLockOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivelegeClause
public T visitPrivelegeClause(MySqlParser.PrivelegeClauseContext ctx)
Visit a parse tree produced byMySqlParser.privelegeClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivelegeClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilege
public T visitPrivilege(MySqlParser.PrivilegeContext ctx)
Visit a parse tree produced byMySqlParser.privilege().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentSchemaPriviLevel
public T visitCurrentSchemaPriviLevel(MySqlParser.CurrentSchemaPriviLevelContext ctx)
Visit a parse tree produced by thecurrentSchemaPriviLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCurrentSchemaPriviLevelin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGlobalPrivLevel
public T visitGlobalPrivLevel(MySqlParser.GlobalPrivLevelContext ctx)
Visit a parse tree produced by theglobalPrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGlobalPrivLevelin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefiniteSchemaPrivLevel
public T visitDefiniteSchemaPrivLevel(MySqlParser.DefiniteSchemaPrivLevelContext ctx)
Visit a parse tree produced by thedefiniteSchemaPrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefiniteSchemaPrivLevelin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefiniteFullTablePrivLevel
public T visitDefiniteFullTablePrivLevel(MySqlParser.DefiniteFullTablePrivLevelContext ctx)
Visit a parse tree produced by thedefiniteFullTablePrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefiniteFullTablePrivLevelin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefiniteFullTablePrivLevel2
public T visitDefiniteFullTablePrivLevel2(MySqlParser.DefiniteFullTablePrivLevel2Context ctx)
Visit a parse tree produced by thedefiniteFullTablePrivLevel2labeled alternative inMySqlParser.privilegeLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefiniteFullTablePrivLevel2in interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefiniteTablePrivLevel
public T visitDefiniteTablePrivLevel(MySqlParser.DefiniteTablePrivLevelContext ctx)
Visit a parse tree produced by thedefiniteTablePrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefiniteTablePrivLevelin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameUserClause
public T visitRenameUserClause(MySqlParser.RenameUserClauseContext ctx)
Visit a parse tree produced byMySqlParser.renameUserClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRenameUserClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnalyzeTable
public T visitAnalyzeTable(MySqlParser.AnalyzeTableContext ctx)
Visit a parse tree produced byMySqlParser.analyzeTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAnalyzeTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckTable
public T visitCheckTable(MySqlParser.CheckTableContext ctx)
Visit a parse tree produced byMySqlParser.checkTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCheckTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChecksumTable
public T visitChecksumTable(MySqlParser.ChecksumTableContext ctx)
Visit a parse tree produced byMySqlParser.checksumTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitChecksumTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptimizeTable
public T visitOptimizeTable(MySqlParser.OptimizeTableContext ctx)
Visit a parse tree produced byMySqlParser.optimizeTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOptimizeTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRepairTable
public T visitRepairTable(MySqlParser.RepairTableContext ctx)
Visit a parse tree produced byMySqlParser.repairTable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRepairTablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckTableOption
public T visitCheckTableOption(MySqlParser.CheckTableOptionContext ctx)
Visit a parse tree produced byMySqlParser.checkTableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCheckTableOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUdfunction
public T visitCreateUdfunction(MySqlParser.CreateUdfunctionContext ctx)
Visit a parse tree produced byMySqlParser.createUdfunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCreateUdfunctionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInstallPlugin
public T visitInstallPlugin(MySqlParser.InstallPluginContext ctx)
Visit a parse tree produced byMySqlParser.installPlugin().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInstallPluginin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUninstallPlugin
public T visitUninstallPlugin(MySqlParser.UninstallPluginContext ctx)
Visit a parse tree produced byMySqlParser.uninstallPlugin().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUninstallPluginin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetVariable
public T visitSetVariable(MySqlParser.SetVariableContext ctx)
Visit a parse tree produced by thesetVariablelabeled alternative inMySqlParser.setStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetVariablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetCharset
public T visitSetCharset(MySqlParser.SetCharsetContext ctx)
Visit a parse tree produced by thesetCharsetlabeled alternative inMySqlParser.setStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetCharsetin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetNames
public T visitSetNames(MySqlParser.SetNamesContext ctx)
Visit a parse tree produced by thesetNameslabeled alternative inMySqlParser.setStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetNamesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetPassword
public T visitSetPassword(MySqlParser.SetPasswordContext ctx)
Visit a parse tree produced by thesetPasswordlabeled alternative inMySqlParser.setStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetPasswordin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTransaction
public T visitSetTransaction(MySqlParser.SetTransactionContext ctx)
Visit a parse tree produced by thesetTransactionlabeled alternative inMySqlParser.setStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetTransactionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetAutocommit
public T visitSetAutocommit(MySqlParser.SetAutocommitContext ctx)
Visit a parse tree produced by thesetAutocommitlabeled alternative inMySqlParser.setStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetAutocommitin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetNewValueInsideTrigger
public T visitSetNewValueInsideTrigger(MySqlParser.SetNewValueInsideTriggerContext ctx)
Visit a parse tree produced by thesetNewValueInsideTriggerlabeled alternative inMySqlParser.setStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSetNewValueInsideTriggerin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowMasterLogs
public T visitShowMasterLogs(MySqlParser.ShowMasterLogsContext ctx)
Visit a parse tree produced by theshowMasterLogslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowMasterLogsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowLogEvents
public T visitShowLogEvents(MySqlParser.ShowLogEventsContext ctx)
Visit a parse tree produced by theshowLogEventslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowLogEventsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowObjectFilter
public T visitShowObjectFilter(MySqlParser.ShowObjectFilterContext ctx)
Visit a parse tree produced by theshowObjectFilterlabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowObjectFilterin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowColumns
public T visitShowColumns(MySqlParser.ShowColumnsContext ctx)
Visit a parse tree produced by theshowColumnslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowColumnsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCreateDb
public T visitShowCreateDb(MySqlParser.ShowCreateDbContext ctx)
Visit a parse tree produced by theshowCreateDblabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowCreateDbin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCreateFullIdObject
public T visitShowCreateFullIdObject(MySqlParser.ShowCreateFullIdObjectContext ctx)
Visit a parse tree produced by theshowCreateFullIdObjectlabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowCreateFullIdObjectin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCreateUser
public T visitShowCreateUser(MySqlParser.ShowCreateUserContext ctx)
Visit a parse tree produced by theshowCreateUserlabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowCreateUserin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowEngine
public T visitShowEngine(MySqlParser.ShowEngineContext ctx)
Visit a parse tree produced by theshowEnginelabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowEnginein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowGlobalInfo
public T visitShowGlobalInfo(MySqlParser.ShowGlobalInfoContext ctx)
Visit a parse tree produced by theshowGlobalInfolabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowGlobalInfoin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowErrors
public T visitShowErrors(MySqlParser.ShowErrorsContext ctx)
Visit a parse tree produced by theshowErrorslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowErrorsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCountErrors
public T visitShowCountErrors(MySqlParser.ShowCountErrorsContext ctx)
Visit a parse tree produced by theshowCountErrorslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowCountErrorsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowSchemaFilter
public T visitShowSchemaFilter(MySqlParser.ShowSchemaFilterContext ctx)
Visit a parse tree produced by theshowSchemaFilterlabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowSchemaFilterin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowRoutine
public T visitShowRoutine(MySqlParser.ShowRoutineContext ctx)
Visit a parse tree produced by theshowRoutinelabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowRoutinein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowGrants
public T visitShowGrants(MySqlParser.ShowGrantsContext ctx)
Visit a parse tree produced by theshowGrantslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowGrantsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowIndexes
public T visitShowIndexes(MySqlParser.ShowIndexesContext ctx)
Visit a parse tree produced by theshowIndexeslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowIndexesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowOpenTables
public T visitShowOpenTables(MySqlParser.ShowOpenTablesContext ctx)
Visit a parse tree produced by theshowOpenTableslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowOpenTablesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowProfile
public T visitShowProfile(MySqlParser.ShowProfileContext ctx)
Visit a parse tree produced by theshowProfilelabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowProfilein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowSlaveStatus
public T visitShowSlaveStatus(MySqlParser.ShowSlaveStatusContext ctx)
Visit a parse tree produced by theshowSlaveStatuslabeled alternative inMySqlParser.showStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowSlaveStatusin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableClause
public T visitVariableClause(MySqlParser.VariableClauseContext ctx)
Visit a parse tree produced byMySqlParser.variableClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVariableClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCommonEntity
public T visitShowCommonEntity(MySqlParser.ShowCommonEntityContext ctx)
Visit a parse tree produced byMySqlParser.showCommonEntity().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowCommonEntityin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowFilter
public T visitShowFilter(MySqlParser.ShowFilterContext ctx)
Visit a parse tree produced byMySqlParser.showFilter().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowFilterin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowGlobalInfoClause
public T visitShowGlobalInfoClause(MySqlParser.ShowGlobalInfoClauseContext ctx)
Visit a parse tree produced byMySqlParser.showGlobalInfoClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowGlobalInfoClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowSchemaEntity
public T visitShowSchemaEntity(MySqlParser.ShowSchemaEntityContext ctx)
Visit a parse tree produced byMySqlParser.showSchemaEntity().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowSchemaEntityin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowProfileType
public T visitShowProfileType(MySqlParser.ShowProfileTypeContext ctx)
Visit a parse tree produced byMySqlParser.showProfileType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShowProfileTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinlogStatement
public T visitBinlogStatement(MySqlParser.BinlogStatementContext ctx)
Visit a parse tree produced byMySqlParser.binlogStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBinlogStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCacheIndexStatement
public T visitCacheIndexStatement(MySqlParser.CacheIndexStatementContext ctx)
Visit a parse tree produced byMySqlParser.cacheIndexStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCacheIndexStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFlushStatement
public T visitFlushStatement(MySqlParser.FlushStatementContext ctx)
Visit a parse tree produced byMySqlParser.flushStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFlushStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKillStatement
public T visitKillStatement(MySqlParser.KillStatementContext ctx)
Visit a parse tree produced byMySqlParser.killStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKillStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoadIndexIntoCache
public T visitLoadIndexIntoCache(MySqlParser.LoadIndexIntoCacheContext ctx)
Visit a parse tree produced byMySqlParser.loadIndexIntoCache().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLoadIndexIntoCachein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetStatement
public T visitResetStatement(MySqlParser.ResetStatementContext ctx)
Visit a parse tree produced byMySqlParser.resetStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitResetStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShutdownStatement
public T visitShutdownStatement(MySqlParser.ShutdownStatementContext ctx)
Visit a parse tree produced byMySqlParser.shutdownStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitShutdownStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableIndexes
public T visitTableIndexes(MySqlParser.TableIndexesContext ctx)
Visit a parse tree produced byMySqlParser.tableIndexes().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableIndexesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleFlushOption
public T visitSimpleFlushOption(MySqlParser.SimpleFlushOptionContext ctx)
Visit a parse tree produced by thesimpleFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleFlushOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChannelFlushOption
public T visitChannelFlushOption(MySqlParser.ChannelFlushOptionContext ctx)
Visit a parse tree produced by thechannelFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitChannelFlushOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFlushOption
public T visitTableFlushOption(MySqlParser.TableFlushOptionContext ctx)
Visit a parse tree produced by thetableFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableFlushOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFlushTableOption
public T visitFlushTableOption(MySqlParser.FlushTableOptionContext ctx)
Visit a parse tree produced byMySqlParser.flushTableOption().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFlushTableOptionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoadedTableIndexes
public T visitLoadedTableIndexes(MySqlParser.LoadedTableIndexesContext ctx)
Visit a parse tree produced byMySqlParser.loadedTableIndexes().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLoadedTableIndexesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleDescribeStatement
public T visitSimpleDescribeStatement(MySqlParser.SimpleDescribeStatementContext ctx)
Visit a parse tree produced byMySqlParser.simpleDescribeStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleDescribeStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullDescribeStatement
public T visitFullDescribeStatement(MySqlParser.FullDescribeStatementContext ctx)
Visit a parse tree produced byMySqlParser.fullDescribeStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFullDescribeStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHelpStatement
public T visitHelpStatement(MySqlParser.HelpStatementContext ctx)
Visit a parse tree produced byMySqlParser.helpStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHelpStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUseStatement
public T visitUseStatement(MySqlParser.UseStatementContext ctx)
Visit a parse tree produced byMySqlParser.useStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUseStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSignalStatement
public T visitSignalStatement(MySqlParser.SignalStatementContext ctx)
Visit a parse tree produced byMySqlParser.signalStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSignalStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResignalStatement
public T visitResignalStatement(MySqlParser.ResignalStatementContext ctx)
Visit a parse tree produced byMySqlParser.resignalStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitResignalStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSignalConditionInformation
public T visitSignalConditionInformation(MySqlParser.SignalConditionInformationContext ctx)
Visit a parse tree produced byMySqlParser.signalConditionInformation().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSignalConditionInformationin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithStatement
public T visitWithStatement(MySqlParser.WithStatementContext ctx)
Visit a parse tree produced byMySqlParser.withStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWithStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableStatement
public T visitTableStatement(MySqlParser.TableStatementContext ctx)
Visit a parse tree produced byMySqlParser.tableStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDiagnosticsStatement
public T visitDiagnosticsStatement(MySqlParser.DiagnosticsStatementContext ctx)
Visit a parse tree produced byMySqlParser.diagnosticsStatement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDiagnosticsStatementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDiagnosticsConditionInformationName
public T visitDiagnosticsConditionInformationName(MySqlParser.DiagnosticsConditionInformationNameContext ctx)
Visit a parse tree produced byMySqlParser.diagnosticsConditionInformationName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDiagnosticsConditionInformationNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDescribeStatements
public T visitDescribeStatements(MySqlParser.DescribeStatementsContext ctx)
Visit a parse tree produced by thedescribeStatementslabeled alternative inMySqlParser.describeObjectClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDescribeStatementsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDescribeConnection
public T visitDescribeConnection(MySqlParser.DescribeConnectionContext ctx)
Visit a parse tree produced by thedescribeConnectionlabeled alternative inMySqlParser.describeObjectClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDescribeConnectionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullId
public T visitFullId(MySqlParser.FullIdContext ctx)
Visit a parse tree produced byMySqlParser.fullId().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFullIdin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableName
public T visitTableName(MySqlParser.TableNameContext ctx)
Visit a parse tree produced byMySqlParser.tableName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTableNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleName
public T visitRoleName(MySqlParser.RoleNameContext ctx)
Visit a parse tree produced byMySqlParser.roleName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRoleNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullColumnName
public T visitFullColumnName(MySqlParser.FullColumnNameContext ctx)
Visit a parse tree produced byMySqlParser.fullColumnName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFullColumnNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexColumnName
public T visitIndexColumnName(MySqlParser.IndexColumnNameContext ctx)
Visit a parse tree produced byMySqlParser.indexColumnName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexColumnNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleUserName
public T visitSimpleUserName(MySqlParser.SimpleUserNameContext ctx)
Visit a parse tree produced byMySqlParser.simpleUserName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleUserNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHostName
public T visitHostName(MySqlParser.HostNameContext ctx)
Visit a parse tree produced byMySqlParser.hostName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHostNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserName
public T visitUserName(MySqlParser.UserNameContext ctx)
Visit a parse tree produced byMySqlParser.userName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUserNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMysqlVariable
public T visitMysqlVariable(MySqlParser.MysqlVariableContext ctx)
Visit a parse tree produced byMySqlParser.mysqlVariable().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMysqlVariablein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharsetName
public T visitCharsetName(MySqlParser.CharsetNameContext ctx)
Visit a parse tree produced byMySqlParser.charsetName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharsetNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollationName
public T visitCollationName(MySqlParser.CollationNameContext ctx)
Visit a parse tree produced byMySqlParser.collationName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCollationNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEngineName
public T visitEngineName(MySqlParser.EngineNameContext ctx)
Visit a parse tree produced byMySqlParser.engineName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEngineNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEngineNameBase
public T visitEngineNameBase(MySqlParser.EngineNameBaseContext ctx)
Visit a parse tree produced byMySqlParser.engineNameBase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitEngineNameBasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUuidSet
public T visitUuidSet(MySqlParser.UuidSetContext ctx)
Visit a parse tree produced byMySqlParser.uuidSet().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUuidSetin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXid
public T visitXid(MySqlParser.XidContext ctx)
Visit a parse tree produced byMySqlParser.xid().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXidin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXuidStringId
public T visitXuidStringId(MySqlParser.XuidStringIdContext ctx)
Visit a parse tree produced byMySqlParser.xuidStringId().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitXuidStringIdin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAuthPlugin
public T visitAuthPlugin(MySqlParser.AuthPluginContext ctx)
Visit a parse tree produced byMySqlParser.authPlugin().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAuthPluginin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUid
public T visitUid(MySqlParser.UidContext ctx)
Visit a parse tree produced byMySqlParser.uid().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUidin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleId
public T visitSimpleId(MySqlParser.SimpleIdContext ctx)
Visit a parse tree produced byMySqlParser.simpleId().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleIdin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDottedId
public T visitDottedId(MySqlParser.DottedIdContext ctx)
Visit a parse tree produced byMySqlParser.dottedId().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDottedIdin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecimalLiteral
public T visitDecimalLiteral(MySqlParser.DecimalLiteralContext ctx)
Visit a parse tree produced byMySqlParser.decimalLiteral().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDecimalLiteralin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileSizeLiteral
public T visitFileSizeLiteral(MySqlParser.FileSizeLiteralContext ctx)
Visit a parse tree produced byMySqlParser.fileSizeLiteral().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFileSizeLiteralin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringLiteral
public T visitStringLiteral(MySqlParser.StringLiteralContext ctx)
Visit a parse tree produced byMySqlParser.stringLiteral().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStringLiteralin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanLiteral
public T visitBooleanLiteral(MySqlParser.BooleanLiteralContext ctx)
Visit a parse tree produced byMySqlParser.booleanLiteral().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBooleanLiteralin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHexadecimalLiteral
public T visitHexadecimalLiteral(MySqlParser.HexadecimalLiteralContext ctx)
Visit a parse tree produced byMySqlParser.hexadecimalLiteral().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitHexadecimalLiteralin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullNotnull
public T visitNullNotnull(MySqlParser.NullNotnullContext ctx)
Visit a parse tree produced byMySqlParser.nullNotnull().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNullNotnullin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstant
public T visitConstant(MySqlParser.ConstantContext ctx)
Visit a parse tree produced byMySqlParser.constant().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstantin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringDataType
public T visitStringDataType(MySqlParser.StringDataTypeContext ctx)
Visit a parse tree produced by thestringDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitStringDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNationalVaryingStringDataType
public T visitNationalVaryingStringDataType(MySqlParser.NationalVaryingStringDataTypeContext ctx)
Visit a parse tree produced by thenationalVaryingStringDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNationalVaryingStringDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNationalStringDataType
public T visitNationalStringDataType(MySqlParser.NationalStringDataTypeContext ctx)
Visit a parse tree produced by thenationalStringDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNationalStringDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDimensionDataType
public T visitDimensionDataType(MySqlParser.DimensionDataTypeContext ctx)
Visit a parse tree produced by thedimensionDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDimensionDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleDataType
public T visitSimpleDataType(MySqlParser.SimpleDataTypeContext ctx)
Visit a parse tree produced by thesimpleDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollectionDataType
public T visitCollectionDataType(MySqlParser.CollectionDataTypeContext ctx)
Visit a parse tree produced by thecollectionDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCollectionDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSpatialDataType
public T visitSpatialDataType(MySqlParser.SpatialDataTypeContext ctx)
Visit a parse tree produced by thespatialDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSpatialDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLongVarcharDataType
public T visitLongVarcharDataType(MySqlParser.LongVarcharDataTypeContext ctx)
Visit a parse tree produced by thelongVarcharDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLongVarcharDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLongVarbinaryDataType
public T visitLongVarbinaryDataType(MySqlParser.LongVarbinaryDataTypeContext ctx)
Visit a parse tree produced by thelongVarbinaryDataTypelabeled alternative inMySqlParser.dataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLongVarbinaryDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollectionOptions
public T visitCollectionOptions(MySqlParser.CollectionOptionsContext ctx)
Visit a parse tree produced byMySqlParser.collectionOptions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCollectionOptionsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConvertedDataType
public T visitConvertedDataType(MySqlParser.ConvertedDataTypeContext ctx)
Visit a parse tree produced byMySqlParser.convertedDataType().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConvertedDataTypein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLengthOneDimension
public T visitLengthOneDimension(MySqlParser.LengthOneDimensionContext ctx)
Visit a parse tree produced byMySqlParser.lengthOneDimension().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLengthOneDimensionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLengthTwoDimension
public T visitLengthTwoDimension(MySqlParser.LengthTwoDimensionContext ctx)
Visit a parse tree produced byMySqlParser.lengthTwoDimension().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLengthTwoDimensionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLengthTwoOptionalDimension
public T visitLengthTwoOptionalDimension(MySqlParser.LengthTwoOptionalDimensionContext ctx)
Visit a parse tree produced byMySqlParser.lengthTwoOptionalDimension().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLengthTwoOptionalDimensionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUidList
public T visitUidList(MySqlParser.UidListContext ctx)
Visit a parse tree produced byMySqlParser.uidList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUidListin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullColumnNameList
public T visitFullColumnNameList(MySqlParser.FullColumnNameListContext ctx)
Visit a parse tree produced byMySqlParser.fullColumnNameList().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFullColumnNameListin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTables
public T visitTables(MySqlParser.TablesContext ctx)
Visit a parse tree produced byMySqlParser.tables().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTablesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexColumnNames
public T visitIndexColumnNames(MySqlParser.IndexColumnNamesContext ctx)
Visit a parse tree produced byMySqlParser.indexColumnNames().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIndexColumnNamesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressions
public T visitExpressions(MySqlParser.ExpressionsContext ctx)
Visit a parse tree produced byMySqlParser.expressions().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExpressionsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionsWithDefaults
public T visitExpressionsWithDefaults(MySqlParser.ExpressionsWithDefaultsContext ctx)
Visit a parse tree produced byMySqlParser.expressionsWithDefaults().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExpressionsWithDefaultsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstants
public T visitConstants(MySqlParser.ConstantsContext ctx)
Visit a parse tree produced byMySqlParser.constants().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstantsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleStrings
public T visitSimpleStrings(MySqlParser.SimpleStringsContext ctx)
Visit a parse tree produced byMySqlParser.simpleStrings().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleStringsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserVariables
public T visitUserVariables(MySqlParser.UserVariablesContext ctx)
Visit a parse tree produced byMySqlParser.userVariables().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUserVariablesin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultValue
public T visitDefaultValue(MySqlParser.DefaultValueContext ctx)
Visit a parse tree produced byMySqlParser.defaultValue().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDefaultValuein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentTimestamp
public T visitCurrentTimestamp(MySqlParser.CurrentTimestampContext ctx)
Visit a parse tree produced byMySqlParser.currentTimestamp().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCurrentTimestampin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionOrDefault
public T visitExpressionOrDefault(MySqlParser.ExpressionOrDefaultContext ctx)
Visit a parse tree produced byMySqlParser.expressionOrDefault().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExpressionOrDefaultin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfExists
public T visitIfExists(MySqlParser.IfExistsContext ctx)
Visit a parse tree produced byMySqlParser.ifExists().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIfExistsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfNotExists
public T visitIfNotExists(MySqlParser.IfNotExistsContext ctx)
Visit a parse tree produced byMySqlParser.ifNotExists().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIfNotExistsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrReplace
public T visitOrReplace(MySqlParser.OrReplaceContext ctx)
Visit a parse tree produced byMySqlParser.orReplace().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOrReplacein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWaitNowaitClause
public T visitWaitNowaitClause(MySqlParser.WaitNowaitClauseContext ctx)
Visit a parse tree produced byMySqlParser.waitNowaitClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWaitNowaitClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSpecificFunctionCall
public T visitSpecificFunctionCall(MySqlParser.SpecificFunctionCallContext ctx)
Visit a parse tree produced by thespecificFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSpecificFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateFunctionCall
public T visitAggregateFunctionCall(MySqlParser.AggregateFunctionCallContext ctx)
Visit a parse tree produced by theaggregateFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggregateFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonAggregateFunctionCall
public T visitNonAggregateFunctionCall(MySqlParser.NonAggregateFunctionCallContext ctx)
Visit a parse tree produced by thenonAggregateFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNonAggregateFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitScalarFunctionCall
public T visitScalarFunctionCall(MySqlParser.ScalarFunctionCallContext ctx)
Visit a parse tree produced by thescalarFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitScalarFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUdfFunctionCall
public T visitUdfFunctionCall(MySqlParser.UdfFunctionCallContext ctx)
Visit a parse tree produced by theudfFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUdfFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordFunctionCall
public T visitPasswordFunctionCall(MySqlParser.PasswordFunctionCallContext ctx)
Visit a parse tree produced by thepasswordFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPasswordFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleFunctionCall
public T visitSimpleFunctionCall(MySqlParser.SimpleFunctionCallContext ctx)
Visit a parse tree produced by thesimpleFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSimpleFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentUser
public T visitCurrentUser(MySqlParser.CurrentUserContext ctx)
Visit a parse tree produced by thecurrentUserlabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCurrentUserin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeFunctionCall
public T visitDataTypeFunctionCall(MySqlParser.DataTypeFunctionCallContext ctx)
Visit a parse tree produced by thedataTypeFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDataTypeFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValuesFunctionCall
public T visitValuesFunctionCall(MySqlParser.ValuesFunctionCallContext ctx)
Visit a parse tree produced by thevaluesFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitValuesFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseExpressionFunctionCall
public T visitCaseExpressionFunctionCall(MySqlParser.CaseExpressionFunctionCallContext ctx)
Visit a parse tree produced by thecaseExpressionFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCaseExpressionFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseFunctionCall
public T visitCaseFunctionCall(MySqlParser.CaseFunctionCallContext ctx)
Visit a parse tree produced by thecaseFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCaseFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharFunctionCall
public T visitCharFunctionCall(MySqlParser.CharFunctionCallContext ctx)
Visit a parse tree produced by thecharFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPositionFunctionCall
public T visitPositionFunctionCall(MySqlParser.PositionFunctionCallContext ctx)
Visit a parse tree produced by thepositionFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPositionFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstrFunctionCall
public T visitSubstrFunctionCall(MySqlParser.SubstrFunctionCallContext ctx)
Visit a parse tree produced by thesubstrFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubstrFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimFunctionCall
public T visitTrimFunctionCall(MySqlParser.TrimFunctionCallContext ctx)
Visit a parse tree produced by thetrimFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTrimFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWeightFunctionCall
public T visitWeightFunctionCall(MySqlParser.WeightFunctionCallContext ctx)
Visit a parse tree produced by theweightFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWeightFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtractFunctionCall
public T visitExtractFunctionCall(MySqlParser.ExtractFunctionCallContext ctx)
Visit a parse tree produced by theextractFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExtractFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGetFormatFunctionCall
public T visitGetFormatFunctionCall(MySqlParser.GetFormatFunctionCallContext ctx)
Visit a parse tree produced by thegetFormatFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitGetFormatFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonValueFunctionCall
public T visitJsonValueFunctionCall(MySqlParser.JsonValueFunctionCallContext ctx)
Visit a parse tree produced by thejsonValueFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonValueFunctionCallin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseFuncAlternative
public T visitCaseFuncAlternative(MySqlParser.CaseFuncAlternativeContext ctx)
Visit a parse tree produced byMySqlParser.caseFuncAlternative().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCaseFuncAlternativein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLevelWeightList
public T visitLevelWeightList(MySqlParser.LevelWeightListContext ctx)
Visit a parse tree produced by thelevelWeightListlabeled alternative inMySqlParser.levelsInWeightString().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLevelWeightListin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLevelWeightRange
public T visitLevelWeightRange(MySqlParser.LevelWeightRangeContext ctx)
Visit a parse tree produced by thelevelWeightRangelabeled alternative inMySqlParser.levelsInWeightString().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLevelWeightRangein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLevelInWeightListElement
public T visitLevelInWeightListElement(MySqlParser.LevelInWeightListElementContext ctx)
Visit a parse tree produced byMySqlParser.levelInWeightListElement().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLevelInWeightListElementin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateWindowedFunction
public T visitAggregateWindowedFunction(MySqlParser.AggregateWindowedFunctionContext ctx)
Visit a parse tree produced byMySqlParser.aggregateWindowedFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAggregateWindowedFunctionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonAggregateWindowedFunction
public T visitNonAggregateWindowedFunction(MySqlParser.NonAggregateWindowedFunctionContext ctx)
Visit a parse tree produced byMySqlParser.nonAggregateWindowedFunction().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNonAggregateWindowedFunctionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverClause
public T visitOverClause(MySqlParser.OverClauseContext ctx)
Visit a parse tree produced byMySqlParser.overClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitOverClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowSpec
public T visitWindowSpec(MySqlParser.WindowSpecContext ctx)
Visit a parse tree produced byMySqlParser.windowSpec().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowSpecin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowName
public T visitWindowName(MySqlParser.WindowNameContext ctx)
Visit a parse tree produced byMySqlParser.windowName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitWindowNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameClause
public T visitFrameClause(MySqlParser.FrameClauseContext ctx)
Visit a parse tree produced byMySqlParser.frameClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameUnits
public T visitFrameUnits(MySqlParser.FrameUnitsContext ctx)
Visit a parse tree produced byMySqlParser.frameUnits().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameUnitsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameExtent
public T visitFrameExtent(MySqlParser.FrameExtentContext ctx)
Visit a parse tree produced byMySqlParser.frameExtent().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameExtentin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameBetween
public T visitFrameBetween(MySqlParser.FrameBetweenContext ctx)
Visit a parse tree produced byMySqlParser.frameBetween().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameBetweenin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameRange
public T visitFrameRange(MySqlParser.FrameRangeContext ctx)
Visit a parse tree produced byMySqlParser.frameRange().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFrameRangein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionClause
public T visitPartitionClause(MySqlParser.PartitionClauseContext ctx)
Visit a parse tree produced byMySqlParser.partitionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPartitionClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitScalarFunctionName
public T visitScalarFunctionName(MySqlParser.ScalarFunctionNameContext ctx)
Visit a parse tree produced byMySqlParser.scalarFunctionName().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitScalarFunctionNamein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordFunctionClause
public T visitPasswordFunctionClause(MySqlParser.PasswordFunctionClauseContext ctx)
Visit a parse tree produced byMySqlParser.passwordFunctionClause().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPasswordFunctionClausein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionArgs
public T visitFunctionArgs(MySqlParser.FunctionArgsContext ctx)
Visit a parse tree produced byMySqlParser.functionArgs().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionArgsin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionArg
public T visitFunctionArg(MySqlParser.FunctionArgContext ctx)
Visit a parse tree produced byMySqlParser.functionArg().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionArgin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsExpression
public T visitIsExpression(MySqlParser.IsExpressionContext ctx)
Visit a parse tree produced by theisExpressionlabeled alternative inMySqlParser.expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIsExpressionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotExpression
public T visitNotExpression(MySqlParser.NotExpressionContext ctx)
Visit a parse tree produced by thenotExpressionlabeled alternative inMySqlParser.expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNotExpressionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLogicalExpression
public T visitLogicalExpression(MySqlParser.LogicalExpressionContext ctx)
Visit a parse tree produced by thelogicalExpressionlabeled alternative inMySqlParser.expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLogicalExpressionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredicateExpression
public T visitPredicateExpression(MySqlParser.PredicateExpressionContext ctx)
Visit a parse tree produced by thepredicateExpressionlabeled alternative inMySqlParser.expression().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPredicateExpressionin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSoundsLikePredicate
public T visitSoundsLikePredicate(MySqlParser.SoundsLikePredicateContext ctx)
Visit a parse tree produced by thesoundsLikePredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSoundsLikePredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionAtomPredicate
public T visitExpressionAtomPredicate(MySqlParser.ExpressionAtomPredicateContext ctx)
Visit a parse tree produced by theexpressionAtomPredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExpressionAtomPredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubqueryComparisonPredicate
public T visitSubqueryComparisonPredicate(MySqlParser.SubqueryComparisonPredicateContext ctx)
Visit a parse tree produced by thesubqueryComparisonPredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubqueryComparisonPredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonMemberOfPredicate
public T visitJsonMemberOfPredicate(MySqlParser.JsonMemberOfPredicateContext ctx)
Visit a parse tree produced by thejsonMemberOfPredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonMemberOfPredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryComparisonPredicate
public T visitBinaryComparisonPredicate(MySqlParser.BinaryComparisonPredicateContext ctx)
Visit a parse tree produced by thebinaryComparisonPredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBinaryComparisonPredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInPredicate
public T visitInPredicate(MySqlParser.InPredicateContext ctx)
Visit a parse tree produced by theinPredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitInPredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBetweenPredicate
public T visitBetweenPredicate(MySqlParser.BetweenPredicateContext ctx)
Visit a parse tree produced by thebetweenPredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBetweenPredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsNullPredicate
public T visitIsNullPredicate(MySqlParser.IsNullPredicateContext ctx)
Visit a parse tree produced by theisNullPredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIsNullPredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLikePredicate
public T visitLikePredicate(MySqlParser.LikePredicateContext ctx)
Visit a parse tree produced by thelikePredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLikePredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegexpPredicate
public T visitRegexpPredicate(MySqlParser.RegexpPredicateContext ctx)
Visit a parse tree produced by theregexpPredicatelabeled alternative inMySqlParser.predicate().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitRegexpPredicatein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryExpressionAtom
public T visitUnaryExpressionAtom(MySqlParser.UnaryExpressionAtomContext ctx)
Visit a parse tree produced by theunaryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnaryExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollateExpressionAtom
public T visitCollateExpressionAtom(MySqlParser.CollateExpressionAtomContext ctx)
Visit a parse tree produced by thecollateExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCollateExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableAssignExpressionAtom
public T visitVariableAssignExpressionAtom(MySqlParser.VariableAssignExpressionAtomContext ctx)
Visit a parse tree produced by thevariableAssignExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitVariableAssignExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMysqlVariableExpressionAtom
public T visitMysqlVariableExpressionAtom(MySqlParser.MysqlVariableExpressionAtomContext ctx)
Visit a parse tree produced by themysqlVariableExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMysqlVariableExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedExpressionAtom
public T visitNestedExpressionAtom(MySqlParser.NestedExpressionAtomContext ctx)
Visit a parse tree produced by thenestedExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNestedExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedRowExpressionAtom
public T visitNestedRowExpressionAtom(MySqlParser.NestedRowExpressionAtomContext ctx)
Visit a parse tree produced by thenestedRowExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitNestedRowExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMathExpressionAtom
public T visitMathExpressionAtom(MySqlParser.MathExpressionAtomContext ctx)
Visit a parse tree produced by themathExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMathExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExistsExpressionAtom
public T visitExistsExpressionAtom(MySqlParser.ExistsExpressionAtomContext ctx)
Visit a parse tree produced by theexistsExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitExistsExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalExpressionAtom
public T visitIntervalExpressionAtom(MySqlParser.IntervalExpressionAtomContext ctx)
Visit a parse tree produced by theintervalExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIntervalExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonExpressionAtom
public T visitJsonExpressionAtom(MySqlParser.JsonExpressionAtomContext ctx)
Visit a parse tree produced by thejsonExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubqueryExpressionAtom
public T visitSubqueryExpressionAtom(MySqlParser.SubqueryExpressionAtomContext ctx)
Visit a parse tree produced by thesubqueryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitSubqueryExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantExpressionAtom
public T visitConstantExpressionAtom(MySqlParser.ConstantExpressionAtomContext ctx)
Visit a parse tree produced by theconstantExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitConstantExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionCallExpressionAtom
public T visitFunctionCallExpressionAtom(MySqlParser.FunctionCallExpressionAtomContext ctx)
Visit a parse tree produced by thefunctionCallExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionCallExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryExpressionAtom
public T visitBinaryExpressionAtom(MySqlParser.BinaryExpressionAtomContext ctx)
Visit a parse tree produced by thebinaryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBinaryExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullColumnNameExpressionAtom
public T visitFullColumnNameExpressionAtom(MySqlParser.FullColumnNameExpressionAtomContext ctx)
Visit a parse tree produced by thefullColumnNameExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFullColumnNameExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitExpressionAtom
public T visitBitExpressionAtom(MySqlParser.BitExpressionAtomContext ctx)
Visit a parse tree produced by thebitExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBitExpressionAtomin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryOperator
public T visitUnaryOperator(MySqlParser.UnaryOperatorContext ctx)
Visit a parse tree produced byMySqlParser.unaryOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitUnaryOperatorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
public T visitComparisonOperator(MySqlParser.ComparisonOperatorContext ctx)
Visit a parse tree produced byMySqlParser.comparisonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitComparisonOperatorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLogicalOperator
public T visitLogicalOperator(MySqlParser.LogicalOperatorContext ctx)
Visit a parse tree produced byMySqlParser.logicalOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitLogicalOperatorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitOperator
public T visitBitOperator(MySqlParser.BitOperatorContext ctx)
Visit a parse tree produced byMySqlParser.bitOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitBitOperatorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultOperator
public T visitMultOperator(MySqlParser.MultOperatorContext ctx)
Visit a parse tree produced byMySqlParser.multOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitMultOperatorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddOperator
public T visitAddOperator(MySqlParser.AddOperatorContext ctx)
Visit a parse tree produced byMySqlParser.addOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitAddOperatorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonOperator
public T visitJsonOperator(MySqlParser.JsonOperatorContext ctx)
Visit a parse tree produced byMySqlParser.jsonOperator().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitJsonOperatorin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharsetNameBase
public T visitCharsetNameBase(MySqlParser.CharsetNameBaseContext ctx)
Visit a parse tree produced byMySqlParser.charsetNameBase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitCharsetNameBasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionLevelBase
public T visitTransactionLevelBase(MySqlParser.TransactionLevelBaseContext ctx)
Visit a parse tree produced byMySqlParser.transactionLevelBase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitTransactionLevelBasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegesBase
public T visitPrivilegesBase(MySqlParser.PrivilegesBaseContext ctx)
Visit a parse tree produced byMySqlParser.privilegesBase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitPrivilegesBasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalTypeBase
public T visitIntervalTypeBase(MySqlParser.IntervalTypeBaseContext ctx)
Visit a parse tree produced byMySqlParser.intervalTypeBase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitIntervalTypeBasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeBase
public T visitDataTypeBase(MySqlParser.DataTypeBaseContext ctx)
Visit a parse tree produced byMySqlParser.dataTypeBase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitDataTypeBasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordsCanBeId
public T visitKeywordsCanBeId(MySqlParser.KeywordsCanBeIdContext ctx)
Visit a parse tree produced byMySqlParser.keywordsCanBeId().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitKeywordsCanBeIdin interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionNameBase
public T visitFunctionNameBase(MySqlParser.FunctionNameBaseContext ctx)
Visit a parse tree produced byMySqlParser.functionNameBase().The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode)onctx.- Specified by:
visitFunctionNameBasein interfaceMySqlParserVisitor<T>- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-