Class MySqlParserBaseListener
- java.lang.Object
-
- io.debezium.ddl.parser.mysql.generated.MySqlParserBaseListener
-
- All Implemented Interfaces:
MySqlParserListener,org.antlr.v4.runtime.tree.ParseTreeListener
public class MySqlParserBaseListener extends Object implements MySqlParserListener
This class provides an empty implementation ofMySqlParserListener, which can be extended to create a listener which only needs to handle a subset of the available methods.
-
-
Constructor Summary
Constructors Constructor Description MySqlParserBaseListener()
-
Method Summary
-
-
-
Method Detail
-
enterRoot
public void enterRoot(MySqlParser.RootContext ctx)
Enter a parse tree produced byMySqlParser.root().The default implementation does nothing.
- Specified by:
enterRootin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRoot
public void exitRoot(MySqlParser.RootContext ctx)
Exit a parse tree produced byMySqlParser.root().The default implementation does nothing.
- Specified by:
exitRootin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSqlStatements
public void enterSqlStatements(MySqlParser.SqlStatementsContext ctx)
Enter a parse tree produced byMySqlParser.sqlStatements().The default implementation does nothing.
- Specified by:
enterSqlStatementsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSqlStatements
public void exitSqlStatements(MySqlParser.SqlStatementsContext ctx)
Exit a parse tree produced byMySqlParser.sqlStatements().The default implementation does nothing.
- Specified by:
exitSqlStatementsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSqlStatement
public void enterSqlStatement(MySqlParser.SqlStatementContext ctx)
Enter a parse tree produced byMySqlParser.sqlStatement().The default implementation does nothing.
- Specified by:
enterSqlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSqlStatement
public void exitSqlStatement(MySqlParser.SqlStatementContext ctx)
Exit a parse tree produced byMySqlParser.sqlStatement().The default implementation does nothing.
- Specified by:
exitSqlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterEmptyStatement
public void enterEmptyStatement(MySqlParser.EmptyStatementContext ctx)
Enter a parse tree produced byMySqlParser.emptyStatement().The default implementation does nothing.
- Specified by:
enterEmptyStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitEmptyStatement
public void exitEmptyStatement(MySqlParser.EmptyStatementContext ctx)
Exit a parse tree produced byMySqlParser.emptyStatement().The default implementation does nothing.
- Specified by:
exitEmptyStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDdlStatement
public void enterDdlStatement(MySqlParser.DdlStatementContext ctx)
Enter a parse tree produced byMySqlParser.ddlStatement().The default implementation does nothing.
- Specified by:
enterDdlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDdlStatement
public void exitDdlStatement(MySqlParser.DdlStatementContext ctx)
Exit a parse tree produced byMySqlParser.ddlStatement().The default implementation does nothing.
- Specified by:
exitDdlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDmlStatement
public void enterDmlStatement(MySqlParser.DmlStatementContext ctx)
Enter a parse tree produced byMySqlParser.dmlStatement().The default implementation does nothing.
- Specified by:
enterDmlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDmlStatement
public void exitDmlStatement(MySqlParser.DmlStatementContext ctx)
Exit a parse tree produced byMySqlParser.dmlStatement().The default implementation does nothing.
- Specified by:
exitDmlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTransactionStatement
public void enterTransactionStatement(MySqlParser.TransactionStatementContext ctx)
Enter a parse tree produced byMySqlParser.transactionStatement().The default implementation does nothing.
- Specified by:
enterTransactionStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTransactionStatement
public void exitTransactionStatement(MySqlParser.TransactionStatementContext ctx)
Exit a parse tree produced byMySqlParser.transactionStatement().The default implementation does nothing.
- Specified by:
exitTransactionStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterReplicationStatement
public void enterReplicationStatement(MySqlParser.ReplicationStatementContext ctx)
Enter a parse tree produced byMySqlParser.replicationStatement().The default implementation does nothing.
- Specified by:
enterReplicationStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitReplicationStatement
public void exitReplicationStatement(MySqlParser.ReplicationStatementContext ctx)
Exit a parse tree produced byMySqlParser.replicationStatement().The default implementation does nothing.
- Specified by:
exitReplicationStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPreparedStatement
public void enterPreparedStatement(MySqlParser.PreparedStatementContext ctx)
Enter a parse tree produced byMySqlParser.preparedStatement().The default implementation does nothing.
- Specified by:
enterPreparedStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPreparedStatement
public void exitPreparedStatement(MySqlParser.PreparedStatementContext ctx)
Exit a parse tree produced byMySqlParser.preparedStatement().The default implementation does nothing.
- Specified by:
exitPreparedStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCompoundStatement
public void enterCompoundStatement(MySqlParser.CompoundStatementContext ctx)
Enter a parse tree produced byMySqlParser.compoundStatement().The default implementation does nothing.
- Specified by:
enterCompoundStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCompoundStatement
public void exitCompoundStatement(MySqlParser.CompoundStatementContext ctx)
Exit a parse tree produced byMySqlParser.compoundStatement().The default implementation does nothing.
- Specified by:
exitCompoundStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAdministrationStatement
public void enterAdministrationStatement(MySqlParser.AdministrationStatementContext ctx)
Enter a parse tree produced byMySqlParser.administrationStatement().The default implementation does nothing.
- Specified by:
enterAdministrationStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAdministrationStatement
public void exitAdministrationStatement(MySqlParser.AdministrationStatementContext ctx)
Exit a parse tree produced byMySqlParser.administrationStatement().The default implementation does nothing.
- Specified by:
exitAdministrationStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUtilityStatement
public void enterUtilityStatement(MySqlParser.UtilityStatementContext ctx)
Enter a parse tree produced byMySqlParser.utilityStatement().The default implementation does nothing.
- Specified by:
enterUtilityStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUtilityStatement
public void exitUtilityStatement(MySqlParser.UtilityStatementContext ctx)
Exit a parse tree produced byMySqlParser.utilityStatement().The default implementation does nothing.
- Specified by:
exitUtilityStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateDatabase
public void enterCreateDatabase(MySqlParser.CreateDatabaseContext ctx)
Enter a parse tree produced byMySqlParser.createDatabase().The default implementation does nothing.
- Specified by:
enterCreateDatabasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateDatabase
public void exitCreateDatabase(MySqlParser.CreateDatabaseContext ctx)
Exit a parse tree produced byMySqlParser.createDatabase().The default implementation does nothing.
- Specified by:
exitCreateDatabasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateEvent
public void enterCreateEvent(MySqlParser.CreateEventContext ctx)
Enter a parse tree produced byMySqlParser.createEvent().The default implementation does nothing.
- Specified by:
enterCreateEventin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateEvent
public void exitCreateEvent(MySqlParser.CreateEventContext ctx)
Exit a parse tree produced byMySqlParser.createEvent().The default implementation does nothing.
- Specified by:
exitCreateEventin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateIndex
public void enterCreateIndex(MySqlParser.CreateIndexContext ctx)
Enter a parse tree produced byMySqlParser.createIndex().The default implementation does nothing.
- Specified by:
enterCreateIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateIndex
public void exitCreateIndex(MySqlParser.CreateIndexContext ctx)
Exit a parse tree produced byMySqlParser.createIndex().The default implementation does nothing.
- Specified by:
exitCreateIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateLogfileGroup
public void enterCreateLogfileGroup(MySqlParser.CreateLogfileGroupContext ctx)
Enter a parse tree produced byMySqlParser.createLogfileGroup().The default implementation does nothing.
- Specified by:
enterCreateLogfileGroupin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateLogfileGroup
public void exitCreateLogfileGroup(MySqlParser.CreateLogfileGroupContext ctx)
Exit a parse tree produced byMySqlParser.createLogfileGroup().The default implementation does nothing.
- Specified by:
exitCreateLogfileGroupin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateProcedure
public void enterCreateProcedure(MySqlParser.CreateProcedureContext ctx)
Enter a parse tree produced byMySqlParser.createProcedure().The default implementation does nothing.
- Specified by:
enterCreateProcedurein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateProcedure
public void exitCreateProcedure(MySqlParser.CreateProcedureContext ctx)
Exit a parse tree produced byMySqlParser.createProcedure().The default implementation does nothing.
- Specified by:
exitCreateProcedurein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateFunction
public void enterCreateFunction(MySqlParser.CreateFunctionContext ctx)
Enter a parse tree produced byMySqlParser.createFunction().The default implementation does nothing.
- Specified by:
enterCreateFunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateFunction
public void exitCreateFunction(MySqlParser.CreateFunctionContext ctx)
Exit a parse tree produced byMySqlParser.createFunction().The default implementation does nothing.
- Specified by:
exitCreateFunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateServer
public void enterCreateServer(MySqlParser.CreateServerContext ctx)
Enter a parse tree produced byMySqlParser.createServer().The default implementation does nothing.
- Specified by:
enterCreateServerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateServer
public void exitCreateServer(MySqlParser.CreateServerContext ctx)
Exit a parse tree produced byMySqlParser.createServer().The default implementation does nothing.
- Specified by:
exitCreateServerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCopyCreateTable
public void enterCopyCreateTable(MySqlParser.CopyCreateTableContext ctx)
Enter a parse tree produced by thecopyCreateTablelabeled alternative inMySqlParser.createTable().The default implementation does nothing.
- Specified by:
enterCopyCreateTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCopyCreateTable
public void exitCopyCreateTable(MySqlParser.CopyCreateTableContext ctx)
Exit a parse tree produced by thecopyCreateTablelabeled alternative inMySqlParser.createTable().The default implementation does nothing.
- Specified by:
exitCopyCreateTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterQueryCreateTable
public void enterQueryCreateTable(MySqlParser.QueryCreateTableContext ctx)
Enter a parse tree produced by thequeryCreateTablelabeled alternative inMySqlParser.createTable().The default implementation does nothing.
- Specified by:
enterQueryCreateTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitQueryCreateTable
public void exitQueryCreateTable(MySqlParser.QueryCreateTableContext ctx)
Exit a parse tree produced by thequeryCreateTablelabeled alternative inMySqlParser.createTable().The default implementation does nothing.
- Specified by:
exitQueryCreateTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterColumnCreateTable
public void enterColumnCreateTable(MySqlParser.ColumnCreateTableContext ctx)
Enter a parse tree produced by thecolumnCreateTablelabeled alternative inMySqlParser.createTable().The default implementation does nothing.
- Specified by:
enterColumnCreateTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitColumnCreateTable
public void exitColumnCreateTable(MySqlParser.ColumnCreateTableContext ctx)
Exit a parse tree produced by thecolumnCreateTablelabeled alternative inMySqlParser.createTable().The default implementation does nothing.
- Specified by:
exitColumnCreateTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateTablespaceInnodb
public void enterCreateTablespaceInnodb(MySqlParser.CreateTablespaceInnodbContext ctx)
Enter a parse tree produced byMySqlParser.createTablespaceInnodb().The default implementation does nothing.
- Specified by:
enterCreateTablespaceInnodbin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateTablespaceInnodb
public void exitCreateTablespaceInnodb(MySqlParser.CreateTablespaceInnodbContext ctx)
Exit a parse tree produced byMySqlParser.createTablespaceInnodb().The default implementation does nothing.
- Specified by:
exitCreateTablespaceInnodbin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateTablespaceNdb
public void enterCreateTablespaceNdb(MySqlParser.CreateTablespaceNdbContext ctx)
Enter a parse tree produced byMySqlParser.createTablespaceNdb().The default implementation does nothing.
- Specified by:
enterCreateTablespaceNdbin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateTablespaceNdb
public void exitCreateTablespaceNdb(MySqlParser.CreateTablespaceNdbContext ctx)
Exit a parse tree produced byMySqlParser.createTablespaceNdb().The default implementation does nothing.
- Specified by:
exitCreateTablespaceNdbin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateTrigger
public void enterCreateTrigger(MySqlParser.CreateTriggerContext ctx)
Enter a parse tree produced byMySqlParser.createTrigger().The default implementation does nothing.
- Specified by:
enterCreateTriggerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateTrigger
public void exitCreateTrigger(MySqlParser.CreateTriggerContext ctx)
Exit a parse tree produced byMySqlParser.createTrigger().The default implementation does nothing.
- Specified by:
exitCreateTriggerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateView
public void enterCreateView(MySqlParser.CreateViewContext ctx)
Enter a parse tree produced byMySqlParser.createView().The default implementation does nothing.
- Specified by:
enterCreateViewin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateView
public void exitCreateView(MySqlParser.CreateViewContext ctx)
Exit a parse tree produced byMySqlParser.createView().The default implementation does nothing.
- Specified by:
exitCreateViewin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateDatabaseOption
public void enterCreateDatabaseOption(MySqlParser.CreateDatabaseOptionContext ctx)
Enter a parse tree produced byMySqlParser.createDatabaseOption().The default implementation does nothing.
- Specified by:
enterCreateDatabaseOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateDatabaseOption
public void exitCreateDatabaseOption(MySqlParser.CreateDatabaseOptionContext ctx)
Exit a parse tree produced byMySqlParser.createDatabaseOption().The default implementation does nothing.
- Specified by:
exitCreateDatabaseOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterOwnerStatement
public void enterOwnerStatement(MySqlParser.OwnerStatementContext ctx)
Enter a parse tree produced byMySqlParser.ownerStatement().The default implementation does nothing.
- Specified by:
enterOwnerStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitOwnerStatement
public void exitOwnerStatement(MySqlParser.OwnerStatementContext ctx)
Exit a parse tree produced byMySqlParser.ownerStatement().The default implementation does nothing.
- Specified by:
exitOwnerStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPreciseSchedule
public void enterPreciseSchedule(MySqlParser.PreciseScheduleContext ctx)
Enter a parse tree produced by thepreciseSchedulelabeled alternative inMySqlParser.scheduleExpression().The default implementation does nothing.
- Specified by:
enterPreciseSchedulein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPreciseSchedule
public void exitPreciseSchedule(MySqlParser.PreciseScheduleContext ctx)
Exit a parse tree produced by thepreciseSchedulelabeled alternative inMySqlParser.scheduleExpression().The default implementation does nothing.
- Specified by:
exitPreciseSchedulein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIntervalSchedule
public void enterIntervalSchedule(MySqlParser.IntervalScheduleContext ctx)
Enter a parse tree produced by theintervalSchedulelabeled alternative inMySqlParser.scheduleExpression().The default implementation does nothing.
- Specified by:
enterIntervalSchedulein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIntervalSchedule
public void exitIntervalSchedule(MySqlParser.IntervalScheduleContext ctx)
Exit a parse tree produced by theintervalSchedulelabeled alternative inMySqlParser.scheduleExpression().The default implementation does nothing.
- Specified by:
exitIntervalSchedulein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTimestampValue
public void enterTimestampValue(MySqlParser.TimestampValueContext ctx)
Enter a parse tree produced byMySqlParser.timestampValue().The default implementation does nothing.
- Specified by:
enterTimestampValuein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTimestampValue
public void exitTimestampValue(MySqlParser.TimestampValueContext ctx)
Exit a parse tree produced byMySqlParser.timestampValue().The default implementation does nothing.
- Specified by:
exitTimestampValuein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIntervalExpr
public void enterIntervalExpr(MySqlParser.IntervalExprContext ctx)
Enter a parse tree produced byMySqlParser.intervalExpr().The default implementation does nothing.
- Specified by:
enterIntervalExprin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIntervalExpr
public void exitIntervalExpr(MySqlParser.IntervalExprContext ctx)
Exit a parse tree produced byMySqlParser.intervalExpr().The default implementation does nothing.
- Specified by:
exitIntervalExprin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIntervalType
public void enterIntervalType(MySqlParser.IntervalTypeContext ctx)
Enter a parse tree produced byMySqlParser.intervalType().The default implementation does nothing.
- Specified by:
enterIntervalTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIntervalType
public void exitIntervalType(MySqlParser.IntervalTypeContext ctx)
Exit a parse tree produced byMySqlParser.intervalType().The default implementation does nothing.
- Specified by:
exitIntervalTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterEnableType
public void enterEnableType(MySqlParser.EnableTypeContext ctx)
Enter a parse tree produced byMySqlParser.enableType().The default implementation does nothing.
- Specified by:
enterEnableTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitEnableType
public void exitEnableType(MySqlParser.EnableTypeContext ctx)
Exit a parse tree produced byMySqlParser.enableType().The default implementation does nothing.
- Specified by:
exitEnableTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIndexType
public void enterIndexType(MySqlParser.IndexTypeContext ctx)
Enter a parse tree produced byMySqlParser.indexType().The default implementation does nothing.
- Specified by:
enterIndexTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIndexType
public void exitIndexType(MySqlParser.IndexTypeContext ctx)
Exit a parse tree produced byMySqlParser.indexType().The default implementation does nothing.
- Specified by:
exitIndexTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIndexOption
public void enterIndexOption(MySqlParser.IndexOptionContext ctx)
Enter a parse tree produced byMySqlParser.indexOption().The default implementation does nothing.
- Specified by:
enterIndexOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIndexOption
public void exitIndexOption(MySqlParser.IndexOptionContext ctx)
Exit a parse tree produced byMySqlParser.indexOption().The default implementation does nothing.
- Specified by:
exitIndexOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterProcedureParameter
public void enterProcedureParameter(MySqlParser.ProcedureParameterContext ctx)
Enter a parse tree produced byMySqlParser.procedureParameter().The default implementation does nothing.
- Specified by:
enterProcedureParameterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitProcedureParameter
public void exitProcedureParameter(MySqlParser.ProcedureParameterContext ctx)
Exit a parse tree produced byMySqlParser.procedureParameter().The default implementation does nothing.
- Specified by:
exitProcedureParameterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFunctionParameter
public void enterFunctionParameter(MySqlParser.FunctionParameterContext ctx)
Enter a parse tree produced byMySqlParser.functionParameter().The default implementation does nothing.
- Specified by:
enterFunctionParameterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFunctionParameter
public void exitFunctionParameter(MySqlParser.FunctionParameterContext ctx)
Exit a parse tree produced byMySqlParser.functionParameter().The default implementation does nothing.
- Specified by:
exitFunctionParameterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRoutineComment
public void enterRoutineComment(MySqlParser.RoutineCommentContext ctx)
Enter a parse tree produced by theroutineCommentlabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
enterRoutineCommentin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRoutineComment
public void exitRoutineComment(MySqlParser.RoutineCommentContext ctx)
Exit a parse tree produced by theroutineCommentlabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
exitRoutineCommentin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRoutineLanguage
public void enterRoutineLanguage(MySqlParser.RoutineLanguageContext ctx)
Enter a parse tree produced by theroutineLanguagelabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
enterRoutineLanguagein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRoutineLanguage
public void exitRoutineLanguage(MySqlParser.RoutineLanguageContext ctx)
Exit a parse tree produced by theroutineLanguagelabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
exitRoutineLanguagein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRoutineBehavior
public void enterRoutineBehavior(MySqlParser.RoutineBehaviorContext ctx)
Enter a parse tree produced by theroutineBehaviorlabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
enterRoutineBehaviorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRoutineBehavior
public void exitRoutineBehavior(MySqlParser.RoutineBehaviorContext ctx)
Exit a parse tree produced by theroutineBehaviorlabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
exitRoutineBehaviorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRoutineData
public void enterRoutineData(MySqlParser.RoutineDataContext ctx)
Enter a parse tree produced by theroutineDatalabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
enterRoutineDatain interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRoutineData
public void exitRoutineData(MySqlParser.RoutineDataContext ctx)
Exit a parse tree produced by theroutineDatalabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
exitRoutineDatain interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRoutineSecurity
public void enterRoutineSecurity(MySqlParser.RoutineSecurityContext ctx)
Enter a parse tree produced by theroutineSecuritylabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
enterRoutineSecurityin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRoutineSecurity
public void exitRoutineSecurity(MySqlParser.RoutineSecurityContext ctx)
Exit a parse tree produced by theroutineSecuritylabeled alternative inMySqlParser.routineOption().The default implementation does nothing.
- Specified by:
exitRoutineSecurityin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterServerOption
public void enterServerOption(MySqlParser.ServerOptionContext ctx)
Enter a parse tree produced byMySqlParser.serverOption().The default implementation does nothing.
- Specified by:
enterServerOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitServerOption
public void exitServerOption(MySqlParser.ServerOptionContext ctx)
Exit a parse tree produced byMySqlParser.serverOption().The default implementation does nothing.
- Specified by:
exitServerOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateDefinitions
public void enterCreateDefinitions(MySqlParser.CreateDefinitionsContext ctx)
Enter a parse tree produced byMySqlParser.createDefinitions().The default implementation does nothing.
- Specified by:
enterCreateDefinitionsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateDefinitions
public void exitCreateDefinitions(MySqlParser.CreateDefinitionsContext ctx)
Exit a parse tree produced byMySqlParser.createDefinitions().The default implementation does nothing.
- Specified by:
exitCreateDefinitionsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterColumnDeclaration
public void enterColumnDeclaration(MySqlParser.ColumnDeclarationContext ctx)
Enter a parse tree produced by thecolumnDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation does nothing.
- Specified by:
enterColumnDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitColumnDeclaration
public void exitColumnDeclaration(MySqlParser.ColumnDeclarationContext ctx)
Exit a parse tree produced by thecolumnDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation does nothing.
- Specified by:
exitColumnDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterConstraintDeclaration
public void enterConstraintDeclaration(MySqlParser.ConstraintDeclarationContext ctx)
Enter a parse tree produced by theconstraintDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation does nothing.
- Specified by:
enterConstraintDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitConstraintDeclaration
public void exitConstraintDeclaration(MySqlParser.ConstraintDeclarationContext ctx)
Exit a parse tree produced by theconstraintDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation does nothing.
- Specified by:
exitConstraintDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIndexDeclaration
public void enterIndexDeclaration(MySqlParser.IndexDeclarationContext ctx)
Enter a parse tree produced by theindexDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation does nothing.
- Specified by:
enterIndexDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIndexDeclaration
public void exitIndexDeclaration(MySqlParser.IndexDeclarationContext ctx)
Exit a parse tree produced by theindexDeclarationlabeled alternative inMySqlParser.createDefinition().The default implementation does nothing.
- Specified by:
exitIndexDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterColumnDefinition
public void enterColumnDefinition(MySqlParser.ColumnDefinitionContext ctx)
Enter a parse tree produced byMySqlParser.columnDefinition().The default implementation does nothing.
- Specified by:
enterColumnDefinitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitColumnDefinition
public void exitColumnDefinition(MySqlParser.ColumnDefinitionContext ctx)
Exit a parse tree produced byMySqlParser.columnDefinition().The default implementation does nothing.
- Specified by:
exitColumnDefinitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterNullColumnConstraint
public void enterNullColumnConstraint(MySqlParser.NullColumnConstraintContext ctx)
Enter a parse tree produced by thenullColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterNullColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitNullColumnConstraint
public void exitNullColumnConstraint(MySqlParser.NullColumnConstraintContext ctx)
Exit a parse tree produced by thenullColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitNullColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDefaultColumnConstraint
public void enterDefaultColumnConstraint(MySqlParser.DefaultColumnConstraintContext ctx)
Enter a parse tree produced by thedefaultColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterDefaultColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDefaultColumnConstraint
public void exitDefaultColumnConstraint(MySqlParser.DefaultColumnConstraintContext ctx)
Exit a parse tree produced by thedefaultColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitDefaultColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAutoIncrementColumnConstraint
public void enterAutoIncrementColumnConstraint(MySqlParser.AutoIncrementColumnConstraintContext ctx)
Enter a parse tree produced by theautoIncrementColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterAutoIncrementColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAutoIncrementColumnConstraint
public void exitAutoIncrementColumnConstraint(MySqlParser.AutoIncrementColumnConstraintContext ctx)
Exit a parse tree produced by theautoIncrementColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitAutoIncrementColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPrimaryKeyColumnConstraint
public void enterPrimaryKeyColumnConstraint(MySqlParser.PrimaryKeyColumnConstraintContext ctx)
Enter a parse tree produced by theprimaryKeyColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterPrimaryKeyColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPrimaryKeyColumnConstraint
public void exitPrimaryKeyColumnConstraint(MySqlParser.PrimaryKeyColumnConstraintContext ctx)
Exit a parse tree produced by theprimaryKeyColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitPrimaryKeyColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUniqueKeyColumnConstraint
public void enterUniqueKeyColumnConstraint(MySqlParser.UniqueKeyColumnConstraintContext ctx)
Enter a parse tree produced by theuniqueKeyColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterUniqueKeyColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUniqueKeyColumnConstraint
public void exitUniqueKeyColumnConstraint(MySqlParser.UniqueKeyColumnConstraintContext ctx)
Exit a parse tree produced by theuniqueKeyColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitUniqueKeyColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCommentColumnConstraint
public void enterCommentColumnConstraint(MySqlParser.CommentColumnConstraintContext ctx)
Enter a parse tree produced by thecommentColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterCommentColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCommentColumnConstraint
public void exitCommentColumnConstraint(MySqlParser.CommentColumnConstraintContext ctx)
Exit a parse tree produced by thecommentColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitCommentColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFormatColumnConstraint
public void enterFormatColumnConstraint(MySqlParser.FormatColumnConstraintContext ctx)
Enter a parse tree produced by theformatColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterFormatColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFormatColumnConstraint
public void exitFormatColumnConstraint(MySqlParser.FormatColumnConstraintContext ctx)
Exit a parse tree produced by theformatColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitFormatColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStorageColumnConstraint
public void enterStorageColumnConstraint(MySqlParser.StorageColumnConstraintContext ctx)
Enter a parse tree produced by thestorageColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterStorageColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStorageColumnConstraint
public void exitStorageColumnConstraint(MySqlParser.StorageColumnConstraintContext ctx)
Exit a parse tree produced by thestorageColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitStorageColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterReferenceColumnConstraint
public void enterReferenceColumnConstraint(MySqlParser.ReferenceColumnConstraintContext ctx)
Enter a parse tree produced by thereferenceColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterReferenceColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitReferenceColumnConstraint
public void exitReferenceColumnConstraint(MySqlParser.ReferenceColumnConstraintContext ctx)
Exit a parse tree produced by thereferenceColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitReferenceColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCollateColumnConstraint
public void enterCollateColumnConstraint(MySqlParser.CollateColumnConstraintContext ctx)
Enter a parse tree produced by thecollateColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterCollateColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCollateColumnConstraint
public void exitCollateColumnConstraint(MySqlParser.CollateColumnConstraintContext ctx)
Exit a parse tree produced by thecollateColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitCollateColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterGeneratedColumnConstraint
public void enterGeneratedColumnConstraint(MySqlParser.GeneratedColumnConstraintContext ctx)
Enter a parse tree produced by thegeneratedColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterGeneratedColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitGeneratedColumnConstraint
public void exitGeneratedColumnConstraint(MySqlParser.GeneratedColumnConstraintContext ctx)
Exit a parse tree produced by thegeneratedColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitGeneratedColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSerialDefaultColumnConstraint
public void enterSerialDefaultColumnConstraint(MySqlParser.SerialDefaultColumnConstraintContext ctx)
Enter a parse tree produced by theserialDefaultColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterSerialDefaultColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSerialDefaultColumnConstraint
public void exitSerialDefaultColumnConstraint(MySqlParser.SerialDefaultColumnConstraintContext ctx)
Exit a parse tree produced by theserialDefaultColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitSerialDefaultColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCheckColumnConstraint
public void enterCheckColumnConstraint(MySqlParser.CheckColumnConstraintContext ctx)
Enter a parse tree produced by thecheckColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
enterCheckColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCheckColumnConstraint
public void exitCheckColumnConstraint(MySqlParser.CheckColumnConstraintContext ctx)
Exit a parse tree produced by thecheckColumnConstraintlabeled alternative inMySqlParser.columnConstraint().The default implementation does nothing.
- Specified by:
exitCheckColumnConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPrimaryKeyTableConstraint
public void enterPrimaryKeyTableConstraint(MySqlParser.PrimaryKeyTableConstraintContext ctx)
Enter a parse tree produced by theprimaryKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation does nothing.
- Specified by:
enterPrimaryKeyTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPrimaryKeyTableConstraint
public void exitPrimaryKeyTableConstraint(MySqlParser.PrimaryKeyTableConstraintContext ctx)
Exit a parse tree produced by theprimaryKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation does nothing.
- Specified by:
exitPrimaryKeyTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUniqueKeyTableConstraint
public void enterUniqueKeyTableConstraint(MySqlParser.UniqueKeyTableConstraintContext ctx)
Enter a parse tree produced by theuniqueKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation does nothing.
- Specified by:
enterUniqueKeyTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUniqueKeyTableConstraint
public void exitUniqueKeyTableConstraint(MySqlParser.UniqueKeyTableConstraintContext ctx)
Exit a parse tree produced by theuniqueKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation does nothing.
- Specified by:
exitUniqueKeyTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterForeignKeyTableConstraint
public void enterForeignKeyTableConstraint(MySqlParser.ForeignKeyTableConstraintContext ctx)
Enter a parse tree produced by theforeignKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation does nothing.
- Specified by:
enterForeignKeyTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitForeignKeyTableConstraint
public void exitForeignKeyTableConstraint(MySqlParser.ForeignKeyTableConstraintContext ctx)
Exit a parse tree produced by theforeignKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation does nothing.
- Specified by:
exitForeignKeyTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCheckTableConstraint
public void enterCheckTableConstraint(MySqlParser.CheckTableConstraintContext ctx)
Enter a parse tree produced by thecheckTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation does nothing.
- Specified by:
enterCheckTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCheckTableConstraint
public void exitCheckTableConstraint(MySqlParser.CheckTableConstraintContext ctx)
Exit a parse tree produced by thecheckTableConstraintlabeled alternative inMySqlParser.tableConstraint().The default implementation does nothing.
- Specified by:
exitCheckTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterReferenceDefinition
public void enterReferenceDefinition(MySqlParser.ReferenceDefinitionContext ctx)
Enter a parse tree produced byMySqlParser.referenceDefinition().The default implementation does nothing.
- Specified by:
enterReferenceDefinitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitReferenceDefinition
public void exitReferenceDefinition(MySqlParser.ReferenceDefinitionContext ctx)
Exit a parse tree produced byMySqlParser.referenceDefinition().The default implementation does nothing.
- Specified by:
exitReferenceDefinitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterReferenceAction
public void enterReferenceAction(MySqlParser.ReferenceActionContext ctx)
Enter a parse tree produced byMySqlParser.referenceAction().The default implementation does nothing.
- Specified by:
enterReferenceActionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitReferenceAction
public void exitReferenceAction(MySqlParser.ReferenceActionContext ctx)
Exit a parse tree produced byMySqlParser.referenceAction().The default implementation does nothing.
- Specified by:
exitReferenceActionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterReferenceControlType
public void enterReferenceControlType(MySqlParser.ReferenceControlTypeContext ctx)
Enter a parse tree produced byMySqlParser.referenceControlType().The default implementation does nothing.
- Specified by:
enterReferenceControlTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitReferenceControlType
public void exitReferenceControlType(MySqlParser.ReferenceControlTypeContext ctx)
Exit a parse tree produced byMySqlParser.referenceControlType().The default implementation does nothing.
- Specified by:
exitReferenceControlTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleIndexDeclaration
public void enterSimpleIndexDeclaration(MySqlParser.SimpleIndexDeclarationContext ctx)
Enter a parse tree produced by thesimpleIndexDeclarationlabeled alternative inMySqlParser.indexColumnDefinition().The default implementation does nothing.
- Specified by:
enterSimpleIndexDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleIndexDeclaration
public void exitSimpleIndexDeclaration(MySqlParser.SimpleIndexDeclarationContext ctx)
Exit a parse tree produced by thesimpleIndexDeclarationlabeled alternative inMySqlParser.indexColumnDefinition().The default implementation does nothing.
- Specified by:
exitSimpleIndexDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSpecialIndexDeclaration
public void enterSpecialIndexDeclaration(MySqlParser.SpecialIndexDeclarationContext ctx)
Enter a parse tree produced by thespecialIndexDeclarationlabeled alternative inMySqlParser.indexColumnDefinition().The default implementation does nothing.
- Specified by:
enterSpecialIndexDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSpecialIndexDeclaration
public void exitSpecialIndexDeclaration(MySqlParser.SpecialIndexDeclarationContext ctx)
Exit a parse tree produced by thespecialIndexDeclarationlabeled alternative inMySqlParser.indexColumnDefinition().The default implementation does nothing.
- Specified by:
exitSpecialIndexDeclarationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionEngine
public void enterTableOptionEngine(MySqlParser.TableOptionEngineContext ctx)
Enter a parse tree produced by thetableOptionEnginelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionEnginein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionEngine
public void exitTableOptionEngine(MySqlParser.TableOptionEngineContext ctx)
Exit a parse tree produced by thetableOptionEnginelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionEnginein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionAutoIncrement
public void enterTableOptionAutoIncrement(MySqlParser.TableOptionAutoIncrementContext ctx)
Enter a parse tree produced by thetableOptionAutoIncrementlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionAutoIncrementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionAutoIncrement
public void exitTableOptionAutoIncrement(MySqlParser.TableOptionAutoIncrementContext ctx)
Exit a parse tree produced by thetableOptionAutoIncrementlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionAutoIncrementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionAverage
public void enterTableOptionAverage(MySqlParser.TableOptionAverageContext ctx)
Enter a parse tree produced by thetableOptionAveragelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionAveragein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionAverage
public void exitTableOptionAverage(MySqlParser.TableOptionAverageContext ctx)
Exit a parse tree produced by thetableOptionAveragelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionAveragein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionCharset
public void enterTableOptionCharset(MySqlParser.TableOptionCharsetContext ctx)
Enter a parse tree produced by thetableOptionCharsetlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionCharsetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionCharset
public void exitTableOptionCharset(MySqlParser.TableOptionCharsetContext ctx)
Exit a parse tree produced by thetableOptionCharsetlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionCharsetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionChecksum
public void enterTableOptionChecksum(MySqlParser.TableOptionChecksumContext ctx)
Enter a parse tree produced by thetableOptionChecksumlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionChecksumin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionChecksum
public void exitTableOptionChecksum(MySqlParser.TableOptionChecksumContext ctx)
Exit a parse tree produced by thetableOptionChecksumlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionChecksumin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionCollate
public void enterTableOptionCollate(MySqlParser.TableOptionCollateContext ctx)
Enter a parse tree produced by thetableOptionCollatelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionCollatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionCollate
public void exitTableOptionCollate(MySqlParser.TableOptionCollateContext ctx)
Exit a parse tree produced by thetableOptionCollatelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionCollatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionComment
public void enterTableOptionComment(MySqlParser.TableOptionCommentContext ctx)
Enter a parse tree produced by thetableOptionCommentlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionCommentin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionComment
public void exitTableOptionComment(MySqlParser.TableOptionCommentContext ctx)
Exit a parse tree produced by thetableOptionCommentlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionCommentin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionCompression
public void enterTableOptionCompression(MySqlParser.TableOptionCompressionContext ctx)
Enter a parse tree produced by thetableOptionCompressionlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionCompressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionCompression
public void exitTableOptionCompression(MySqlParser.TableOptionCompressionContext ctx)
Exit a parse tree produced by thetableOptionCompressionlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionCompressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionConnection
public void enterTableOptionConnection(MySqlParser.TableOptionConnectionContext ctx)
Enter a parse tree produced by thetableOptionConnectionlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionConnectionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionConnection
public void exitTableOptionConnection(MySqlParser.TableOptionConnectionContext ctx)
Exit a parse tree produced by thetableOptionConnectionlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionConnectionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionDataDirectory
public void enterTableOptionDataDirectory(MySqlParser.TableOptionDataDirectoryContext ctx)
Enter a parse tree produced by thetableOptionDataDirectorylabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionDataDirectoryin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionDataDirectory
public void exitTableOptionDataDirectory(MySqlParser.TableOptionDataDirectoryContext ctx)
Exit a parse tree produced by thetableOptionDataDirectorylabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionDataDirectoryin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionDelay
public void enterTableOptionDelay(MySqlParser.TableOptionDelayContext ctx)
Enter a parse tree produced by thetableOptionDelaylabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionDelayin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionDelay
public void exitTableOptionDelay(MySqlParser.TableOptionDelayContext ctx)
Exit a parse tree produced by thetableOptionDelaylabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionDelayin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionEncryption
public void enterTableOptionEncryption(MySqlParser.TableOptionEncryptionContext ctx)
Enter a parse tree produced by thetableOptionEncryptionlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionEncryptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionEncryption
public void exitTableOptionEncryption(MySqlParser.TableOptionEncryptionContext ctx)
Exit a parse tree produced by thetableOptionEncryptionlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionEncryptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionIndexDirectory
public void enterTableOptionIndexDirectory(MySqlParser.TableOptionIndexDirectoryContext ctx)
Enter a parse tree produced by thetableOptionIndexDirectorylabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionIndexDirectoryin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionIndexDirectory
public void exitTableOptionIndexDirectory(MySqlParser.TableOptionIndexDirectoryContext ctx)
Exit a parse tree produced by thetableOptionIndexDirectorylabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionIndexDirectoryin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionInsertMethod
public void enterTableOptionInsertMethod(MySqlParser.TableOptionInsertMethodContext ctx)
Enter a parse tree produced by thetableOptionInsertMethodlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionInsertMethodin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionInsertMethod
public void exitTableOptionInsertMethod(MySqlParser.TableOptionInsertMethodContext ctx)
Exit a parse tree produced by thetableOptionInsertMethodlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionInsertMethodin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionKeyBlockSize
public void enterTableOptionKeyBlockSize(MySqlParser.TableOptionKeyBlockSizeContext ctx)
Enter a parse tree produced by thetableOptionKeyBlockSizelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionKeyBlockSizein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionKeyBlockSize
public void exitTableOptionKeyBlockSize(MySqlParser.TableOptionKeyBlockSizeContext ctx)
Exit a parse tree produced by thetableOptionKeyBlockSizelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionKeyBlockSizein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionMaxRows
public void enterTableOptionMaxRows(MySqlParser.TableOptionMaxRowsContext ctx)
Enter a parse tree produced by thetableOptionMaxRowslabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionMaxRowsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionMaxRows
public void exitTableOptionMaxRows(MySqlParser.TableOptionMaxRowsContext ctx)
Exit a parse tree produced by thetableOptionMaxRowslabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionMaxRowsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionMinRows
public void enterTableOptionMinRows(MySqlParser.TableOptionMinRowsContext ctx)
Enter a parse tree produced by thetableOptionMinRowslabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionMinRowsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionMinRows
public void exitTableOptionMinRows(MySqlParser.TableOptionMinRowsContext ctx)
Exit a parse tree produced by thetableOptionMinRowslabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionMinRowsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionPackKeys
public void enterTableOptionPackKeys(MySqlParser.TableOptionPackKeysContext ctx)
Enter a parse tree produced by thetableOptionPackKeyslabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionPackKeysin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionPackKeys
public void exitTableOptionPackKeys(MySqlParser.TableOptionPackKeysContext ctx)
Exit a parse tree produced by thetableOptionPackKeyslabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionPackKeysin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionPassword
public void enterTableOptionPassword(MySqlParser.TableOptionPasswordContext ctx)
Enter a parse tree produced by thetableOptionPasswordlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionPasswordin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionPassword
public void exitTableOptionPassword(MySqlParser.TableOptionPasswordContext ctx)
Exit a parse tree produced by thetableOptionPasswordlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionPasswordin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionRowFormat
public void enterTableOptionRowFormat(MySqlParser.TableOptionRowFormatContext ctx)
Enter a parse tree produced by thetableOptionRowFormatlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionRowFormatin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionRowFormat
public void exitTableOptionRowFormat(MySqlParser.TableOptionRowFormatContext ctx)
Exit a parse tree produced by thetableOptionRowFormatlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionRowFormatin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionRecalculation
public void enterTableOptionRecalculation(MySqlParser.TableOptionRecalculationContext ctx)
Enter a parse tree produced by thetableOptionRecalculationlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionRecalculationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionRecalculation
public void exitTableOptionRecalculation(MySqlParser.TableOptionRecalculationContext ctx)
Exit a parse tree produced by thetableOptionRecalculationlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionRecalculationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionPersistent
public void enterTableOptionPersistent(MySqlParser.TableOptionPersistentContext ctx)
Enter a parse tree produced by thetableOptionPersistentlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionPersistentin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionPersistent
public void exitTableOptionPersistent(MySqlParser.TableOptionPersistentContext ctx)
Exit a parse tree produced by thetableOptionPersistentlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionPersistentin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionSamplePage
public void enterTableOptionSamplePage(MySqlParser.TableOptionSamplePageContext ctx)
Enter a parse tree produced by thetableOptionSamplePagelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionSamplePagein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionSamplePage
public void exitTableOptionSamplePage(MySqlParser.TableOptionSamplePageContext ctx)
Exit a parse tree produced by thetableOptionSamplePagelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionSamplePagein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionTablespace
public void enterTableOptionTablespace(MySqlParser.TableOptionTablespaceContext ctx)
Enter a parse tree produced by thetableOptionTablespacelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionTablespace
public void exitTableOptionTablespace(MySqlParser.TableOptionTablespaceContext ctx)
Exit a parse tree produced by thetableOptionTablespacelabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionTransactional
public void enterTableOptionTransactional(MySqlParser.TableOptionTransactionalContext ctx)
Enter a parse tree produced by thetableOptionTransactionallabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionTransactionalin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionTransactional
public void exitTableOptionTransactional(MySqlParser.TableOptionTransactionalContext ctx)
Exit a parse tree produced by thetableOptionTransactionallabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionTransactionalin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableOptionUnion
public void enterTableOptionUnion(MySqlParser.TableOptionUnionContext ctx)
Enter a parse tree produced by thetableOptionUnionlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
enterTableOptionUnionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableOptionUnion
public void exitTableOptionUnion(MySqlParser.TableOptionUnionContext ctx)
Exit a parse tree produced by thetableOptionUnionlabeled alternative inMySqlParser.tableOption().The default implementation does nothing.
- Specified by:
exitTableOptionUnionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTablespaceStorage
public void enterTablespaceStorage(MySqlParser.TablespaceStorageContext ctx)
Enter a parse tree produced byMySqlParser.tablespaceStorage().The default implementation does nothing.
- Specified by:
enterTablespaceStoragein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTablespaceStorage
public void exitTablespaceStorage(MySqlParser.TablespaceStorageContext ctx)
Exit a parse tree produced byMySqlParser.tablespaceStorage().The default implementation does nothing.
- Specified by:
exitTablespaceStoragein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionDefinitions
public void enterPartitionDefinitions(MySqlParser.PartitionDefinitionsContext ctx)
Enter a parse tree produced byMySqlParser.partitionDefinitions().The default implementation does nothing.
- Specified by:
enterPartitionDefinitionsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionDefinitions
public void exitPartitionDefinitions(MySqlParser.PartitionDefinitionsContext ctx)
Exit a parse tree produced byMySqlParser.partitionDefinitions().The default implementation does nothing.
- Specified by:
exitPartitionDefinitionsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionFunctionHash
public void enterPartitionFunctionHash(MySqlParser.PartitionFunctionHashContext ctx)
Enter a parse tree produced by thepartitionFunctionHashlabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation does nothing.
- Specified by:
enterPartitionFunctionHashin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionFunctionHash
public void exitPartitionFunctionHash(MySqlParser.PartitionFunctionHashContext ctx)
Exit a parse tree produced by thepartitionFunctionHashlabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation does nothing.
- Specified by:
exitPartitionFunctionHashin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionFunctionKey
public void enterPartitionFunctionKey(MySqlParser.PartitionFunctionKeyContext ctx)
Enter a parse tree produced by thepartitionFunctionKeylabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation does nothing.
- Specified by:
enterPartitionFunctionKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionFunctionKey
public void exitPartitionFunctionKey(MySqlParser.PartitionFunctionKeyContext ctx)
Exit a parse tree produced by thepartitionFunctionKeylabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation does nothing.
- Specified by:
exitPartitionFunctionKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionFunctionRange
public void enterPartitionFunctionRange(MySqlParser.PartitionFunctionRangeContext ctx)
Enter a parse tree produced by thepartitionFunctionRangelabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation does nothing.
- Specified by:
enterPartitionFunctionRangein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionFunctionRange
public void exitPartitionFunctionRange(MySqlParser.PartitionFunctionRangeContext ctx)
Exit a parse tree produced by thepartitionFunctionRangelabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation does nothing.
- Specified by:
exitPartitionFunctionRangein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionFunctionList
public void enterPartitionFunctionList(MySqlParser.PartitionFunctionListContext ctx)
Enter a parse tree produced by thepartitionFunctionListlabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation does nothing.
- Specified by:
enterPartitionFunctionListin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionFunctionList
public void exitPartitionFunctionList(MySqlParser.PartitionFunctionListContext ctx)
Exit a parse tree produced by thepartitionFunctionListlabeled alternative inMySqlParser.partitionFunctionDefinition().The default implementation does nothing.
- Specified by:
exitPartitionFunctionListin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSubPartitionFunctionHash
public void enterSubPartitionFunctionHash(MySqlParser.SubPartitionFunctionHashContext ctx)
Enter a parse tree produced by thesubPartitionFunctionHashlabeled alternative inMySqlParser.subpartitionFunctionDefinition().The default implementation does nothing.
- Specified by:
enterSubPartitionFunctionHashin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSubPartitionFunctionHash
public void exitSubPartitionFunctionHash(MySqlParser.SubPartitionFunctionHashContext ctx)
Exit a parse tree produced by thesubPartitionFunctionHashlabeled alternative inMySqlParser.subpartitionFunctionDefinition().The default implementation does nothing.
- Specified by:
exitSubPartitionFunctionHashin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSubPartitionFunctionKey
public void enterSubPartitionFunctionKey(MySqlParser.SubPartitionFunctionKeyContext ctx)
Enter a parse tree produced by thesubPartitionFunctionKeylabeled alternative inMySqlParser.subpartitionFunctionDefinition().The default implementation does nothing.
- Specified by:
enterSubPartitionFunctionKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSubPartitionFunctionKey
public void exitSubPartitionFunctionKey(MySqlParser.SubPartitionFunctionKeyContext ctx)
Exit a parse tree produced by thesubPartitionFunctionKeylabeled alternative inMySqlParser.subpartitionFunctionDefinition().The default implementation does nothing.
- Specified by:
exitSubPartitionFunctionKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionComparision
public void enterPartitionComparision(MySqlParser.PartitionComparisionContext ctx)
Enter a parse tree produced by thepartitionComparisionlabeled alternative inMySqlParser.partitionDefinition().The default implementation does nothing.
- Specified by:
enterPartitionComparisionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionComparision
public void exitPartitionComparision(MySqlParser.PartitionComparisionContext ctx)
Exit a parse tree produced by thepartitionComparisionlabeled alternative inMySqlParser.partitionDefinition().The default implementation does nothing.
- Specified by:
exitPartitionComparisionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionListAtom
public void enterPartitionListAtom(MySqlParser.PartitionListAtomContext ctx)
Enter a parse tree produced by thepartitionListAtomlabeled alternative inMySqlParser.partitionDefinition().The default implementation does nothing.
- Specified by:
enterPartitionListAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionListAtom
public void exitPartitionListAtom(MySqlParser.PartitionListAtomContext ctx)
Exit a parse tree produced by thepartitionListAtomlabeled alternative inMySqlParser.partitionDefinition().The default implementation does nothing.
- Specified by:
exitPartitionListAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionListVector
public void enterPartitionListVector(MySqlParser.PartitionListVectorContext ctx)
Enter a parse tree produced by thepartitionListVectorlabeled alternative inMySqlParser.partitionDefinition().The default implementation does nothing.
- Specified by:
enterPartitionListVectorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionListVector
public void exitPartitionListVector(MySqlParser.PartitionListVectorContext ctx)
Exit a parse tree produced by thepartitionListVectorlabeled alternative inMySqlParser.partitionDefinition().The default implementation does nothing.
- Specified by:
exitPartitionListVectorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionSimple
public void enterPartitionSimple(MySqlParser.PartitionSimpleContext ctx)
Enter a parse tree produced by thepartitionSimplelabeled alternative inMySqlParser.partitionDefinition().The default implementation does nothing.
- Specified by:
enterPartitionSimplein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionSimple
public void exitPartitionSimple(MySqlParser.PartitionSimpleContext ctx)
Exit a parse tree produced by thepartitionSimplelabeled alternative inMySqlParser.partitionDefinition().The default implementation does nothing.
- Specified by:
exitPartitionSimplein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionDefinerAtom
public void enterPartitionDefinerAtom(MySqlParser.PartitionDefinerAtomContext ctx)
Enter a parse tree produced byMySqlParser.partitionDefinerAtom().The default implementation does nothing.
- Specified by:
enterPartitionDefinerAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionDefinerAtom
public void exitPartitionDefinerAtom(MySqlParser.PartitionDefinerAtomContext ctx)
Exit a parse tree produced byMySqlParser.partitionDefinerAtom().The default implementation does nothing.
- Specified by:
exitPartitionDefinerAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionDefinerVector
public void enterPartitionDefinerVector(MySqlParser.PartitionDefinerVectorContext ctx)
Enter a parse tree produced byMySqlParser.partitionDefinerVector().The default implementation does nothing.
- Specified by:
enterPartitionDefinerVectorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionDefinerVector
public void exitPartitionDefinerVector(MySqlParser.PartitionDefinerVectorContext ctx)
Exit a parse tree produced byMySqlParser.partitionDefinerVector().The default implementation does nothing.
- Specified by:
exitPartitionDefinerVectorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSubpartitionDefinition
public void enterSubpartitionDefinition(MySqlParser.SubpartitionDefinitionContext ctx)
Enter a parse tree produced byMySqlParser.subpartitionDefinition().The default implementation does nothing.
- Specified by:
enterSubpartitionDefinitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSubpartitionDefinition
public void exitSubpartitionDefinition(MySqlParser.SubpartitionDefinitionContext ctx)
Exit a parse tree produced byMySqlParser.subpartitionDefinition().The default implementation does nothing.
- Specified by:
exitSubpartitionDefinitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionOptionEngine
public void enterPartitionOptionEngine(MySqlParser.PartitionOptionEngineContext ctx)
Enter a parse tree produced by thepartitionOptionEnginelabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
enterPartitionOptionEnginein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionOptionEngine
public void exitPartitionOptionEngine(MySqlParser.PartitionOptionEngineContext ctx)
Exit a parse tree produced by thepartitionOptionEnginelabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
exitPartitionOptionEnginein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionOptionComment
public void enterPartitionOptionComment(MySqlParser.PartitionOptionCommentContext ctx)
Enter a parse tree produced by thepartitionOptionCommentlabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
enterPartitionOptionCommentin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionOptionComment
public void exitPartitionOptionComment(MySqlParser.PartitionOptionCommentContext ctx)
Exit a parse tree produced by thepartitionOptionCommentlabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
exitPartitionOptionCommentin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionOptionDataDirectory
public void enterPartitionOptionDataDirectory(MySqlParser.PartitionOptionDataDirectoryContext ctx)
Enter a parse tree produced by thepartitionOptionDataDirectorylabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
enterPartitionOptionDataDirectoryin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionOptionDataDirectory
public void exitPartitionOptionDataDirectory(MySqlParser.PartitionOptionDataDirectoryContext ctx)
Exit a parse tree produced by thepartitionOptionDataDirectorylabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
exitPartitionOptionDataDirectoryin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionOptionIndexDirectory
public void enterPartitionOptionIndexDirectory(MySqlParser.PartitionOptionIndexDirectoryContext ctx)
Enter a parse tree produced by thepartitionOptionIndexDirectorylabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
enterPartitionOptionIndexDirectoryin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionOptionIndexDirectory
public void exitPartitionOptionIndexDirectory(MySqlParser.PartitionOptionIndexDirectoryContext ctx)
Exit a parse tree produced by thepartitionOptionIndexDirectorylabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
exitPartitionOptionIndexDirectoryin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionOptionMaxRows
public void enterPartitionOptionMaxRows(MySqlParser.PartitionOptionMaxRowsContext ctx)
Enter a parse tree produced by thepartitionOptionMaxRowslabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
enterPartitionOptionMaxRowsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionOptionMaxRows
public void exitPartitionOptionMaxRows(MySqlParser.PartitionOptionMaxRowsContext ctx)
Exit a parse tree produced by thepartitionOptionMaxRowslabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
exitPartitionOptionMaxRowsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionOptionMinRows
public void enterPartitionOptionMinRows(MySqlParser.PartitionOptionMinRowsContext ctx)
Enter a parse tree produced by thepartitionOptionMinRowslabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
enterPartitionOptionMinRowsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionOptionMinRows
public void exitPartitionOptionMinRows(MySqlParser.PartitionOptionMinRowsContext ctx)
Exit a parse tree produced by thepartitionOptionMinRowslabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
exitPartitionOptionMinRowsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionOptionTablespace
public void enterPartitionOptionTablespace(MySqlParser.PartitionOptionTablespaceContext ctx)
Enter a parse tree produced by thepartitionOptionTablespacelabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
enterPartitionOptionTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionOptionTablespace
public void exitPartitionOptionTablespace(MySqlParser.PartitionOptionTablespaceContext ctx)
Exit a parse tree produced by thepartitionOptionTablespacelabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
exitPartitionOptionTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPartitionOptionNodeGroup
public void enterPartitionOptionNodeGroup(MySqlParser.PartitionOptionNodeGroupContext ctx)
Enter a parse tree produced by thepartitionOptionNodeGrouplabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
enterPartitionOptionNodeGroupin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPartitionOptionNodeGroup
public void exitPartitionOptionNodeGroup(MySqlParser.PartitionOptionNodeGroupContext ctx)
Exit a parse tree produced by thepartitionOptionNodeGrouplabeled alternative inMySqlParser.partitionOption().The default implementation does nothing.
- Specified by:
exitPartitionOptionNodeGroupin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterSimpleDatabase
public void enterAlterSimpleDatabase(MySqlParser.AlterSimpleDatabaseContext ctx)
Enter a parse tree produced by thealterSimpleDatabaselabeled alternative inMySqlParser.alterDatabase().The default implementation does nothing.
- Specified by:
enterAlterSimpleDatabasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterSimpleDatabase
public void exitAlterSimpleDatabase(MySqlParser.AlterSimpleDatabaseContext ctx)
Exit a parse tree produced by thealterSimpleDatabaselabeled alternative inMySqlParser.alterDatabase().The default implementation does nothing.
- Specified by:
exitAlterSimpleDatabasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterUpgradeName
public void enterAlterUpgradeName(MySqlParser.AlterUpgradeNameContext ctx)
Enter a parse tree produced by thealterUpgradeNamelabeled alternative inMySqlParser.alterDatabase().The default implementation does nothing.
- Specified by:
enterAlterUpgradeNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterUpgradeName
public void exitAlterUpgradeName(MySqlParser.AlterUpgradeNameContext ctx)
Exit a parse tree produced by thealterUpgradeNamelabeled alternative inMySqlParser.alterDatabase().The default implementation does nothing.
- Specified by:
exitAlterUpgradeNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterEvent
public void enterAlterEvent(MySqlParser.AlterEventContext ctx)
Enter a parse tree produced byMySqlParser.alterEvent().The default implementation does nothing.
- Specified by:
enterAlterEventin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterEvent
public void exitAlterEvent(MySqlParser.AlterEventContext ctx)
Exit a parse tree produced byMySqlParser.alterEvent().The default implementation does nothing.
- Specified by:
exitAlterEventin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterFunction
public void enterAlterFunction(MySqlParser.AlterFunctionContext ctx)
Enter a parse tree produced byMySqlParser.alterFunction().The default implementation does nothing.
- Specified by:
enterAlterFunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterFunction
public void exitAlterFunction(MySqlParser.AlterFunctionContext ctx)
Exit a parse tree produced byMySqlParser.alterFunction().The default implementation does nothing.
- Specified by:
exitAlterFunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterInstance
public void enterAlterInstance(MySqlParser.AlterInstanceContext ctx)
Enter a parse tree produced byMySqlParser.alterInstance().The default implementation does nothing.
- Specified by:
enterAlterInstancein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterInstance
public void exitAlterInstance(MySqlParser.AlterInstanceContext ctx)
Exit a parse tree produced byMySqlParser.alterInstance().The default implementation does nothing.
- Specified by:
exitAlterInstancein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterLogfileGroup
public void enterAlterLogfileGroup(MySqlParser.AlterLogfileGroupContext ctx)
Enter a parse tree produced byMySqlParser.alterLogfileGroup().The default implementation does nothing.
- Specified by:
enterAlterLogfileGroupin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterLogfileGroup
public void exitAlterLogfileGroup(MySqlParser.AlterLogfileGroupContext ctx)
Exit a parse tree produced byMySqlParser.alterLogfileGroup().The default implementation does nothing.
- Specified by:
exitAlterLogfileGroupin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterProcedure
public void enterAlterProcedure(MySqlParser.AlterProcedureContext ctx)
Enter a parse tree produced byMySqlParser.alterProcedure().The default implementation does nothing.
- Specified by:
enterAlterProcedurein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterProcedure
public void exitAlterProcedure(MySqlParser.AlterProcedureContext ctx)
Exit a parse tree produced byMySqlParser.alterProcedure().The default implementation does nothing.
- Specified by:
exitAlterProcedurein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterServer
public void enterAlterServer(MySqlParser.AlterServerContext ctx)
Enter a parse tree produced byMySqlParser.alterServer().The default implementation does nothing.
- Specified by:
enterAlterServerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterServer
public void exitAlterServer(MySqlParser.AlterServerContext ctx)
Exit a parse tree produced byMySqlParser.alterServer().The default implementation does nothing.
- Specified by:
exitAlterServerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterTable
public void enterAlterTable(MySqlParser.AlterTableContext ctx)
Enter a parse tree produced byMySqlParser.alterTable().The default implementation does nothing.
- Specified by:
enterAlterTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterTable
public void exitAlterTable(MySqlParser.AlterTableContext ctx)
Exit a parse tree produced byMySqlParser.alterTable().The default implementation does nothing.
- Specified by:
exitAlterTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterTablespace
public void enterAlterTablespace(MySqlParser.AlterTablespaceContext ctx)
Enter a parse tree produced byMySqlParser.alterTablespace().The default implementation does nothing.
- Specified by:
enterAlterTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterTablespace
public void exitAlterTablespace(MySqlParser.AlterTablespaceContext ctx)
Exit a parse tree produced byMySqlParser.alterTablespace().The default implementation does nothing.
- Specified by:
exitAlterTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterView
public void enterAlterView(MySqlParser.AlterViewContext ctx)
Enter a parse tree produced byMySqlParser.alterView().The default implementation does nothing.
- Specified by:
enterAlterViewin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterView
public void exitAlterView(MySqlParser.AlterViewContext ctx)
Exit a parse tree produced byMySqlParser.alterView().The default implementation does nothing.
- Specified by:
exitAlterViewin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByTableOption
public void enterAlterByTableOption(MySqlParser.AlterByTableOptionContext ctx)
Enter a parse tree produced by thealterByTableOptionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByTableOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByTableOption
public void exitAlterByTableOption(MySqlParser.AlterByTableOptionContext ctx)
Exit a parse tree produced by thealterByTableOptionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByTableOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddColumn
public void enterAlterByAddColumn(MySqlParser.AlterByAddColumnContext ctx)
Enter a parse tree produced by thealterByAddColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddColumn
public void exitAlterByAddColumn(MySqlParser.AlterByAddColumnContext ctx)
Exit a parse tree produced by thealterByAddColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddColumns
public void enterAlterByAddColumns(MySqlParser.AlterByAddColumnsContext ctx)
Enter a parse tree produced by thealterByAddColumnslabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddColumnsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddColumns
public void exitAlterByAddColumns(MySqlParser.AlterByAddColumnsContext ctx)
Exit a parse tree produced by thealterByAddColumnslabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddColumnsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddIndex
public void enterAlterByAddIndex(MySqlParser.AlterByAddIndexContext ctx)
Enter a parse tree produced by thealterByAddIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddIndex
public void exitAlterByAddIndex(MySqlParser.AlterByAddIndexContext ctx)
Exit a parse tree produced by thealterByAddIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddPrimaryKey
public void enterAlterByAddPrimaryKey(MySqlParser.AlterByAddPrimaryKeyContext ctx)
Enter a parse tree produced by thealterByAddPrimaryKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddPrimaryKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddPrimaryKey
public void exitAlterByAddPrimaryKey(MySqlParser.AlterByAddPrimaryKeyContext ctx)
Exit a parse tree produced by thealterByAddPrimaryKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddPrimaryKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddUniqueKey
public void enterAlterByAddUniqueKey(MySqlParser.AlterByAddUniqueKeyContext ctx)
Enter a parse tree produced by thealterByAddUniqueKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddUniqueKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddUniqueKey
public void exitAlterByAddUniqueKey(MySqlParser.AlterByAddUniqueKeyContext ctx)
Exit a parse tree produced by thealterByAddUniqueKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddUniqueKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddSpecialIndex
public void enterAlterByAddSpecialIndex(MySqlParser.AlterByAddSpecialIndexContext ctx)
Enter a parse tree produced by thealterByAddSpecialIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddSpecialIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddSpecialIndex
public void exitAlterByAddSpecialIndex(MySqlParser.AlterByAddSpecialIndexContext ctx)
Exit a parse tree produced by thealterByAddSpecialIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddSpecialIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddForeignKey
public void enterAlterByAddForeignKey(MySqlParser.AlterByAddForeignKeyContext ctx)
Enter a parse tree produced by thealterByAddForeignKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddForeignKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddForeignKey
public void exitAlterByAddForeignKey(MySqlParser.AlterByAddForeignKeyContext ctx)
Exit a parse tree produced by thealterByAddForeignKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddForeignKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddCheckTableConstraint
public void enterAlterByAddCheckTableConstraint(MySqlParser.AlterByAddCheckTableConstraintContext ctx)
Enter a parse tree produced by thealterByAddCheckTableConstraintlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddCheckTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddCheckTableConstraint
public void exitAlterByAddCheckTableConstraint(MySqlParser.AlterByAddCheckTableConstraintContext ctx)
Exit a parse tree produced by thealterByAddCheckTableConstraintlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddCheckTableConstraintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterBySetAlgorithm
public void enterAlterBySetAlgorithm(MySqlParser.AlterBySetAlgorithmContext ctx)
Enter a parse tree produced by thealterBySetAlgorithmlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterBySetAlgorithmin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterBySetAlgorithm
public void exitAlterBySetAlgorithm(MySqlParser.AlterBySetAlgorithmContext ctx)
Exit a parse tree produced by thealterBySetAlgorithmlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterBySetAlgorithmin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByChangeDefault
public void enterAlterByChangeDefault(MySqlParser.AlterByChangeDefaultContext ctx)
Enter a parse tree produced by thealterByChangeDefaultlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByChangeDefaultin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByChangeDefault
public void exitAlterByChangeDefault(MySqlParser.AlterByChangeDefaultContext ctx)
Exit a parse tree produced by thealterByChangeDefaultlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByChangeDefaultin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByChangeColumn
public void enterAlterByChangeColumn(MySqlParser.AlterByChangeColumnContext ctx)
Enter a parse tree produced by thealterByChangeColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByChangeColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByChangeColumn
public void exitAlterByChangeColumn(MySqlParser.AlterByChangeColumnContext ctx)
Exit a parse tree produced by thealterByChangeColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByChangeColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByRenameColumn
public void enterAlterByRenameColumn(MySqlParser.AlterByRenameColumnContext ctx)
Enter a parse tree produced by thealterByRenameColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByRenameColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByRenameColumn
public void exitAlterByRenameColumn(MySqlParser.AlterByRenameColumnContext ctx)
Exit a parse tree produced by thealterByRenameColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByRenameColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByLock
public void enterAlterByLock(MySqlParser.AlterByLockContext ctx)
Enter a parse tree produced by thealterByLocklabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByLockin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByLock
public void exitAlterByLock(MySqlParser.AlterByLockContext ctx)
Exit a parse tree produced by thealterByLocklabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByLockin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByModifyColumn
public void enterAlterByModifyColumn(MySqlParser.AlterByModifyColumnContext ctx)
Enter a parse tree produced by thealterByModifyColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByModifyColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByModifyColumn
public void exitAlterByModifyColumn(MySqlParser.AlterByModifyColumnContext ctx)
Exit a parse tree produced by thealterByModifyColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByModifyColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDropColumn
public void enterAlterByDropColumn(MySqlParser.AlterByDropColumnContext ctx)
Enter a parse tree produced by thealterByDropColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDropColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDropColumn
public void exitAlterByDropColumn(MySqlParser.AlterByDropColumnContext ctx)
Exit a parse tree produced by thealterByDropColumnlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDropColumnin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDropConstraintCheck
public void enterAlterByDropConstraintCheck(MySqlParser.AlterByDropConstraintCheckContext ctx)
Enter a parse tree produced by thealterByDropConstraintChecklabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDropConstraintCheckin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDropConstraintCheck
public void exitAlterByDropConstraintCheck(MySqlParser.AlterByDropConstraintCheckContext ctx)
Exit a parse tree produced by thealterByDropConstraintChecklabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDropConstraintCheckin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDropPrimaryKey
public void enterAlterByDropPrimaryKey(MySqlParser.AlterByDropPrimaryKeyContext ctx)
Enter a parse tree produced by thealterByDropPrimaryKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDropPrimaryKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDropPrimaryKey
public void exitAlterByDropPrimaryKey(MySqlParser.AlterByDropPrimaryKeyContext ctx)
Exit a parse tree produced by thealterByDropPrimaryKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDropPrimaryKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDropIndex
public void enterAlterByDropIndex(MySqlParser.AlterByDropIndexContext ctx)
Enter a parse tree produced by thealterByDropIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDropIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDropIndex
public void exitAlterByDropIndex(MySqlParser.AlterByDropIndexContext ctx)
Exit a parse tree produced by thealterByDropIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDropIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByRenameIndex
public void enterAlterByRenameIndex(MySqlParser.AlterByRenameIndexContext ctx)
Enter a parse tree produced by thealterByRenameIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByRenameIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByRenameIndex
public void exitAlterByRenameIndex(MySqlParser.AlterByRenameIndexContext ctx)
Exit a parse tree produced by thealterByRenameIndexlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByRenameIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAlterIndexVisibility
public void enterAlterByAlterIndexVisibility(MySqlParser.AlterByAlterIndexVisibilityContext ctx)
Enter a parse tree produced by thealterByAlterIndexVisibilitylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAlterIndexVisibilityin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAlterIndexVisibility
public void exitAlterByAlterIndexVisibility(MySqlParser.AlterByAlterIndexVisibilityContext ctx)
Exit a parse tree produced by thealterByAlterIndexVisibilitylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAlterIndexVisibilityin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDropForeignKey
public void enterAlterByDropForeignKey(MySqlParser.AlterByDropForeignKeyContext ctx)
Enter a parse tree produced by thealterByDropForeignKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDropForeignKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDropForeignKey
public void exitAlterByDropForeignKey(MySqlParser.AlterByDropForeignKeyContext ctx)
Exit a parse tree produced by thealterByDropForeignKeylabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDropForeignKeyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDisableKeys
public void enterAlterByDisableKeys(MySqlParser.AlterByDisableKeysContext ctx)
Enter a parse tree produced by thealterByDisableKeyslabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDisableKeysin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDisableKeys
public void exitAlterByDisableKeys(MySqlParser.AlterByDisableKeysContext ctx)
Exit a parse tree produced by thealterByDisableKeyslabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDisableKeysin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByEnableKeys
public void enterAlterByEnableKeys(MySqlParser.AlterByEnableKeysContext ctx)
Enter a parse tree produced by thealterByEnableKeyslabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByEnableKeysin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByEnableKeys
public void exitAlterByEnableKeys(MySqlParser.AlterByEnableKeysContext ctx)
Exit a parse tree produced by thealterByEnableKeyslabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByEnableKeysin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByRename
public void enterAlterByRename(MySqlParser.AlterByRenameContext ctx)
Enter a parse tree produced by thealterByRenamelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByRenamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByRename
public void exitAlterByRename(MySqlParser.AlterByRenameContext ctx)
Exit a parse tree produced by thealterByRenamelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByRenamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByOrder
public void enterAlterByOrder(MySqlParser.AlterByOrderContext ctx)
Enter a parse tree produced by thealterByOrderlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByOrderin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByOrder
public void exitAlterByOrder(MySqlParser.AlterByOrderContext ctx)
Exit a parse tree produced by thealterByOrderlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByOrderin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByConvertCharset
public void enterAlterByConvertCharset(MySqlParser.AlterByConvertCharsetContext ctx)
Enter a parse tree produced by thealterByConvertCharsetlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByConvertCharsetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByConvertCharset
public void exitAlterByConvertCharset(MySqlParser.AlterByConvertCharsetContext ctx)
Exit a parse tree produced by thealterByConvertCharsetlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByConvertCharsetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDefaultCharset
public void enterAlterByDefaultCharset(MySqlParser.AlterByDefaultCharsetContext ctx)
Enter a parse tree produced by thealterByDefaultCharsetlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDefaultCharsetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDefaultCharset
public void exitAlterByDefaultCharset(MySqlParser.AlterByDefaultCharsetContext ctx)
Exit a parse tree produced by thealterByDefaultCharsetlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDefaultCharsetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDiscardTablespace
public void enterAlterByDiscardTablespace(MySqlParser.AlterByDiscardTablespaceContext ctx)
Enter a parse tree produced by thealterByDiscardTablespacelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDiscardTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDiscardTablespace
public void exitAlterByDiscardTablespace(MySqlParser.AlterByDiscardTablespaceContext ctx)
Exit a parse tree produced by thealterByDiscardTablespacelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDiscardTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByImportTablespace
public void enterAlterByImportTablespace(MySqlParser.AlterByImportTablespaceContext ctx)
Enter a parse tree produced by thealterByImportTablespacelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByImportTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByImportTablespace
public void exitAlterByImportTablespace(MySqlParser.AlterByImportTablespaceContext ctx)
Exit a parse tree produced by thealterByImportTablespacelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByImportTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByForce
public void enterAlterByForce(MySqlParser.AlterByForceContext ctx)
Enter a parse tree produced by thealterByForcelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByForcein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByForce
public void exitAlterByForce(MySqlParser.AlterByForceContext ctx)
Exit a parse tree produced by thealterByForcelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByForcein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByValidate
public void enterAlterByValidate(MySqlParser.AlterByValidateContext ctx)
Enter a parse tree produced by thealterByValidatelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByValidatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByValidate
public void exitAlterByValidate(MySqlParser.AlterByValidateContext ctx)
Exit a parse tree produced by thealterByValidatelabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByValidatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAddPartition
public void enterAlterByAddPartition(MySqlParser.AlterByAddPartitionContext ctx)
Enter a parse tree produced by thealterByAddPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAddPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAddPartition
public void exitAlterByAddPartition(MySqlParser.AlterByAddPartitionContext ctx)
Exit a parse tree produced by thealterByAddPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAddPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDropPartition
public void enterAlterByDropPartition(MySqlParser.AlterByDropPartitionContext ctx)
Enter a parse tree produced by thealterByDropPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDropPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDropPartition
public void exitAlterByDropPartition(MySqlParser.AlterByDropPartitionContext ctx)
Exit a parse tree produced by thealterByDropPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDropPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByDiscardPartition
public void enterAlterByDiscardPartition(MySqlParser.AlterByDiscardPartitionContext ctx)
Enter a parse tree produced by thealterByDiscardPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByDiscardPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByDiscardPartition
public void exitAlterByDiscardPartition(MySqlParser.AlterByDiscardPartitionContext ctx)
Exit a parse tree produced by thealterByDiscardPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByDiscardPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByImportPartition
public void enterAlterByImportPartition(MySqlParser.AlterByImportPartitionContext ctx)
Enter a parse tree produced by thealterByImportPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByImportPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByImportPartition
public void exitAlterByImportPartition(MySqlParser.AlterByImportPartitionContext ctx)
Exit a parse tree produced by thealterByImportPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByImportPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByTruncatePartition
public void enterAlterByTruncatePartition(MySqlParser.AlterByTruncatePartitionContext ctx)
Enter a parse tree produced by thealterByTruncatePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByTruncatePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByTruncatePartition
public void exitAlterByTruncatePartition(MySqlParser.AlterByTruncatePartitionContext ctx)
Exit a parse tree produced by thealterByTruncatePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByTruncatePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByCoalescePartition
public void enterAlterByCoalescePartition(MySqlParser.AlterByCoalescePartitionContext ctx)
Enter a parse tree produced by thealterByCoalescePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByCoalescePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByCoalescePartition
public void exitAlterByCoalescePartition(MySqlParser.AlterByCoalescePartitionContext ctx)
Exit a parse tree produced by thealterByCoalescePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByCoalescePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByReorganizePartition
public void enterAlterByReorganizePartition(MySqlParser.AlterByReorganizePartitionContext ctx)
Enter a parse tree produced by thealterByReorganizePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByReorganizePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByReorganizePartition
public void exitAlterByReorganizePartition(MySqlParser.AlterByReorganizePartitionContext ctx)
Exit a parse tree produced by thealterByReorganizePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByReorganizePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByExchangePartition
public void enterAlterByExchangePartition(MySqlParser.AlterByExchangePartitionContext ctx)
Enter a parse tree produced by thealterByExchangePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByExchangePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByExchangePartition
public void exitAlterByExchangePartition(MySqlParser.AlterByExchangePartitionContext ctx)
Exit a parse tree produced by thealterByExchangePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByExchangePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByAnalyzePartition
public void enterAlterByAnalyzePartition(MySqlParser.AlterByAnalyzePartitionContext ctx)
Enter a parse tree produced by thealterByAnalyzePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByAnalyzePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByAnalyzePartition
public void exitAlterByAnalyzePartition(MySqlParser.AlterByAnalyzePartitionContext ctx)
Exit a parse tree produced by thealterByAnalyzePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByAnalyzePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByCheckPartition
public void enterAlterByCheckPartition(MySqlParser.AlterByCheckPartitionContext ctx)
Enter a parse tree produced by thealterByCheckPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByCheckPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByCheckPartition
public void exitAlterByCheckPartition(MySqlParser.AlterByCheckPartitionContext ctx)
Exit a parse tree produced by thealterByCheckPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByCheckPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByOptimizePartition
public void enterAlterByOptimizePartition(MySqlParser.AlterByOptimizePartitionContext ctx)
Enter a parse tree produced by thealterByOptimizePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByOptimizePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByOptimizePartition
public void exitAlterByOptimizePartition(MySqlParser.AlterByOptimizePartitionContext ctx)
Exit a parse tree produced by thealterByOptimizePartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByOptimizePartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByRebuildPartition
public void enterAlterByRebuildPartition(MySqlParser.AlterByRebuildPartitionContext ctx)
Enter a parse tree produced by thealterByRebuildPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByRebuildPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByRebuildPartition
public void exitAlterByRebuildPartition(MySqlParser.AlterByRebuildPartitionContext ctx)
Exit a parse tree produced by thealterByRebuildPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByRebuildPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByRepairPartition
public void enterAlterByRepairPartition(MySqlParser.AlterByRepairPartitionContext ctx)
Enter a parse tree produced by thealterByRepairPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByRepairPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByRepairPartition
public void exitAlterByRepairPartition(MySqlParser.AlterByRepairPartitionContext ctx)
Exit a parse tree produced by thealterByRepairPartitionlabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByRepairPartitionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByRemovePartitioning
public void enterAlterByRemovePartitioning(MySqlParser.AlterByRemovePartitioningContext ctx)
Enter a parse tree produced by thealterByRemovePartitioninglabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByRemovePartitioningin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByRemovePartitioning
public void exitAlterByRemovePartitioning(MySqlParser.AlterByRemovePartitioningContext ctx)
Exit a parse tree produced by thealterByRemovePartitioninglabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByRemovePartitioningin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterByUpgradePartitioning
public void enterAlterByUpgradePartitioning(MySqlParser.AlterByUpgradePartitioningContext ctx)
Enter a parse tree produced by thealterByUpgradePartitioninglabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
enterAlterByUpgradePartitioningin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterByUpgradePartitioning
public void exitAlterByUpgradePartitioning(MySqlParser.AlterByUpgradePartitioningContext ctx)
Exit a parse tree produced by thealterByUpgradePartitioninglabeled alternative inMySqlParser.alterSpecification().The default implementation does nothing.
- Specified by:
exitAlterByUpgradePartitioningin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropDatabase
public void enterDropDatabase(MySqlParser.DropDatabaseContext ctx)
Enter a parse tree produced byMySqlParser.dropDatabase().The default implementation does nothing.
- Specified by:
enterDropDatabasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropDatabase
public void exitDropDatabase(MySqlParser.DropDatabaseContext ctx)
Exit a parse tree produced byMySqlParser.dropDatabase().The default implementation does nothing.
- Specified by:
exitDropDatabasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropEvent
public void enterDropEvent(MySqlParser.DropEventContext ctx)
Enter a parse tree produced byMySqlParser.dropEvent().The default implementation does nothing.
- Specified by:
enterDropEventin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropEvent
public void exitDropEvent(MySqlParser.DropEventContext ctx)
Exit a parse tree produced byMySqlParser.dropEvent().The default implementation does nothing.
- Specified by:
exitDropEventin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropIndex
public void enterDropIndex(MySqlParser.DropIndexContext ctx)
Enter a parse tree produced byMySqlParser.dropIndex().The default implementation does nothing.
- Specified by:
enterDropIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropIndex
public void exitDropIndex(MySqlParser.DropIndexContext ctx)
Exit a parse tree produced byMySqlParser.dropIndex().The default implementation does nothing.
- Specified by:
exitDropIndexin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropLogfileGroup
public void enterDropLogfileGroup(MySqlParser.DropLogfileGroupContext ctx)
Enter a parse tree produced byMySqlParser.dropLogfileGroup().The default implementation does nothing.
- Specified by:
enterDropLogfileGroupin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropLogfileGroup
public void exitDropLogfileGroup(MySqlParser.DropLogfileGroupContext ctx)
Exit a parse tree produced byMySqlParser.dropLogfileGroup().The default implementation does nothing.
- Specified by:
exitDropLogfileGroupin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropProcedure
public void enterDropProcedure(MySqlParser.DropProcedureContext ctx)
Enter a parse tree produced byMySqlParser.dropProcedure().The default implementation does nothing.
- Specified by:
enterDropProcedurein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropProcedure
public void exitDropProcedure(MySqlParser.DropProcedureContext ctx)
Exit a parse tree produced byMySqlParser.dropProcedure().The default implementation does nothing.
- Specified by:
exitDropProcedurein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropFunction
public void enterDropFunction(MySqlParser.DropFunctionContext ctx)
Enter a parse tree produced byMySqlParser.dropFunction().The default implementation does nothing.
- Specified by:
enterDropFunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropFunction
public void exitDropFunction(MySqlParser.DropFunctionContext ctx)
Exit a parse tree produced byMySqlParser.dropFunction().The default implementation does nothing.
- Specified by:
exitDropFunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropServer
public void enterDropServer(MySqlParser.DropServerContext ctx)
Enter a parse tree produced byMySqlParser.dropServer().The default implementation does nothing.
- Specified by:
enterDropServerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropServer
public void exitDropServer(MySqlParser.DropServerContext ctx)
Exit a parse tree produced byMySqlParser.dropServer().The default implementation does nothing.
- Specified by:
exitDropServerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropTable
public void enterDropTable(MySqlParser.DropTableContext ctx)
Enter a parse tree produced byMySqlParser.dropTable().The default implementation does nothing.
- Specified by:
enterDropTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropTable
public void exitDropTable(MySqlParser.DropTableContext ctx)
Exit a parse tree produced byMySqlParser.dropTable().The default implementation does nothing.
- Specified by:
exitDropTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropTablespace
public void enterDropTablespace(MySqlParser.DropTablespaceContext ctx)
Enter a parse tree produced byMySqlParser.dropTablespace().The default implementation does nothing.
- Specified by:
enterDropTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropTablespace
public void exitDropTablespace(MySqlParser.DropTablespaceContext ctx)
Exit a parse tree produced byMySqlParser.dropTablespace().The default implementation does nothing.
- Specified by:
exitDropTablespacein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropTrigger
public void enterDropTrigger(MySqlParser.DropTriggerContext ctx)
Enter a parse tree produced byMySqlParser.dropTrigger().The default implementation does nothing.
- Specified by:
enterDropTriggerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropTrigger
public void exitDropTrigger(MySqlParser.DropTriggerContext ctx)
Exit a parse tree produced byMySqlParser.dropTrigger().The default implementation does nothing.
- Specified by:
exitDropTriggerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropView
public void enterDropView(MySqlParser.DropViewContext ctx)
Enter a parse tree produced byMySqlParser.dropView().The default implementation does nothing.
- Specified by:
enterDropViewin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropView
public void exitDropView(MySqlParser.DropViewContext ctx)
Exit a parse tree produced byMySqlParser.dropView().The default implementation does nothing.
- Specified by:
exitDropViewin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRenameTable
public void enterRenameTable(MySqlParser.RenameTableContext ctx)
Enter a parse tree produced byMySqlParser.renameTable().The default implementation does nothing.
- Specified by:
enterRenameTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRenameTable
public void exitRenameTable(MySqlParser.RenameTableContext ctx)
Exit a parse tree produced byMySqlParser.renameTable().The default implementation does nothing.
- Specified by:
exitRenameTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRenameTableClause
public void enterRenameTableClause(MySqlParser.RenameTableClauseContext ctx)
Enter a parse tree produced byMySqlParser.renameTableClause().The default implementation does nothing.
- Specified by:
enterRenameTableClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRenameTableClause
public void exitRenameTableClause(MySqlParser.RenameTableClauseContext ctx)
Exit a parse tree produced byMySqlParser.renameTableClause().The default implementation does nothing.
- Specified by:
exitRenameTableClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTruncateTable
public void enterTruncateTable(MySqlParser.TruncateTableContext ctx)
Enter a parse tree produced byMySqlParser.truncateTable().The default implementation does nothing.
- Specified by:
enterTruncateTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTruncateTable
public void exitTruncateTable(MySqlParser.TruncateTableContext ctx)
Exit a parse tree produced byMySqlParser.truncateTable().The default implementation does nothing.
- Specified by:
exitTruncateTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCallStatement
public void enterCallStatement(MySqlParser.CallStatementContext ctx)
Enter a parse tree produced byMySqlParser.callStatement().The default implementation does nothing.
- Specified by:
enterCallStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCallStatement
public void exitCallStatement(MySqlParser.CallStatementContext ctx)
Exit a parse tree produced byMySqlParser.callStatement().The default implementation does nothing.
- Specified by:
exitCallStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDeleteStatement
public void enterDeleteStatement(MySqlParser.DeleteStatementContext ctx)
Enter a parse tree produced byMySqlParser.deleteStatement().The default implementation does nothing.
- Specified by:
enterDeleteStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDeleteStatement
public void exitDeleteStatement(MySqlParser.DeleteStatementContext ctx)
Exit a parse tree produced byMySqlParser.deleteStatement().The default implementation does nothing.
- Specified by:
exitDeleteStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDoStatement
public void enterDoStatement(MySqlParser.DoStatementContext ctx)
Enter a parse tree produced byMySqlParser.doStatement().The default implementation does nothing.
- Specified by:
enterDoStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDoStatement
public void exitDoStatement(MySqlParser.DoStatementContext ctx)
Exit a parse tree produced byMySqlParser.doStatement().The default implementation does nothing.
- Specified by:
exitDoStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerStatement
public void enterHandlerStatement(MySqlParser.HandlerStatementContext ctx)
Enter a parse tree produced byMySqlParser.handlerStatement().The default implementation does nothing.
- Specified by:
enterHandlerStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerStatement
public void exitHandlerStatement(MySqlParser.HandlerStatementContext ctx)
Exit a parse tree produced byMySqlParser.handlerStatement().The default implementation does nothing.
- Specified by:
exitHandlerStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterInsertStatement
public void enterInsertStatement(MySqlParser.InsertStatementContext ctx)
Enter a parse tree produced byMySqlParser.insertStatement().The default implementation does nothing.
- Specified by:
enterInsertStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitInsertStatement
public void exitInsertStatement(MySqlParser.InsertStatementContext ctx)
Exit a parse tree produced byMySqlParser.insertStatement().The default implementation does nothing.
- Specified by:
exitInsertStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLoadDataStatement
public void enterLoadDataStatement(MySqlParser.LoadDataStatementContext ctx)
Enter a parse tree produced byMySqlParser.loadDataStatement().The default implementation does nothing.
- Specified by:
enterLoadDataStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLoadDataStatement
public void exitLoadDataStatement(MySqlParser.LoadDataStatementContext ctx)
Exit a parse tree produced byMySqlParser.loadDataStatement().The default implementation does nothing.
- Specified by:
exitLoadDataStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLoadXmlStatement
public void enterLoadXmlStatement(MySqlParser.LoadXmlStatementContext ctx)
Enter a parse tree produced byMySqlParser.loadXmlStatement().The default implementation does nothing.
- Specified by:
enterLoadXmlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLoadXmlStatement
public void exitLoadXmlStatement(MySqlParser.LoadXmlStatementContext ctx)
Exit a parse tree produced byMySqlParser.loadXmlStatement().The default implementation does nothing.
- Specified by:
exitLoadXmlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterReplaceStatement
public void enterReplaceStatement(MySqlParser.ReplaceStatementContext ctx)
Enter a parse tree produced byMySqlParser.replaceStatement().The default implementation does nothing.
- Specified by:
enterReplaceStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitReplaceStatement
public void exitReplaceStatement(MySqlParser.ReplaceStatementContext ctx)
Exit a parse tree produced byMySqlParser.replaceStatement().The default implementation does nothing.
- Specified by:
exitReplaceStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleSelect
public void enterSimpleSelect(MySqlParser.SimpleSelectContext ctx)
Enter a parse tree produced by thesimpleSelectlabeled alternative inMySqlParser.selectStatement().The default implementation does nothing.
- Specified by:
enterSimpleSelectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleSelect
public void exitSimpleSelect(MySqlParser.SimpleSelectContext ctx)
Exit a parse tree produced by thesimpleSelectlabeled alternative inMySqlParser.selectStatement().The default implementation does nothing.
- Specified by:
exitSimpleSelectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterParenthesisSelect
public void enterParenthesisSelect(MySqlParser.ParenthesisSelectContext ctx)
Enter a parse tree produced by theparenthesisSelectlabeled alternative inMySqlParser.selectStatement().The default implementation does nothing.
- Specified by:
enterParenthesisSelectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitParenthesisSelect
public void exitParenthesisSelect(MySqlParser.ParenthesisSelectContext ctx)
Exit a parse tree produced by theparenthesisSelectlabeled alternative inMySqlParser.selectStatement().The default implementation does nothing.
- Specified by:
exitParenthesisSelectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUnionSelect
public void enterUnionSelect(MySqlParser.UnionSelectContext ctx)
Enter a parse tree produced by theunionSelectlabeled alternative inMySqlParser.selectStatement().The default implementation does nothing.
- Specified by:
enterUnionSelectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUnionSelect
public void exitUnionSelect(MySqlParser.UnionSelectContext ctx)
Exit a parse tree produced by theunionSelectlabeled alternative inMySqlParser.selectStatement().The default implementation does nothing.
- Specified by:
exitUnionSelectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUnionParenthesisSelect
public void enterUnionParenthesisSelect(MySqlParser.UnionParenthesisSelectContext ctx)
Enter a parse tree produced by theunionParenthesisSelectlabeled alternative inMySqlParser.selectStatement().The default implementation does nothing.
- Specified by:
enterUnionParenthesisSelectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUnionParenthesisSelect
public void exitUnionParenthesisSelect(MySqlParser.UnionParenthesisSelectContext ctx)
Exit a parse tree produced by theunionParenthesisSelectlabeled alternative inMySqlParser.selectStatement().The default implementation does nothing.
- Specified by:
exitUnionParenthesisSelectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUpdateStatement
public void enterUpdateStatement(MySqlParser.UpdateStatementContext ctx)
Enter a parse tree produced byMySqlParser.updateStatement().The default implementation does nothing.
- Specified by:
enterUpdateStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUpdateStatement
public void exitUpdateStatement(MySqlParser.UpdateStatementContext ctx)
Exit a parse tree produced byMySqlParser.updateStatement().The default implementation does nothing.
- Specified by:
exitUpdateStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterInsertStatementValue
public void enterInsertStatementValue(MySqlParser.InsertStatementValueContext ctx)
Enter a parse tree produced byMySqlParser.insertStatementValue().The default implementation does nothing.
- Specified by:
enterInsertStatementValuein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitInsertStatementValue
public void exitInsertStatementValue(MySqlParser.InsertStatementValueContext ctx)
Exit a parse tree produced byMySqlParser.insertStatementValue().The default implementation does nothing.
- Specified by:
exitInsertStatementValuein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUpdatedElement
public void enterUpdatedElement(MySqlParser.UpdatedElementContext ctx)
Enter a parse tree produced byMySqlParser.updatedElement().The default implementation does nothing.
- Specified by:
enterUpdatedElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUpdatedElement
public void exitUpdatedElement(MySqlParser.UpdatedElementContext ctx)
Exit a parse tree produced byMySqlParser.updatedElement().The default implementation does nothing.
- Specified by:
exitUpdatedElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAssignmentField
public void enterAssignmentField(MySqlParser.AssignmentFieldContext ctx)
Enter a parse tree produced byMySqlParser.assignmentField().The default implementation does nothing.
- Specified by:
enterAssignmentFieldin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAssignmentField
public void exitAssignmentField(MySqlParser.AssignmentFieldContext ctx)
Exit a parse tree produced byMySqlParser.assignmentField().The default implementation does nothing.
- Specified by:
exitAssignmentFieldin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLockClause
public void enterLockClause(MySqlParser.LockClauseContext ctx)
Enter a parse tree produced byMySqlParser.lockClause().The default implementation does nothing.
- Specified by:
enterLockClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLockClause
public void exitLockClause(MySqlParser.LockClauseContext ctx)
Exit a parse tree produced byMySqlParser.lockClause().The default implementation does nothing.
- Specified by:
exitLockClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSingleDeleteStatement
public void enterSingleDeleteStatement(MySqlParser.SingleDeleteStatementContext ctx)
Enter a parse tree produced byMySqlParser.singleDeleteStatement().The default implementation does nothing.
- Specified by:
enterSingleDeleteStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSingleDeleteStatement
public void exitSingleDeleteStatement(MySqlParser.SingleDeleteStatementContext ctx)
Exit a parse tree produced byMySqlParser.singleDeleteStatement().The default implementation does nothing.
- Specified by:
exitSingleDeleteStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMultipleDeleteStatement
public void enterMultipleDeleteStatement(MySqlParser.MultipleDeleteStatementContext ctx)
Enter a parse tree produced byMySqlParser.multipleDeleteStatement().The default implementation does nothing.
- Specified by:
enterMultipleDeleteStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMultipleDeleteStatement
public void exitMultipleDeleteStatement(MySqlParser.MultipleDeleteStatementContext ctx)
Exit a parse tree produced byMySqlParser.multipleDeleteStatement().The default implementation does nothing.
- Specified by:
exitMultipleDeleteStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerOpenStatement
public void enterHandlerOpenStatement(MySqlParser.HandlerOpenStatementContext ctx)
Enter a parse tree produced byMySqlParser.handlerOpenStatement().The default implementation does nothing.
- Specified by:
enterHandlerOpenStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerOpenStatement
public void exitHandlerOpenStatement(MySqlParser.HandlerOpenStatementContext ctx)
Exit a parse tree produced byMySqlParser.handlerOpenStatement().The default implementation does nothing.
- Specified by:
exitHandlerOpenStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerReadIndexStatement
public void enterHandlerReadIndexStatement(MySqlParser.HandlerReadIndexStatementContext ctx)
Enter a parse tree produced byMySqlParser.handlerReadIndexStatement().The default implementation does nothing.
- Specified by:
enterHandlerReadIndexStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerReadIndexStatement
public void exitHandlerReadIndexStatement(MySqlParser.HandlerReadIndexStatementContext ctx)
Exit a parse tree produced byMySqlParser.handlerReadIndexStatement().The default implementation does nothing.
- Specified by:
exitHandlerReadIndexStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerReadStatement
public void enterHandlerReadStatement(MySqlParser.HandlerReadStatementContext ctx)
Enter a parse tree produced byMySqlParser.handlerReadStatement().The default implementation does nothing.
- Specified by:
enterHandlerReadStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerReadStatement
public void exitHandlerReadStatement(MySqlParser.HandlerReadStatementContext ctx)
Exit a parse tree produced byMySqlParser.handlerReadStatement().The default implementation does nothing.
- Specified by:
exitHandlerReadStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerCloseStatement
public void enterHandlerCloseStatement(MySqlParser.HandlerCloseStatementContext ctx)
Enter a parse tree produced byMySqlParser.handlerCloseStatement().The default implementation does nothing.
- Specified by:
enterHandlerCloseStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerCloseStatement
public void exitHandlerCloseStatement(MySqlParser.HandlerCloseStatementContext ctx)
Exit a parse tree produced byMySqlParser.handlerCloseStatement().The default implementation does nothing.
- Specified by:
exitHandlerCloseStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSingleUpdateStatement
public void enterSingleUpdateStatement(MySqlParser.SingleUpdateStatementContext ctx)
Enter a parse tree produced byMySqlParser.singleUpdateStatement().The default implementation does nothing.
- Specified by:
enterSingleUpdateStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSingleUpdateStatement
public void exitSingleUpdateStatement(MySqlParser.SingleUpdateStatementContext ctx)
Exit a parse tree produced byMySqlParser.singleUpdateStatement().The default implementation does nothing.
- Specified by:
exitSingleUpdateStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMultipleUpdateStatement
public void enterMultipleUpdateStatement(MySqlParser.MultipleUpdateStatementContext ctx)
Enter a parse tree produced byMySqlParser.multipleUpdateStatement().The default implementation does nothing.
- Specified by:
enterMultipleUpdateStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMultipleUpdateStatement
public void exitMultipleUpdateStatement(MySqlParser.MultipleUpdateStatementContext ctx)
Exit a parse tree produced byMySqlParser.multipleUpdateStatement().The default implementation does nothing.
- Specified by:
exitMultipleUpdateStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterOrderByClause
public void enterOrderByClause(MySqlParser.OrderByClauseContext ctx)
Enter a parse tree produced byMySqlParser.orderByClause().The default implementation does nothing.
- Specified by:
enterOrderByClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitOrderByClause
public void exitOrderByClause(MySqlParser.OrderByClauseContext ctx)
Exit a parse tree produced byMySqlParser.orderByClause().The default implementation does nothing.
- Specified by:
exitOrderByClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterOrderByExpression
public void enterOrderByExpression(MySqlParser.OrderByExpressionContext ctx)
Enter a parse tree produced byMySqlParser.orderByExpression().The default implementation does nothing.
- Specified by:
enterOrderByExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitOrderByExpression
public void exitOrderByExpression(MySqlParser.OrderByExpressionContext ctx)
Exit a parse tree produced byMySqlParser.orderByExpression().The default implementation does nothing.
- Specified by:
exitOrderByExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableSources
public void enterTableSources(MySqlParser.TableSourcesContext ctx)
Enter a parse tree produced byMySqlParser.tableSources().The default implementation does nothing.
- Specified by:
enterTableSourcesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableSources
public void exitTableSources(MySqlParser.TableSourcesContext ctx)
Exit a parse tree produced byMySqlParser.tableSources().The default implementation does nothing.
- Specified by:
exitTableSourcesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableSourceBase
public void enterTableSourceBase(MySqlParser.TableSourceBaseContext ctx)
Enter a parse tree produced by thetableSourceBaselabeled alternative inMySqlParser.tableSource().The default implementation does nothing.
- Specified by:
enterTableSourceBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableSourceBase
public void exitTableSourceBase(MySqlParser.TableSourceBaseContext ctx)
Exit a parse tree produced by thetableSourceBaselabeled alternative inMySqlParser.tableSource().The default implementation does nothing.
- Specified by:
exitTableSourceBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableSourceNested
public void enterTableSourceNested(MySqlParser.TableSourceNestedContext ctx)
Enter a parse tree produced by thetableSourceNestedlabeled alternative inMySqlParser.tableSource().The default implementation does nothing.
- Specified by:
enterTableSourceNestedin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableSourceNested
public void exitTableSourceNested(MySqlParser.TableSourceNestedContext ctx)
Exit a parse tree produced by thetableSourceNestedlabeled alternative inMySqlParser.tableSource().The default implementation does nothing.
- Specified by:
exitTableSourceNestedin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAtomTableItem
public void enterAtomTableItem(MySqlParser.AtomTableItemContext ctx)
Enter a parse tree produced by theatomTableItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation does nothing.
- Specified by:
enterAtomTableItemin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAtomTableItem
public void exitAtomTableItem(MySqlParser.AtomTableItemContext ctx)
Exit a parse tree produced by theatomTableItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation does nothing.
- Specified by:
exitAtomTableItemin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSubqueryTableItem
public void enterSubqueryTableItem(MySqlParser.SubqueryTableItemContext ctx)
Enter a parse tree produced by thesubqueryTableItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation does nothing.
- Specified by:
enterSubqueryTableItemin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSubqueryTableItem
public void exitSubqueryTableItem(MySqlParser.SubqueryTableItemContext ctx)
Exit a parse tree produced by thesubqueryTableItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation does nothing.
- Specified by:
exitSubqueryTableItemin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableSourcesItem
public void enterTableSourcesItem(MySqlParser.TableSourcesItemContext ctx)
Enter a parse tree produced by thetableSourcesItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation does nothing.
- Specified by:
enterTableSourcesItemin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableSourcesItem
public void exitTableSourcesItem(MySqlParser.TableSourcesItemContext ctx)
Exit a parse tree produced by thetableSourcesItemlabeled alternative inMySqlParser.tableSourceItem().The default implementation does nothing.
- Specified by:
exitTableSourcesItemin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIndexHint
public void enterIndexHint(MySqlParser.IndexHintContext ctx)
Enter a parse tree produced byMySqlParser.indexHint().The default implementation does nothing.
- Specified by:
enterIndexHintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIndexHint
public void exitIndexHint(MySqlParser.IndexHintContext ctx)
Exit a parse tree produced byMySqlParser.indexHint().The default implementation does nothing.
- Specified by:
exitIndexHintin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIndexHintType
public void enterIndexHintType(MySqlParser.IndexHintTypeContext ctx)
Enter a parse tree produced byMySqlParser.indexHintType().The default implementation does nothing.
- Specified by:
enterIndexHintTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIndexHintType
public void exitIndexHintType(MySqlParser.IndexHintTypeContext ctx)
Exit a parse tree produced byMySqlParser.indexHintType().The default implementation does nothing.
- Specified by:
exitIndexHintTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterInnerJoin
public void enterInnerJoin(MySqlParser.InnerJoinContext ctx)
Enter a parse tree produced by theinnerJoinlabeled alternative inMySqlParser.joinPart().The default implementation does nothing.
- Specified by:
enterInnerJoinin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitInnerJoin
public void exitInnerJoin(MySqlParser.InnerJoinContext ctx)
Exit a parse tree produced by theinnerJoinlabeled alternative inMySqlParser.joinPart().The default implementation does nothing.
- Specified by:
exitInnerJoinin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStraightJoin
public void enterStraightJoin(MySqlParser.StraightJoinContext ctx)
Enter a parse tree produced by thestraightJoinlabeled alternative inMySqlParser.joinPart().The default implementation does nothing.
- Specified by:
enterStraightJoinin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStraightJoin
public void exitStraightJoin(MySqlParser.StraightJoinContext ctx)
Exit a parse tree produced by thestraightJoinlabeled alternative inMySqlParser.joinPart().The default implementation does nothing.
- Specified by:
exitStraightJoinin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterOuterJoin
public void enterOuterJoin(MySqlParser.OuterJoinContext ctx)
Enter a parse tree produced by theouterJoinlabeled alternative inMySqlParser.joinPart().The default implementation does nothing.
- Specified by:
enterOuterJoinin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitOuterJoin
public void exitOuterJoin(MySqlParser.OuterJoinContext ctx)
Exit a parse tree produced by theouterJoinlabeled alternative inMySqlParser.joinPart().The default implementation does nothing.
- Specified by:
exitOuterJoinin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterNaturalJoin
public void enterNaturalJoin(MySqlParser.NaturalJoinContext ctx)
Enter a parse tree produced by thenaturalJoinlabeled alternative inMySqlParser.joinPart().The default implementation does nothing.
- Specified by:
enterNaturalJoinin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitNaturalJoin
public void exitNaturalJoin(MySqlParser.NaturalJoinContext ctx)
Exit a parse tree produced by thenaturalJoinlabeled alternative inMySqlParser.joinPart().The default implementation does nothing.
- Specified by:
exitNaturalJoinin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterQueryExpression
public void enterQueryExpression(MySqlParser.QueryExpressionContext ctx)
Enter a parse tree produced byMySqlParser.queryExpression().The default implementation does nothing.
- Specified by:
enterQueryExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitQueryExpression
public void exitQueryExpression(MySqlParser.QueryExpressionContext ctx)
Exit a parse tree produced byMySqlParser.queryExpression().The default implementation does nothing.
- Specified by:
exitQueryExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterQueryExpressionNointo
public void enterQueryExpressionNointo(MySqlParser.QueryExpressionNointoContext ctx)
Enter a parse tree produced byMySqlParser.queryExpressionNointo().The default implementation does nothing.
- Specified by:
enterQueryExpressionNointoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitQueryExpressionNointo
public void exitQueryExpressionNointo(MySqlParser.QueryExpressionNointoContext ctx)
Exit a parse tree produced byMySqlParser.queryExpressionNointo().The default implementation does nothing.
- Specified by:
exitQueryExpressionNointoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterQuerySpecification
public void enterQuerySpecification(MySqlParser.QuerySpecificationContext ctx)
Enter a parse tree produced byMySqlParser.querySpecification().The default implementation does nothing.
- Specified by:
enterQuerySpecificationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitQuerySpecification
public void exitQuerySpecification(MySqlParser.QuerySpecificationContext ctx)
Exit a parse tree produced byMySqlParser.querySpecification().The default implementation does nothing.
- Specified by:
exitQuerySpecificationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterQuerySpecificationNointo
public void enterQuerySpecificationNointo(MySqlParser.QuerySpecificationNointoContext ctx)
Enter a parse tree produced byMySqlParser.querySpecificationNointo().The default implementation does nothing.
- Specified by:
enterQuerySpecificationNointoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitQuerySpecificationNointo
public void exitQuerySpecificationNointo(MySqlParser.QuerySpecificationNointoContext ctx)
Exit a parse tree produced byMySqlParser.querySpecificationNointo().The default implementation does nothing.
- Specified by:
exitQuerySpecificationNointoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUnionParenthesis
public void enterUnionParenthesis(MySqlParser.UnionParenthesisContext ctx)
Enter a parse tree produced byMySqlParser.unionParenthesis().The default implementation does nothing.
- Specified by:
enterUnionParenthesisin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUnionParenthesis
public void exitUnionParenthesis(MySqlParser.UnionParenthesisContext ctx)
Exit a parse tree produced byMySqlParser.unionParenthesis().The default implementation does nothing.
- Specified by:
exitUnionParenthesisin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUnionStatement
public void enterUnionStatement(MySqlParser.UnionStatementContext ctx)
Enter a parse tree produced byMySqlParser.unionStatement().The default implementation does nothing.
- Specified by:
enterUnionStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUnionStatement
public void exitUnionStatement(MySqlParser.UnionStatementContext ctx)
Exit a parse tree produced byMySqlParser.unionStatement().The default implementation does nothing.
- Specified by:
exitUnionStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectSpec
public void enterSelectSpec(MySqlParser.SelectSpecContext ctx)
Enter a parse tree produced byMySqlParser.selectSpec().The default implementation does nothing.
- Specified by:
enterSelectSpecin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectSpec
public void exitSelectSpec(MySqlParser.SelectSpecContext ctx)
Exit a parse tree produced byMySqlParser.selectSpec().The default implementation does nothing.
- Specified by:
exitSelectSpecin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectElements
public void enterSelectElements(MySqlParser.SelectElementsContext ctx)
Enter a parse tree produced byMySqlParser.selectElements().The default implementation does nothing.
- Specified by:
enterSelectElementsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectElements
public void exitSelectElements(MySqlParser.SelectElementsContext ctx)
Exit a parse tree produced byMySqlParser.selectElements().The default implementation does nothing.
- Specified by:
exitSelectElementsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectStarElement
public void enterSelectStarElement(MySqlParser.SelectStarElementContext ctx)
Enter a parse tree produced by theselectStarElementlabeled alternative inMySqlParser.selectElement().The default implementation does nothing.
- Specified by:
enterSelectStarElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectStarElement
public void exitSelectStarElement(MySqlParser.SelectStarElementContext ctx)
Exit a parse tree produced by theselectStarElementlabeled alternative inMySqlParser.selectElement().The default implementation does nothing.
- Specified by:
exitSelectStarElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectColumnElement
public void enterSelectColumnElement(MySqlParser.SelectColumnElementContext ctx)
Enter a parse tree produced by theselectColumnElementlabeled alternative inMySqlParser.selectElement().The default implementation does nothing.
- Specified by:
enterSelectColumnElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectColumnElement
public void exitSelectColumnElement(MySqlParser.SelectColumnElementContext ctx)
Exit a parse tree produced by theselectColumnElementlabeled alternative inMySqlParser.selectElement().The default implementation does nothing.
- Specified by:
exitSelectColumnElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectFunctionElement
public void enterSelectFunctionElement(MySqlParser.SelectFunctionElementContext ctx)
Enter a parse tree produced by theselectFunctionElementlabeled alternative inMySqlParser.selectElement().The default implementation does nothing.
- Specified by:
enterSelectFunctionElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectFunctionElement
public void exitSelectFunctionElement(MySqlParser.SelectFunctionElementContext ctx)
Exit a parse tree produced by theselectFunctionElementlabeled alternative inMySqlParser.selectElement().The default implementation does nothing.
- Specified by:
exitSelectFunctionElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectExpressionElement
public void enterSelectExpressionElement(MySqlParser.SelectExpressionElementContext ctx)
Enter a parse tree produced by theselectExpressionElementlabeled alternative inMySqlParser.selectElement().The default implementation does nothing.
- Specified by:
enterSelectExpressionElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectExpressionElement
public void exitSelectExpressionElement(MySqlParser.SelectExpressionElementContext ctx)
Exit a parse tree produced by theselectExpressionElementlabeled alternative inMySqlParser.selectElement().The default implementation does nothing.
- Specified by:
exitSelectExpressionElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectIntoVariables
public void enterSelectIntoVariables(MySqlParser.SelectIntoVariablesContext ctx)
Enter a parse tree produced by theselectIntoVariableslabeled alternative inMySqlParser.selectIntoExpression().The default implementation does nothing.
- Specified by:
enterSelectIntoVariablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectIntoVariables
public void exitSelectIntoVariables(MySqlParser.SelectIntoVariablesContext ctx)
Exit a parse tree produced by theselectIntoVariableslabeled alternative inMySqlParser.selectIntoExpression().The default implementation does nothing.
- Specified by:
exitSelectIntoVariablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectIntoDumpFile
public void enterSelectIntoDumpFile(MySqlParser.SelectIntoDumpFileContext ctx)
Enter a parse tree produced by theselectIntoDumpFilelabeled alternative inMySqlParser.selectIntoExpression().The default implementation does nothing.
- Specified by:
enterSelectIntoDumpFilein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectIntoDumpFile
public void exitSelectIntoDumpFile(MySqlParser.SelectIntoDumpFileContext ctx)
Exit a parse tree produced by theselectIntoDumpFilelabeled alternative inMySqlParser.selectIntoExpression().The default implementation does nothing.
- Specified by:
exitSelectIntoDumpFilein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectIntoTextFile
public void enterSelectIntoTextFile(MySqlParser.SelectIntoTextFileContext ctx)
Enter a parse tree produced by theselectIntoTextFilelabeled alternative inMySqlParser.selectIntoExpression().The default implementation does nothing.
- Specified by:
enterSelectIntoTextFilein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectIntoTextFile
public void exitSelectIntoTextFile(MySqlParser.SelectIntoTextFileContext ctx)
Exit a parse tree produced by theselectIntoTextFilelabeled alternative inMySqlParser.selectIntoExpression().The default implementation does nothing.
- Specified by:
exitSelectIntoTextFilein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectFieldsInto
public void enterSelectFieldsInto(MySqlParser.SelectFieldsIntoContext ctx)
Enter a parse tree produced byMySqlParser.selectFieldsInto().The default implementation does nothing.
- Specified by:
enterSelectFieldsIntoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectFieldsInto
public void exitSelectFieldsInto(MySqlParser.SelectFieldsIntoContext ctx)
Exit a parse tree produced byMySqlParser.selectFieldsInto().The default implementation does nothing.
- Specified by:
exitSelectFieldsIntoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSelectLinesInto
public void enterSelectLinesInto(MySqlParser.SelectLinesIntoContext ctx)
Enter a parse tree produced byMySqlParser.selectLinesInto().The default implementation does nothing.
- Specified by:
enterSelectLinesIntoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSelectLinesInto
public void exitSelectLinesInto(MySqlParser.SelectLinesIntoContext ctx)
Exit a parse tree produced byMySqlParser.selectLinesInto().The default implementation does nothing.
- Specified by:
exitSelectLinesIntoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFromClause
public void enterFromClause(MySqlParser.FromClauseContext ctx)
Enter a parse tree produced byMySqlParser.fromClause().The default implementation does nothing.
- Specified by:
enterFromClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFromClause
public void exitFromClause(MySqlParser.FromClauseContext ctx)
Exit a parse tree produced byMySqlParser.fromClause().The default implementation does nothing.
- Specified by:
exitFromClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterGroupByItem
public void enterGroupByItem(MySqlParser.GroupByItemContext ctx)
Enter a parse tree produced byMySqlParser.groupByItem().The default implementation does nothing.
- Specified by:
enterGroupByItemin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitGroupByItem
public void exitGroupByItem(MySqlParser.GroupByItemContext ctx)
Exit a parse tree produced byMySqlParser.groupByItem().The default implementation does nothing.
- Specified by:
exitGroupByItemin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLimitClause
public void enterLimitClause(MySqlParser.LimitClauseContext ctx)
Enter a parse tree produced byMySqlParser.limitClause().The default implementation does nothing.
- Specified by:
enterLimitClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLimitClause
public void exitLimitClause(MySqlParser.LimitClauseContext ctx)
Exit a parse tree produced byMySqlParser.limitClause().The default implementation does nothing.
- Specified by:
exitLimitClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLimitClauseAtom
public void enterLimitClauseAtom(MySqlParser.LimitClauseAtomContext ctx)
Enter a parse tree produced byMySqlParser.limitClauseAtom().The default implementation does nothing.
- Specified by:
enterLimitClauseAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLimitClauseAtom
public void exitLimitClauseAtom(MySqlParser.LimitClauseAtomContext ctx)
Exit a parse tree produced byMySqlParser.limitClauseAtom().The default implementation does nothing.
- Specified by:
exitLimitClauseAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStartTransaction
public void enterStartTransaction(MySqlParser.StartTransactionContext ctx)
Enter a parse tree produced byMySqlParser.startTransaction().The default implementation does nothing.
- Specified by:
enterStartTransactionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStartTransaction
public void exitStartTransaction(MySqlParser.StartTransactionContext ctx)
Exit a parse tree produced byMySqlParser.startTransaction().The default implementation does nothing.
- Specified by:
exitStartTransactionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBeginWork
public void enterBeginWork(MySqlParser.BeginWorkContext ctx)
Enter a parse tree produced byMySqlParser.beginWork().The default implementation does nothing.
- Specified by:
enterBeginWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBeginWork
public void exitBeginWork(MySqlParser.BeginWorkContext ctx)
Exit a parse tree produced byMySqlParser.beginWork().The default implementation does nothing.
- Specified by:
exitBeginWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCommitWork
public void enterCommitWork(MySqlParser.CommitWorkContext ctx)
Enter a parse tree produced byMySqlParser.commitWork().The default implementation does nothing.
- Specified by:
enterCommitWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCommitWork
public void exitCommitWork(MySqlParser.CommitWorkContext ctx)
Exit a parse tree produced byMySqlParser.commitWork().The default implementation does nothing.
- Specified by:
exitCommitWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRollbackWork
public void enterRollbackWork(MySqlParser.RollbackWorkContext ctx)
Enter a parse tree produced byMySqlParser.rollbackWork().The default implementation does nothing.
- Specified by:
enterRollbackWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRollbackWork
public void exitRollbackWork(MySqlParser.RollbackWorkContext ctx)
Exit a parse tree produced byMySqlParser.rollbackWork().The default implementation does nothing.
- Specified by:
exitRollbackWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSavepointStatement
public void enterSavepointStatement(MySqlParser.SavepointStatementContext ctx)
Enter a parse tree produced byMySqlParser.savepointStatement().The default implementation does nothing.
- Specified by:
enterSavepointStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSavepointStatement
public void exitSavepointStatement(MySqlParser.SavepointStatementContext ctx)
Exit a parse tree produced byMySqlParser.savepointStatement().The default implementation does nothing.
- Specified by:
exitSavepointStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRollbackStatement
public void enterRollbackStatement(MySqlParser.RollbackStatementContext ctx)
Enter a parse tree produced byMySqlParser.rollbackStatement().The default implementation does nothing.
- Specified by:
enterRollbackStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRollbackStatement
public void exitRollbackStatement(MySqlParser.RollbackStatementContext ctx)
Exit a parse tree produced byMySqlParser.rollbackStatement().The default implementation does nothing.
- Specified by:
exitRollbackStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterReleaseStatement
public void enterReleaseStatement(MySqlParser.ReleaseStatementContext ctx)
Enter a parse tree produced byMySqlParser.releaseStatement().The default implementation does nothing.
- Specified by:
enterReleaseStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitReleaseStatement
public void exitReleaseStatement(MySqlParser.ReleaseStatementContext ctx)
Exit a parse tree produced byMySqlParser.releaseStatement().The default implementation does nothing.
- Specified by:
exitReleaseStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLockTables
public void enterLockTables(MySqlParser.LockTablesContext ctx)
Enter a parse tree produced byMySqlParser.lockTables().The default implementation does nothing.
- Specified by:
enterLockTablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLockTables
public void exitLockTables(MySqlParser.LockTablesContext ctx)
Exit a parse tree produced byMySqlParser.lockTables().The default implementation does nothing.
- Specified by:
exitLockTablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUnlockTables
public void enterUnlockTables(MySqlParser.UnlockTablesContext ctx)
Enter a parse tree produced byMySqlParser.unlockTables().The default implementation does nothing.
- Specified by:
enterUnlockTablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUnlockTables
public void exitUnlockTables(MySqlParser.UnlockTablesContext ctx)
Exit a parse tree produced byMySqlParser.unlockTables().The default implementation does nothing.
- Specified by:
exitUnlockTablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetAutocommitStatement
public void enterSetAutocommitStatement(MySqlParser.SetAutocommitStatementContext ctx)
Enter a parse tree produced byMySqlParser.setAutocommitStatement().The default implementation does nothing.
- Specified by:
enterSetAutocommitStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetAutocommitStatement
public void exitSetAutocommitStatement(MySqlParser.SetAutocommitStatementContext ctx)
Exit a parse tree produced byMySqlParser.setAutocommitStatement().The default implementation does nothing.
- Specified by:
exitSetAutocommitStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetTransactionStatement
public void enterSetTransactionStatement(MySqlParser.SetTransactionStatementContext ctx)
Enter a parse tree produced byMySqlParser.setTransactionStatement().The default implementation does nothing.
- Specified by:
enterSetTransactionStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetTransactionStatement
public void exitSetTransactionStatement(MySqlParser.SetTransactionStatementContext ctx)
Exit a parse tree produced byMySqlParser.setTransactionStatement().The default implementation does nothing.
- Specified by:
exitSetTransactionStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTransactionMode
public void enterTransactionMode(MySqlParser.TransactionModeContext ctx)
Enter a parse tree produced byMySqlParser.transactionMode().The default implementation does nothing.
- Specified by:
enterTransactionModein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTransactionMode
public void exitTransactionMode(MySqlParser.TransactionModeContext ctx)
Exit a parse tree produced byMySqlParser.transactionMode().The default implementation does nothing.
- Specified by:
exitTransactionModein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLockTableElement
public void enterLockTableElement(MySqlParser.LockTableElementContext ctx)
Enter a parse tree produced byMySqlParser.lockTableElement().The default implementation does nothing.
- Specified by:
enterLockTableElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLockTableElement
public void exitLockTableElement(MySqlParser.LockTableElementContext ctx)
Exit a parse tree produced byMySqlParser.lockTableElement().The default implementation does nothing.
- Specified by:
exitLockTableElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLockAction
public void enterLockAction(MySqlParser.LockActionContext ctx)
Enter a parse tree produced byMySqlParser.lockAction().The default implementation does nothing.
- Specified by:
enterLockActionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLockAction
public void exitLockAction(MySqlParser.LockActionContext ctx)
Exit a parse tree produced byMySqlParser.lockAction().The default implementation does nothing.
- Specified by:
exitLockActionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTransactionOption
public void enterTransactionOption(MySqlParser.TransactionOptionContext ctx)
Enter a parse tree produced byMySqlParser.transactionOption().The default implementation does nothing.
- Specified by:
enterTransactionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTransactionOption
public void exitTransactionOption(MySqlParser.TransactionOptionContext ctx)
Exit a parse tree produced byMySqlParser.transactionOption().The default implementation does nothing.
- Specified by:
exitTransactionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTransactionLevel
public void enterTransactionLevel(MySqlParser.TransactionLevelContext ctx)
Enter a parse tree produced byMySqlParser.transactionLevel().The default implementation does nothing.
- Specified by:
enterTransactionLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTransactionLevel
public void exitTransactionLevel(MySqlParser.TransactionLevelContext ctx)
Exit a parse tree produced byMySqlParser.transactionLevel().The default implementation does nothing.
- Specified by:
exitTransactionLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterChangeMaster
public void enterChangeMaster(MySqlParser.ChangeMasterContext ctx)
Enter a parse tree produced byMySqlParser.changeMaster().The default implementation does nothing.
- Specified by:
enterChangeMasterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitChangeMaster
public void exitChangeMaster(MySqlParser.ChangeMasterContext ctx)
Exit a parse tree produced byMySqlParser.changeMaster().The default implementation does nothing.
- Specified by:
exitChangeMasterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterChangeReplicationFilter
public void enterChangeReplicationFilter(MySqlParser.ChangeReplicationFilterContext ctx)
Enter a parse tree produced byMySqlParser.changeReplicationFilter().The default implementation does nothing.
- Specified by:
enterChangeReplicationFilterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitChangeReplicationFilter
public void exitChangeReplicationFilter(MySqlParser.ChangeReplicationFilterContext ctx)
Exit a parse tree produced byMySqlParser.changeReplicationFilter().The default implementation does nothing.
- Specified by:
exitChangeReplicationFilterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPurgeBinaryLogs
public void enterPurgeBinaryLogs(MySqlParser.PurgeBinaryLogsContext ctx)
Enter a parse tree produced byMySqlParser.purgeBinaryLogs().The default implementation does nothing.
- Specified by:
enterPurgeBinaryLogsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPurgeBinaryLogs
public void exitPurgeBinaryLogs(MySqlParser.PurgeBinaryLogsContext ctx)
Exit a parse tree produced byMySqlParser.purgeBinaryLogs().The default implementation does nothing.
- Specified by:
exitPurgeBinaryLogsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterResetMaster
public void enterResetMaster(MySqlParser.ResetMasterContext ctx)
Enter a parse tree produced byMySqlParser.resetMaster().The default implementation does nothing.
- Specified by:
enterResetMasterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitResetMaster
public void exitResetMaster(MySqlParser.ResetMasterContext ctx)
Exit a parse tree produced byMySqlParser.resetMaster().The default implementation does nothing.
- Specified by:
exitResetMasterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterResetSlave
public void enterResetSlave(MySqlParser.ResetSlaveContext ctx)
Enter a parse tree produced byMySqlParser.resetSlave().The default implementation does nothing.
- Specified by:
enterResetSlavein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitResetSlave
public void exitResetSlave(MySqlParser.ResetSlaveContext ctx)
Exit a parse tree produced byMySqlParser.resetSlave().The default implementation does nothing.
- Specified by:
exitResetSlavein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStartSlave
public void enterStartSlave(MySqlParser.StartSlaveContext ctx)
Enter a parse tree produced byMySqlParser.startSlave().The default implementation does nothing.
- Specified by:
enterStartSlavein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStartSlave
public void exitStartSlave(MySqlParser.StartSlaveContext ctx)
Exit a parse tree produced byMySqlParser.startSlave().The default implementation does nothing.
- Specified by:
exitStartSlavein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStopSlave
public void enterStopSlave(MySqlParser.StopSlaveContext ctx)
Enter a parse tree produced byMySqlParser.stopSlave().The default implementation does nothing.
- Specified by:
enterStopSlavein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStopSlave
public void exitStopSlave(MySqlParser.StopSlaveContext ctx)
Exit a parse tree produced byMySqlParser.stopSlave().The default implementation does nothing.
- Specified by:
exitStopSlavein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStartGroupReplication
public void enterStartGroupReplication(MySqlParser.StartGroupReplicationContext ctx)
Enter a parse tree produced byMySqlParser.startGroupReplication().The default implementation does nothing.
- Specified by:
enterStartGroupReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStartGroupReplication
public void exitStartGroupReplication(MySqlParser.StartGroupReplicationContext ctx)
Exit a parse tree produced byMySqlParser.startGroupReplication().The default implementation does nothing.
- Specified by:
exitStartGroupReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStopGroupReplication
public void enterStopGroupReplication(MySqlParser.StopGroupReplicationContext ctx)
Enter a parse tree produced byMySqlParser.stopGroupReplication().The default implementation does nothing.
- Specified by:
enterStopGroupReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStopGroupReplication
public void exitStopGroupReplication(MySqlParser.StopGroupReplicationContext ctx)
Exit a parse tree produced byMySqlParser.stopGroupReplication().The default implementation does nothing.
- Specified by:
exitStopGroupReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMasterStringOption
public void enterMasterStringOption(MySqlParser.MasterStringOptionContext ctx)
Enter a parse tree produced by themasterStringOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
enterMasterStringOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMasterStringOption
public void exitMasterStringOption(MySqlParser.MasterStringOptionContext ctx)
Exit a parse tree produced by themasterStringOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
exitMasterStringOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMasterDecimalOption
public void enterMasterDecimalOption(MySqlParser.MasterDecimalOptionContext ctx)
Enter a parse tree produced by themasterDecimalOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
enterMasterDecimalOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMasterDecimalOption
public void exitMasterDecimalOption(MySqlParser.MasterDecimalOptionContext ctx)
Exit a parse tree produced by themasterDecimalOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
exitMasterDecimalOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMasterBoolOption
public void enterMasterBoolOption(MySqlParser.MasterBoolOptionContext ctx)
Enter a parse tree produced by themasterBoolOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
enterMasterBoolOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMasterBoolOption
public void exitMasterBoolOption(MySqlParser.MasterBoolOptionContext ctx)
Exit a parse tree produced by themasterBoolOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
exitMasterBoolOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMasterRealOption
public void enterMasterRealOption(MySqlParser.MasterRealOptionContext ctx)
Enter a parse tree produced by themasterRealOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
enterMasterRealOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMasterRealOption
public void exitMasterRealOption(MySqlParser.MasterRealOptionContext ctx)
Exit a parse tree produced by themasterRealOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
exitMasterRealOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMasterUidListOption
public void enterMasterUidListOption(MySqlParser.MasterUidListOptionContext ctx)
Enter a parse tree produced by themasterUidListOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
enterMasterUidListOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMasterUidListOption
public void exitMasterUidListOption(MySqlParser.MasterUidListOptionContext ctx)
Exit a parse tree produced by themasterUidListOptionlabeled alternative inMySqlParser.masterOption().The default implementation does nothing.
- Specified by:
exitMasterUidListOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStringMasterOption
public void enterStringMasterOption(MySqlParser.StringMasterOptionContext ctx)
Enter a parse tree produced byMySqlParser.stringMasterOption().The default implementation does nothing.
- Specified by:
enterStringMasterOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStringMasterOption
public void exitStringMasterOption(MySqlParser.StringMasterOptionContext ctx)
Exit a parse tree produced byMySqlParser.stringMasterOption().The default implementation does nothing.
- Specified by:
exitStringMasterOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDecimalMasterOption
public void enterDecimalMasterOption(MySqlParser.DecimalMasterOptionContext ctx)
Enter a parse tree produced byMySqlParser.decimalMasterOption().The default implementation does nothing.
- Specified by:
enterDecimalMasterOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDecimalMasterOption
public void exitDecimalMasterOption(MySqlParser.DecimalMasterOptionContext ctx)
Exit a parse tree produced byMySqlParser.decimalMasterOption().The default implementation does nothing.
- Specified by:
exitDecimalMasterOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBoolMasterOption
public void enterBoolMasterOption(MySqlParser.BoolMasterOptionContext ctx)
Enter a parse tree produced byMySqlParser.boolMasterOption().The default implementation does nothing.
- Specified by:
enterBoolMasterOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBoolMasterOption
public void exitBoolMasterOption(MySqlParser.BoolMasterOptionContext ctx)
Exit a parse tree produced byMySqlParser.boolMasterOption().The default implementation does nothing.
- Specified by:
exitBoolMasterOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterChannelOption
public void enterChannelOption(MySqlParser.ChannelOptionContext ctx)
Enter a parse tree produced byMySqlParser.channelOption().The default implementation does nothing.
- Specified by:
enterChannelOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitChannelOption
public void exitChannelOption(MySqlParser.ChannelOptionContext ctx)
Exit a parse tree produced byMySqlParser.channelOption().The default implementation does nothing.
- Specified by:
exitChannelOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDoDbReplication
public void enterDoDbReplication(MySqlParser.DoDbReplicationContext ctx)
Enter a parse tree produced by thedoDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
enterDoDbReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDoDbReplication
public void exitDoDbReplication(MySqlParser.DoDbReplicationContext ctx)
Exit a parse tree produced by thedoDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
exitDoDbReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIgnoreDbReplication
public void enterIgnoreDbReplication(MySqlParser.IgnoreDbReplicationContext ctx)
Enter a parse tree produced by theignoreDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
enterIgnoreDbReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIgnoreDbReplication
public void exitIgnoreDbReplication(MySqlParser.IgnoreDbReplicationContext ctx)
Exit a parse tree produced by theignoreDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
exitIgnoreDbReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDoTableReplication
public void enterDoTableReplication(MySqlParser.DoTableReplicationContext ctx)
Enter a parse tree produced by thedoTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
enterDoTableReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDoTableReplication
public void exitDoTableReplication(MySqlParser.DoTableReplicationContext ctx)
Exit a parse tree produced by thedoTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
exitDoTableReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIgnoreTableReplication
public void enterIgnoreTableReplication(MySqlParser.IgnoreTableReplicationContext ctx)
Enter a parse tree produced by theignoreTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
enterIgnoreTableReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIgnoreTableReplication
public void exitIgnoreTableReplication(MySqlParser.IgnoreTableReplicationContext ctx)
Exit a parse tree produced by theignoreTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
exitIgnoreTableReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterWildDoTableReplication
public void enterWildDoTableReplication(MySqlParser.WildDoTableReplicationContext ctx)
Enter a parse tree produced by thewildDoTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
enterWildDoTableReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitWildDoTableReplication
public void exitWildDoTableReplication(MySqlParser.WildDoTableReplicationContext ctx)
Exit a parse tree produced by thewildDoTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
exitWildDoTableReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterWildIgnoreTableReplication
public void enterWildIgnoreTableReplication(MySqlParser.WildIgnoreTableReplicationContext ctx)
Enter a parse tree produced by thewildIgnoreTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
enterWildIgnoreTableReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitWildIgnoreTableReplication
public void exitWildIgnoreTableReplication(MySqlParser.WildIgnoreTableReplicationContext ctx)
Exit a parse tree produced by thewildIgnoreTableReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
exitWildIgnoreTableReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRewriteDbReplication
public void enterRewriteDbReplication(MySqlParser.RewriteDbReplicationContext ctx)
Enter a parse tree produced by therewriteDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
enterRewriteDbReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRewriteDbReplication
public void exitRewriteDbReplication(MySqlParser.RewriteDbReplicationContext ctx)
Exit a parse tree produced by therewriteDbReplicationlabeled alternative inMySqlParser.replicationFilter().The default implementation does nothing.
- Specified by:
exitRewriteDbReplicationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTablePair
public void enterTablePair(MySqlParser.TablePairContext ctx)
Enter a parse tree produced byMySqlParser.tablePair().The default implementation does nothing.
- Specified by:
enterTablePairin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTablePair
public void exitTablePair(MySqlParser.TablePairContext ctx)
Exit a parse tree produced byMySqlParser.tablePair().The default implementation does nothing.
- Specified by:
exitTablePairin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterThreadType
public void enterThreadType(MySqlParser.ThreadTypeContext ctx)
Enter a parse tree produced byMySqlParser.threadType().The default implementation does nothing.
- Specified by:
enterThreadTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitThreadType
public void exitThreadType(MySqlParser.ThreadTypeContext ctx)
Exit a parse tree produced byMySqlParser.threadType().The default implementation does nothing.
- Specified by:
exitThreadTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterGtidsUntilOption
public void enterGtidsUntilOption(MySqlParser.GtidsUntilOptionContext ctx)
Enter a parse tree produced by thegtidsUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation does nothing.
- Specified by:
enterGtidsUntilOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitGtidsUntilOption
public void exitGtidsUntilOption(MySqlParser.GtidsUntilOptionContext ctx)
Exit a parse tree produced by thegtidsUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation does nothing.
- Specified by:
exitGtidsUntilOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMasterLogUntilOption
public void enterMasterLogUntilOption(MySqlParser.MasterLogUntilOptionContext ctx)
Enter a parse tree produced by themasterLogUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation does nothing.
- Specified by:
enterMasterLogUntilOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMasterLogUntilOption
public void exitMasterLogUntilOption(MySqlParser.MasterLogUntilOptionContext ctx)
Exit a parse tree produced by themasterLogUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation does nothing.
- Specified by:
exitMasterLogUntilOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRelayLogUntilOption
public void enterRelayLogUntilOption(MySqlParser.RelayLogUntilOptionContext ctx)
Enter a parse tree produced by therelayLogUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation does nothing.
- Specified by:
enterRelayLogUntilOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRelayLogUntilOption
public void exitRelayLogUntilOption(MySqlParser.RelayLogUntilOptionContext ctx)
Exit a parse tree produced by therelayLogUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation does nothing.
- Specified by:
exitRelayLogUntilOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSqlGapsUntilOption
public void enterSqlGapsUntilOption(MySqlParser.SqlGapsUntilOptionContext ctx)
Enter a parse tree produced by thesqlGapsUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation does nothing.
- Specified by:
enterSqlGapsUntilOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSqlGapsUntilOption
public void exitSqlGapsUntilOption(MySqlParser.SqlGapsUntilOptionContext ctx)
Exit a parse tree produced by thesqlGapsUntilOptionlabeled alternative inMySqlParser.untilOption().The default implementation does nothing.
- Specified by:
exitSqlGapsUntilOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUserConnectionOption
public void enterUserConnectionOption(MySqlParser.UserConnectionOptionContext ctx)
Enter a parse tree produced by theuserConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation does nothing.
- Specified by:
enterUserConnectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUserConnectionOption
public void exitUserConnectionOption(MySqlParser.UserConnectionOptionContext ctx)
Exit a parse tree produced by theuserConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation does nothing.
- Specified by:
exitUserConnectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPasswordConnectionOption
public void enterPasswordConnectionOption(MySqlParser.PasswordConnectionOptionContext ctx)
Enter a parse tree produced by thepasswordConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation does nothing.
- Specified by:
enterPasswordConnectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPasswordConnectionOption
public void exitPasswordConnectionOption(MySqlParser.PasswordConnectionOptionContext ctx)
Exit a parse tree produced by thepasswordConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation does nothing.
- Specified by:
exitPasswordConnectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDefaultAuthConnectionOption
public void enterDefaultAuthConnectionOption(MySqlParser.DefaultAuthConnectionOptionContext ctx)
Enter a parse tree produced by thedefaultAuthConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation does nothing.
- Specified by:
enterDefaultAuthConnectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDefaultAuthConnectionOption
public void exitDefaultAuthConnectionOption(MySqlParser.DefaultAuthConnectionOptionContext ctx)
Exit a parse tree produced by thedefaultAuthConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation does nothing.
- Specified by:
exitDefaultAuthConnectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPluginDirConnectionOption
public void enterPluginDirConnectionOption(MySqlParser.PluginDirConnectionOptionContext ctx)
Enter a parse tree produced by thepluginDirConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation does nothing.
- Specified by:
enterPluginDirConnectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPluginDirConnectionOption
public void exitPluginDirConnectionOption(MySqlParser.PluginDirConnectionOptionContext ctx)
Exit a parse tree produced by thepluginDirConnectionOptionlabeled alternative inMySqlParser.connectionOption().The default implementation does nothing.
- Specified by:
exitPluginDirConnectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterGtuidSet
public void enterGtuidSet(MySqlParser.GtuidSetContext ctx)
Enter a parse tree produced byMySqlParser.gtuidSet().The default implementation does nothing.
- Specified by:
enterGtuidSetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitGtuidSet
public void exitGtuidSet(MySqlParser.GtuidSetContext ctx)
Exit a parse tree produced byMySqlParser.gtuidSet().The default implementation does nothing.
- Specified by:
exitGtuidSetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterXaStartTransaction
public void enterXaStartTransaction(MySqlParser.XaStartTransactionContext ctx)
Enter a parse tree produced byMySqlParser.xaStartTransaction().The default implementation does nothing.
- Specified by:
enterXaStartTransactionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitXaStartTransaction
public void exitXaStartTransaction(MySqlParser.XaStartTransactionContext ctx)
Exit a parse tree produced byMySqlParser.xaStartTransaction().The default implementation does nothing.
- Specified by:
exitXaStartTransactionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterXaEndTransaction
public void enterXaEndTransaction(MySqlParser.XaEndTransactionContext ctx)
Enter a parse tree produced byMySqlParser.xaEndTransaction().The default implementation does nothing.
- Specified by:
enterXaEndTransactionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitXaEndTransaction
public void exitXaEndTransaction(MySqlParser.XaEndTransactionContext ctx)
Exit a parse tree produced byMySqlParser.xaEndTransaction().The default implementation does nothing.
- Specified by:
exitXaEndTransactionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterXaPrepareStatement
public void enterXaPrepareStatement(MySqlParser.XaPrepareStatementContext ctx)
Enter a parse tree produced byMySqlParser.xaPrepareStatement().The default implementation does nothing.
- Specified by:
enterXaPrepareStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitXaPrepareStatement
public void exitXaPrepareStatement(MySqlParser.XaPrepareStatementContext ctx)
Exit a parse tree produced byMySqlParser.xaPrepareStatement().The default implementation does nothing.
- Specified by:
exitXaPrepareStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterXaCommitWork
public void enterXaCommitWork(MySqlParser.XaCommitWorkContext ctx)
Enter a parse tree produced byMySqlParser.xaCommitWork().The default implementation does nothing.
- Specified by:
enterXaCommitWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitXaCommitWork
public void exitXaCommitWork(MySqlParser.XaCommitWorkContext ctx)
Exit a parse tree produced byMySqlParser.xaCommitWork().The default implementation does nothing.
- Specified by:
exitXaCommitWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterXaRollbackWork
public void enterXaRollbackWork(MySqlParser.XaRollbackWorkContext ctx)
Enter a parse tree produced byMySqlParser.xaRollbackWork().The default implementation does nothing.
- Specified by:
enterXaRollbackWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitXaRollbackWork
public void exitXaRollbackWork(MySqlParser.XaRollbackWorkContext ctx)
Exit a parse tree produced byMySqlParser.xaRollbackWork().The default implementation does nothing.
- Specified by:
exitXaRollbackWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterXaRecoverWork
public void enterXaRecoverWork(MySqlParser.XaRecoverWorkContext ctx)
Enter a parse tree produced byMySqlParser.xaRecoverWork().The default implementation does nothing.
- Specified by:
enterXaRecoverWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitXaRecoverWork
public void exitXaRecoverWork(MySqlParser.XaRecoverWorkContext ctx)
Exit a parse tree produced byMySqlParser.xaRecoverWork().The default implementation does nothing.
- Specified by:
exitXaRecoverWorkin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPrepareStatement
public void enterPrepareStatement(MySqlParser.PrepareStatementContext ctx)
Enter a parse tree produced byMySqlParser.prepareStatement().The default implementation does nothing.
- Specified by:
enterPrepareStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPrepareStatement
public void exitPrepareStatement(MySqlParser.PrepareStatementContext ctx)
Exit a parse tree produced byMySqlParser.prepareStatement().The default implementation does nothing.
- Specified by:
exitPrepareStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterExecuteStatement
public void enterExecuteStatement(MySqlParser.ExecuteStatementContext ctx)
Enter a parse tree produced byMySqlParser.executeStatement().The default implementation does nothing.
- Specified by:
enterExecuteStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitExecuteStatement
public void exitExecuteStatement(MySqlParser.ExecuteStatementContext ctx)
Exit a parse tree produced byMySqlParser.executeStatement().The default implementation does nothing.
- Specified by:
exitExecuteStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDeallocatePrepare
public void enterDeallocatePrepare(MySqlParser.DeallocatePrepareContext ctx)
Enter a parse tree produced byMySqlParser.deallocatePrepare().The default implementation does nothing.
- Specified by:
enterDeallocatePreparein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDeallocatePrepare
public void exitDeallocatePrepare(MySqlParser.DeallocatePrepareContext ctx)
Exit a parse tree produced byMySqlParser.deallocatePrepare().The default implementation does nothing.
- Specified by:
exitDeallocatePreparein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRoutineBody
public void enterRoutineBody(MySqlParser.RoutineBodyContext ctx)
Enter a parse tree produced byMySqlParser.routineBody().The default implementation does nothing.
- Specified by:
enterRoutineBodyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRoutineBody
public void exitRoutineBody(MySqlParser.RoutineBodyContext ctx)
Exit a parse tree produced byMySqlParser.routineBody().The default implementation does nothing.
- Specified by:
exitRoutineBodyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBlockStatement
public void enterBlockStatement(MySqlParser.BlockStatementContext ctx)
Enter a parse tree produced byMySqlParser.blockStatement().The default implementation does nothing.
- Specified by:
enterBlockStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBlockStatement
public void exitBlockStatement(MySqlParser.BlockStatementContext ctx)
Exit a parse tree produced byMySqlParser.blockStatement().The default implementation does nothing.
- Specified by:
exitBlockStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCaseStatement
public void enterCaseStatement(MySqlParser.CaseStatementContext ctx)
Enter a parse tree produced byMySqlParser.caseStatement().The default implementation does nothing.
- Specified by:
enterCaseStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCaseStatement
public void exitCaseStatement(MySqlParser.CaseStatementContext ctx)
Exit a parse tree produced byMySqlParser.caseStatement().The default implementation does nothing.
- Specified by:
exitCaseStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIfStatement
public void enterIfStatement(MySqlParser.IfStatementContext ctx)
Enter a parse tree produced byMySqlParser.ifStatement().The default implementation does nothing.
- Specified by:
enterIfStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIfStatement
public void exitIfStatement(MySqlParser.IfStatementContext ctx)
Exit a parse tree produced byMySqlParser.ifStatement().The default implementation does nothing.
- Specified by:
exitIfStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIterateStatement
public void enterIterateStatement(MySqlParser.IterateStatementContext ctx)
Enter a parse tree produced byMySqlParser.iterateStatement().The default implementation does nothing.
- Specified by:
enterIterateStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIterateStatement
public void exitIterateStatement(MySqlParser.IterateStatementContext ctx)
Exit a parse tree produced byMySqlParser.iterateStatement().The default implementation does nothing.
- Specified by:
exitIterateStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLeaveStatement
public void enterLeaveStatement(MySqlParser.LeaveStatementContext ctx)
Enter a parse tree produced byMySqlParser.leaveStatement().The default implementation does nothing.
- Specified by:
enterLeaveStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLeaveStatement
public void exitLeaveStatement(MySqlParser.LeaveStatementContext ctx)
Exit a parse tree produced byMySqlParser.leaveStatement().The default implementation does nothing.
- Specified by:
exitLeaveStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLoopStatement
public void enterLoopStatement(MySqlParser.LoopStatementContext ctx)
Enter a parse tree produced byMySqlParser.loopStatement().The default implementation does nothing.
- Specified by:
enterLoopStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLoopStatement
public void exitLoopStatement(MySqlParser.LoopStatementContext ctx)
Exit a parse tree produced byMySqlParser.loopStatement().The default implementation does nothing.
- Specified by:
exitLoopStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRepeatStatement
public void enterRepeatStatement(MySqlParser.RepeatStatementContext ctx)
Enter a parse tree produced byMySqlParser.repeatStatement().The default implementation does nothing.
- Specified by:
enterRepeatStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRepeatStatement
public void exitRepeatStatement(MySqlParser.RepeatStatementContext ctx)
Exit a parse tree produced byMySqlParser.repeatStatement().The default implementation does nothing.
- Specified by:
exitRepeatStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterReturnStatement
public void enterReturnStatement(MySqlParser.ReturnStatementContext ctx)
Enter a parse tree produced byMySqlParser.returnStatement().The default implementation does nothing.
- Specified by:
enterReturnStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitReturnStatement
public void exitReturnStatement(MySqlParser.ReturnStatementContext ctx)
Exit a parse tree produced byMySqlParser.returnStatement().The default implementation does nothing.
- Specified by:
exitReturnStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterWhileStatement
public void enterWhileStatement(MySqlParser.WhileStatementContext ctx)
Enter a parse tree produced byMySqlParser.whileStatement().The default implementation does nothing.
- Specified by:
enterWhileStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitWhileStatement
public void exitWhileStatement(MySqlParser.WhileStatementContext ctx)
Exit a parse tree produced byMySqlParser.whileStatement().The default implementation does nothing.
- Specified by:
exitWhileStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCloseCursor
public void enterCloseCursor(MySqlParser.CloseCursorContext ctx)
Enter a parse tree produced by theCloseCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation does nothing.
- Specified by:
enterCloseCursorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCloseCursor
public void exitCloseCursor(MySqlParser.CloseCursorContext ctx)
Exit a parse tree produced by theCloseCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation does nothing.
- Specified by:
exitCloseCursorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFetchCursor
public void enterFetchCursor(MySqlParser.FetchCursorContext ctx)
Enter a parse tree produced by theFetchCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation does nothing.
- Specified by:
enterFetchCursorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFetchCursor
public void exitFetchCursor(MySqlParser.FetchCursorContext ctx)
Exit a parse tree produced by theFetchCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation does nothing.
- Specified by:
exitFetchCursorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterOpenCursor
public void enterOpenCursor(MySqlParser.OpenCursorContext ctx)
Enter a parse tree produced by theOpenCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation does nothing.
- Specified by:
enterOpenCursorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitOpenCursor
public void exitOpenCursor(MySqlParser.OpenCursorContext ctx)
Exit a parse tree produced by theOpenCursorlabeled alternative inMySqlParser.cursorStatement().The default implementation does nothing.
- Specified by:
exitOpenCursorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDeclareVariable
public void enterDeclareVariable(MySqlParser.DeclareVariableContext ctx)
Enter a parse tree produced byMySqlParser.declareVariable().The default implementation does nothing.
- Specified by:
enterDeclareVariablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDeclareVariable
public void exitDeclareVariable(MySqlParser.DeclareVariableContext ctx)
Exit a parse tree produced byMySqlParser.declareVariable().The default implementation does nothing.
- Specified by:
exitDeclareVariablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDeclareCondition
public void enterDeclareCondition(MySqlParser.DeclareConditionContext ctx)
Enter a parse tree produced byMySqlParser.declareCondition().The default implementation does nothing.
- Specified by:
enterDeclareConditionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDeclareCondition
public void exitDeclareCondition(MySqlParser.DeclareConditionContext ctx)
Exit a parse tree produced byMySqlParser.declareCondition().The default implementation does nothing.
- Specified by:
exitDeclareConditionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDeclareCursor
public void enterDeclareCursor(MySqlParser.DeclareCursorContext ctx)
Enter a parse tree produced byMySqlParser.declareCursor().The default implementation does nothing.
- Specified by:
enterDeclareCursorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDeclareCursor
public void exitDeclareCursor(MySqlParser.DeclareCursorContext ctx)
Exit a parse tree produced byMySqlParser.declareCursor().The default implementation does nothing.
- Specified by:
exitDeclareCursorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDeclareHandler
public void enterDeclareHandler(MySqlParser.DeclareHandlerContext ctx)
Enter a parse tree produced byMySqlParser.declareHandler().The default implementation does nothing.
- Specified by:
enterDeclareHandlerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDeclareHandler
public void exitDeclareHandler(MySqlParser.DeclareHandlerContext ctx)
Exit a parse tree produced byMySqlParser.declareHandler().The default implementation does nothing.
- Specified by:
exitDeclareHandlerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerConditionCode
public void enterHandlerConditionCode(MySqlParser.HandlerConditionCodeContext ctx)
Enter a parse tree produced by thehandlerConditionCodelabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
enterHandlerConditionCodein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerConditionCode
public void exitHandlerConditionCode(MySqlParser.HandlerConditionCodeContext ctx)
Exit a parse tree produced by thehandlerConditionCodelabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
exitHandlerConditionCodein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerConditionState
public void enterHandlerConditionState(MySqlParser.HandlerConditionStateContext ctx)
Enter a parse tree produced by thehandlerConditionStatelabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
enterHandlerConditionStatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerConditionState
public void exitHandlerConditionState(MySqlParser.HandlerConditionStateContext ctx)
Exit a parse tree produced by thehandlerConditionStatelabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
exitHandlerConditionStatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerConditionName
public void enterHandlerConditionName(MySqlParser.HandlerConditionNameContext ctx)
Enter a parse tree produced by thehandlerConditionNamelabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
enterHandlerConditionNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerConditionName
public void exitHandlerConditionName(MySqlParser.HandlerConditionNameContext ctx)
Exit a parse tree produced by thehandlerConditionNamelabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
exitHandlerConditionNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerConditionWarning
public void enterHandlerConditionWarning(MySqlParser.HandlerConditionWarningContext ctx)
Enter a parse tree produced by thehandlerConditionWarninglabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
enterHandlerConditionWarningin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerConditionWarning
public void exitHandlerConditionWarning(MySqlParser.HandlerConditionWarningContext ctx)
Exit a parse tree produced by thehandlerConditionWarninglabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
exitHandlerConditionWarningin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerConditionNotfound
public void enterHandlerConditionNotfound(MySqlParser.HandlerConditionNotfoundContext ctx)
Enter a parse tree produced by thehandlerConditionNotfoundlabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
enterHandlerConditionNotfoundin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerConditionNotfound
public void exitHandlerConditionNotfound(MySqlParser.HandlerConditionNotfoundContext ctx)
Exit a parse tree produced by thehandlerConditionNotfoundlabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
exitHandlerConditionNotfoundin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHandlerConditionException
public void enterHandlerConditionException(MySqlParser.HandlerConditionExceptionContext ctx)
Enter a parse tree produced by thehandlerConditionExceptionlabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
enterHandlerConditionExceptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHandlerConditionException
public void exitHandlerConditionException(MySqlParser.HandlerConditionExceptionContext ctx)
Exit a parse tree produced by thehandlerConditionExceptionlabeled alternative inMySqlParser.handlerConditionValue().The default implementation does nothing.
- Specified by:
exitHandlerConditionExceptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterProcedureSqlStatement
public void enterProcedureSqlStatement(MySqlParser.ProcedureSqlStatementContext ctx)
Enter a parse tree produced byMySqlParser.procedureSqlStatement().The default implementation does nothing.
- Specified by:
enterProcedureSqlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitProcedureSqlStatement
public void exitProcedureSqlStatement(MySqlParser.ProcedureSqlStatementContext ctx)
Exit a parse tree produced byMySqlParser.procedureSqlStatement().The default implementation does nothing.
- Specified by:
exitProcedureSqlStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCaseAlternative
public void enterCaseAlternative(MySqlParser.CaseAlternativeContext ctx)
Enter a parse tree produced byMySqlParser.caseAlternative().The default implementation does nothing.
- Specified by:
enterCaseAlternativein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCaseAlternative
public void exitCaseAlternative(MySqlParser.CaseAlternativeContext ctx)
Exit a parse tree produced byMySqlParser.caseAlternative().The default implementation does nothing.
- Specified by:
exitCaseAlternativein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterElifAlternative
public void enterElifAlternative(MySqlParser.ElifAlternativeContext ctx)
Enter a parse tree produced byMySqlParser.elifAlternative().The default implementation does nothing.
- Specified by:
enterElifAlternativein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitElifAlternative
public void exitElifAlternative(MySqlParser.ElifAlternativeContext ctx)
Exit a parse tree produced byMySqlParser.elifAlternative().The default implementation does nothing.
- Specified by:
exitElifAlternativein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterUserMysqlV56
public void enterAlterUserMysqlV56(MySqlParser.AlterUserMysqlV56Context ctx)
Enter a parse tree produced by thealterUserMysqlV56labeled alternative inMySqlParser.alterUser().The default implementation does nothing.
- Specified by:
enterAlterUserMysqlV56in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterUserMysqlV56
public void exitAlterUserMysqlV56(MySqlParser.AlterUserMysqlV56Context ctx)
Exit a parse tree produced by thealterUserMysqlV56labeled alternative inMySqlParser.alterUser().The default implementation does nothing.
- Specified by:
exitAlterUserMysqlV56in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAlterUserMysqlV57
public void enterAlterUserMysqlV57(MySqlParser.AlterUserMysqlV57Context ctx)
Enter a parse tree produced by thealterUserMysqlV57labeled alternative inMySqlParser.alterUser().The default implementation does nothing.
- Specified by:
enterAlterUserMysqlV57in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAlterUserMysqlV57
public void exitAlterUserMysqlV57(MySqlParser.AlterUserMysqlV57Context ctx)
Exit a parse tree produced by thealterUserMysqlV57labeled alternative inMySqlParser.alterUser().The default implementation does nothing.
- Specified by:
exitAlterUserMysqlV57in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateUserMysqlV56
public void enterCreateUserMysqlV56(MySqlParser.CreateUserMysqlV56Context ctx)
Enter a parse tree produced by thecreateUserMysqlV56labeled alternative inMySqlParser.createUser().The default implementation does nothing.
- Specified by:
enterCreateUserMysqlV56in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateUserMysqlV56
public void exitCreateUserMysqlV56(MySqlParser.CreateUserMysqlV56Context ctx)
Exit a parse tree produced by thecreateUserMysqlV56labeled alternative inMySqlParser.createUser().The default implementation does nothing.
- Specified by:
exitCreateUserMysqlV56in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateUserMysqlV57
public void enterCreateUserMysqlV57(MySqlParser.CreateUserMysqlV57Context ctx)
Enter a parse tree produced by thecreateUserMysqlV57labeled alternative inMySqlParser.createUser().The default implementation does nothing.
- Specified by:
enterCreateUserMysqlV57in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateUserMysqlV57
public void exitCreateUserMysqlV57(MySqlParser.CreateUserMysqlV57Context ctx)
Exit a parse tree produced by thecreateUserMysqlV57labeled alternative inMySqlParser.createUser().The default implementation does nothing.
- Specified by:
exitCreateUserMysqlV57in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDropUser
public void enterDropUser(MySqlParser.DropUserContext ctx)
Enter a parse tree produced byMySqlParser.dropUser().The default implementation does nothing.
- Specified by:
enterDropUserin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDropUser
public void exitDropUser(MySqlParser.DropUserContext ctx)
Exit a parse tree produced byMySqlParser.dropUser().The default implementation does nothing.
- Specified by:
exitDropUserin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterGrantStatement
public void enterGrantStatement(MySqlParser.GrantStatementContext ctx)
Enter a parse tree produced byMySqlParser.grantStatement().The default implementation does nothing.
- Specified by:
enterGrantStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitGrantStatement
public void exitGrantStatement(MySqlParser.GrantStatementContext ctx)
Exit a parse tree produced byMySqlParser.grantStatement().The default implementation does nothing.
- Specified by:
exitGrantStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterGrantProxy
public void enterGrantProxy(MySqlParser.GrantProxyContext ctx)
Enter a parse tree produced byMySqlParser.grantProxy().The default implementation does nothing.
- Specified by:
enterGrantProxyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitGrantProxy
public void exitGrantProxy(MySqlParser.GrantProxyContext ctx)
Exit a parse tree produced byMySqlParser.grantProxy().The default implementation does nothing.
- Specified by:
exitGrantProxyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRenameUser
public void enterRenameUser(MySqlParser.RenameUserContext ctx)
Enter a parse tree produced byMySqlParser.renameUser().The default implementation does nothing.
- Specified by:
enterRenameUserin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRenameUser
public void exitRenameUser(MySqlParser.RenameUserContext ctx)
Exit a parse tree produced byMySqlParser.renameUser().The default implementation does nothing.
- Specified by:
exitRenameUserin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDetailRevoke
public void enterDetailRevoke(MySqlParser.DetailRevokeContext ctx)
Enter a parse tree produced by thedetailRevokelabeled alternative inMySqlParser.revokeStatement().The default implementation does nothing.
- Specified by:
enterDetailRevokein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDetailRevoke
public void exitDetailRevoke(MySqlParser.DetailRevokeContext ctx)
Exit a parse tree produced by thedetailRevokelabeled alternative inMySqlParser.revokeStatement().The default implementation does nothing.
- Specified by:
exitDetailRevokein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShortRevoke
public void enterShortRevoke(MySqlParser.ShortRevokeContext ctx)
Enter a parse tree produced by theshortRevokelabeled alternative inMySqlParser.revokeStatement().The default implementation does nothing.
- Specified by:
enterShortRevokein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShortRevoke
public void exitShortRevoke(MySqlParser.ShortRevokeContext ctx)
Exit a parse tree produced by theshortRevokelabeled alternative inMySqlParser.revokeStatement().The default implementation does nothing.
- Specified by:
exitShortRevokein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRevokeProxy
public void enterRevokeProxy(MySqlParser.RevokeProxyContext ctx)
Enter a parse tree produced byMySqlParser.revokeProxy().The default implementation does nothing.
- Specified by:
enterRevokeProxyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRevokeProxy
public void exitRevokeProxy(MySqlParser.RevokeProxyContext ctx)
Exit a parse tree produced byMySqlParser.revokeProxy().The default implementation does nothing.
- Specified by:
exitRevokeProxyin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetPasswordStatement
public void enterSetPasswordStatement(MySqlParser.SetPasswordStatementContext ctx)
Enter a parse tree produced byMySqlParser.setPasswordStatement().The default implementation does nothing.
- Specified by:
enterSetPasswordStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetPasswordStatement
public void exitSetPasswordStatement(MySqlParser.SetPasswordStatementContext ctx)
Exit a parse tree produced byMySqlParser.setPasswordStatement().The default implementation does nothing.
- Specified by:
exitSetPasswordStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUserSpecification
public void enterUserSpecification(MySqlParser.UserSpecificationContext ctx)
Enter a parse tree produced byMySqlParser.userSpecification().The default implementation does nothing.
- Specified by:
enterUserSpecificationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUserSpecification
public void exitUserSpecification(MySqlParser.UserSpecificationContext ctx)
Exit a parse tree produced byMySqlParser.userSpecification().The default implementation does nothing.
- Specified by:
exitUserSpecificationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHashAuthOption
public void enterHashAuthOption(MySqlParser.HashAuthOptionContext ctx)
Enter a parse tree produced by thehashAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation does nothing.
- Specified by:
enterHashAuthOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHashAuthOption
public void exitHashAuthOption(MySqlParser.HashAuthOptionContext ctx)
Exit a parse tree produced by thehashAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation does nothing.
- Specified by:
exitHashAuthOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStringAuthOption
public void enterStringAuthOption(MySqlParser.StringAuthOptionContext ctx)
Enter a parse tree produced by thestringAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation does nothing.
- Specified by:
enterStringAuthOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStringAuthOption
public void exitStringAuthOption(MySqlParser.StringAuthOptionContext ctx)
Exit a parse tree produced by thestringAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation does nothing.
- Specified by:
exitStringAuthOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterModuleAuthOption
public void enterModuleAuthOption(MySqlParser.ModuleAuthOptionContext ctx)
Enter a parse tree produced by themoduleAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation does nothing.
- Specified by:
enterModuleAuthOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitModuleAuthOption
public void exitModuleAuthOption(MySqlParser.ModuleAuthOptionContext ctx)
Exit a parse tree produced by themoduleAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation does nothing.
- Specified by:
exitModuleAuthOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleAuthOption
public void enterSimpleAuthOption(MySqlParser.SimpleAuthOptionContext ctx)
Enter a parse tree produced by thesimpleAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation does nothing.
- Specified by:
enterSimpleAuthOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleAuthOption
public void exitSimpleAuthOption(MySqlParser.SimpleAuthOptionContext ctx)
Exit a parse tree produced by thesimpleAuthOptionlabeled alternative inMySqlParser.userAuthOption().The default implementation does nothing.
- Specified by:
exitSimpleAuthOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterModule
public void enterModule(MySqlParser.ModuleContext ctx)
Enter a parse tree produced by themodulelabeled alternative inMySqlParser.authenticationRule().The default implementation does nothing.
- Specified by:
enterModulein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitModule
public void exitModule(MySqlParser.ModuleContext ctx)
Exit a parse tree produced by themodulelabeled alternative inMySqlParser.authenticationRule().The default implementation does nothing.
- Specified by:
exitModulein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPasswordModuleOption
public void enterPasswordModuleOption(MySqlParser.PasswordModuleOptionContext ctx)
Enter a parse tree produced by thepasswordModuleOptionlabeled alternative inMySqlParser.authenticationRule().The default implementation does nothing.
- Specified by:
enterPasswordModuleOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPasswordModuleOption
public void exitPasswordModuleOption(MySqlParser.PasswordModuleOptionContext ctx)
Exit a parse tree produced by thepasswordModuleOptionlabeled alternative inMySqlParser.authenticationRule().The default implementation does nothing.
- Specified by:
exitPasswordModuleOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTlsOption
public void enterTlsOption(MySqlParser.TlsOptionContext ctx)
Enter a parse tree produced byMySqlParser.tlsOption().The default implementation does nothing.
- Specified by:
enterTlsOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTlsOption
public void exitTlsOption(MySqlParser.TlsOptionContext ctx)
Exit a parse tree produced byMySqlParser.tlsOption().The default implementation does nothing.
- Specified by:
exitTlsOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUserResourceOption
public void enterUserResourceOption(MySqlParser.UserResourceOptionContext ctx)
Enter a parse tree produced byMySqlParser.userResourceOption().The default implementation does nothing.
- Specified by:
enterUserResourceOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUserResourceOption
public void exitUserResourceOption(MySqlParser.UserResourceOptionContext ctx)
Exit a parse tree produced byMySqlParser.userResourceOption().The default implementation does nothing.
- Specified by:
exitUserResourceOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUserPasswordOption
public void enterUserPasswordOption(MySqlParser.UserPasswordOptionContext ctx)
Enter a parse tree produced byMySqlParser.userPasswordOption().The default implementation does nothing.
- Specified by:
enterUserPasswordOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUserPasswordOption
public void exitUserPasswordOption(MySqlParser.UserPasswordOptionContext ctx)
Exit a parse tree produced byMySqlParser.userPasswordOption().The default implementation does nothing.
- Specified by:
exitUserPasswordOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUserLockOption
public void enterUserLockOption(MySqlParser.UserLockOptionContext ctx)
Enter a parse tree produced byMySqlParser.userLockOption().The default implementation does nothing.
- Specified by:
enterUserLockOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUserLockOption
public void exitUserLockOption(MySqlParser.UserLockOptionContext ctx)
Exit a parse tree produced byMySqlParser.userLockOption().The default implementation does nothing.
- Specified by:
exitUserLockOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPrivelegeClause
public void enterPrivelegeClause(MySqlParser.PrivelegeClauseContext ctx)
Enter a parse tree produced byMySqlParser.privelegeClause().The default implementation does nothing.
- Specified by:
enterPrivelegeClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPrivelegeClause
public void exitPrivelegeClause(MySqlParser.PrivelegeClauseContext ctx)
Exit a parse tree produced byMySqlParser.privelegeClause().The default implementation does nothing.
- Specified by:
exitPrivelegeClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPrivilege
public void enterPrivilege(MySqlParser.PrivilegeContext ctx)
Enter a parse tree produced byMySqlParser.privilege().The default implementation does nothing.
- Specified by:
enterPrivilegein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPrivilege
public void exitPrivilege(MySqlParser.PrivilegeContext ctx)
Exit a parse tree produced byMySqlParser.privilege().The default implementation does nothing.
- Specified by:
exitPrivilegein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCurrentSchemaPriviLevel
public void enterCurrentSchemaPriviLevel(MySqlParser.CurrentSchemaPriviLevelContext ctx)
Enter a parse tree produced by thecurrentSchemaPriviLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
enterCurrentSchemaPriviLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCurrentSchemaPriviLevel
public void exitCurrentSchemaPriviLevel(MySqlParser.CurrentSchemaPriviLevelContext ctx)
Exit a parse tree produced by thecurrentSchemaPriviLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
exitCurrentSchemaPriviLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterGlobalPrivLevel
public void enterGlobalPrivLevel(MySqlParser.GlobalPrivLevelContext ctx)
Enter a parse tree produced by theglobalPrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
enterGlobalPrivLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitGlobalPrivLevel
public void exitGlobalPrivLevel(MySqlParser.GlobalPrivLevelContext ctx)
Exit a parse tree produced by theglobalPrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
exitGlobalPrivLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDefiniteSchemaPrivLevel
public void enterDefiniteSchemaPrivLevel(MySqlParser.DefiniteSchemaPrivLevelContext ctx)
Enter a parse tree produced by thedefiniteSchemaPrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
enterDefiniteSchemaPrivLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDefiniteSchemaPrivLevel
public void exitDefiniteSchemaPrivLevel(MySqlParser.DefiniteSchemaPrivLevelContext ctx)
Exit a parse tree produced by thedefiniteSchemaPrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
exitDefiniteSchemaPrivLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDefiniteFullTablePrivLevel
public void enterDefiniteFullTablePrivLevel(MySqlParser.DefiniteFullTablePrivLevelContext ctx)
Enter a parse tree produced by thedefiniteFullTablePrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
enterDefiniteFullTablePrivLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDefiniteFullTablePrivLevel
public void exitDefiniteFullTablePrivLevel(MySqlParser.DefiniteFullTablePrivLevelContext ctx)
Exit a parse tree produced by thedefiniteFullTablePrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
exitDefiniteFullTablePrivLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDefiniteFullTablePrivLevel2
public void enterDefiniteFullTablePrivLevel2(MySqlParser.DefiniteFullTablePrivLevel2Context ctx)
Enter a parse tree produced by thedefiniteFullTablePrivLevel2labeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
enterDefiniteFullTablePrivLevel2in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDefiniteFullTablePrivLevel2
public void exitDefiniteFullTablePrivLevel2(MySqlParser.DefiniteFullTablePrivLevel2Context ctx)
Exit a parse tree produced by thedefiniteFullTablePrivLevel2labeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
exitDefiniteFullTablePrivLevel2in interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDefiniteTablePrivLevel
public void enterDefiniteTablePrivLevel(MySqlParser.DefiniteTablePrivLevelContext ctx)
Enter a parse tree produced by thedefiniteTablePrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
enterDefiniteTablePrivLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDefiniteTablePrivLevel
public void exitDefiniteTablePrivLevel(MySqlParser.DefiniteTablePrivLevelContext ctx)
Exit a parse tree produced by thedefiniteTablePrivLevellabeled alternative inMySqlParser.privilegeLevel().The default implementation does nothing.
- Specified by:
exitDefiniteTablePrivLevelin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRenameUserClause
public void enterRenameUserClause(MySqlParser.RenameUserClauseContext ctx)
Enter a parse tree produced byMySqlParser.renameUserClause().The default implementation does nothing.
- Specified by:
enterRenameUserClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRenameUserClause
public void exitRenameUserClause(MySqlParser.RenameUserClauseContext ctx)
Exit a parse tree produced byMySqlParser.renameUserClause().The default implementation does nothing.
- Specified by:
exitRenameUserClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAnalyzeTable
public void enterAnalyzeTable(MySqlParser.AnalyzeTableContext ctx)
Enter a parse tree produced byMySqlParser.analyzeTable().The default implementation does nothing.
- Specified by:
enterAnalyzeTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAnalyzeTable
public void exitAnalyzeTable(MySqlParser.AnalyzeTableContext ctx)
Exit a parse tree produced byMySqlParser.analyzeTable().The default implementation does nothing.
- Specified by:
exitAnalyzeTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCheckTable
public void enterCheckTable(MySqlParser.CheckTableContext ctx)
Enter a parse tree produced byMySqlParser.checkTable().The default implementation does nothing.
- Specified by:
enterCheckTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCheckTable
public void exitCheckTable(MySqlParser.CheckTableContext ctx)
Exit a parse tree produced byMySqlParser.checkTable().The default implementation does nothing.
- Specified by:
exitCheckTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterChecksumTable
public void enterChecksumTable(MySqlParser.ChecksumTableContext ctx)
Enter a parse tree produced byMySqlParser.checksumTable().The default implementation does nothing.
- Specified by:
enterChecksumTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitChecksumTable
public void exitChecksumTable(MySqlParser.ChecksumTableContext ctx)
Exit a parse tree produced byMySqlParser.checksumTable().The default implementation does nothing.
- Specified by:
exitChecksumTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterOptimizeTable
public void enterOptimizeTable(MySqlParser.OptimizeTableContext ctx)
Enter a parse tree produced byMySqlParser.optimizeTable().The default implementation does nothing.
- Specified by:
enterOptimizeTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitOptimizeTable
public void exitOptimizeTable(MySqlParser.OptimizeTableContext ctx)
Exit a parse tree produced byMySqlParser.optimizeTable().The default implementation does nothing.
- Specified by:
exitOptimizeTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRepairTable
public void enterRepairTable(MySqlParser.RepairTableContext ctx)
Enter a parse tree produced byMySqlParser.repairTable().The default implementation does nothing.
- Specified by:
enterRepairTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRepairTable
public void exitRepairTable(MySqlParser.RepairTableContext ctx)
Exit a parse tree produced byMySqlParser.repairTable().The default implementation does nothing.
- Specified by:
exitRepairTablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCheckTableOption
public void enterCheckTableOption(MySqlParser.CheckTableOptionContext ctx)
Enter a parse tree produced byMySqlParser.checkTableOption().The default implementation does nothing.
- Specified by:
enterCheckTableOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCheckTableOption
public void exitCheckTableOption(MySqlParser.CheckTableOptionContext ctx)
Exit a parse tree produced byMySqlParser.checkTableOption().The default implementation does nothing.
- Specified by:
exitCheckTableOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCreateUdfunction
public void enterCreateUdfunction(MySqlParser.CreateUdfunctionContext ctx)
Enter a parse tree produced byMySqlParser.createUdfunction().The default implementation does nothing.
- Specified by:
enterCreateUdfunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCreateUdfunction
public void exitCreateUdfunction(MySqlParser.CreateUdfunctionContext ctx)
Exit a parse tree produced byMySqlParser.createUdfunction().The default implementation does nothing.
- Specified by:
exitCreateUdfunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterInstallPlugin
public void enterInstallPlugin(MySqlParser.InstallPluginContext ctx)
Enter a parse tree produced byMySqlParser.installPlugin().The default implementation does nothing.
- Specified by:
enterInstallPluginin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitInstallPlugin
public void exitInstallPlugin(MySqlParser.InstallPluginContext ctx)
Exit a parse tree produced byMySqlParser.installPlugin().The default implementation does nothing.
- Specified by:
exitInstallPluginin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUninstallPlugin
public void enterUninstallPlugin(MySqlParser.UninstallPluginContext ctx)
Enter a parse tree produced byMySqlParser.uninstallPlugin().The default implementation does nothing.
- Specified by:
enterUninstallPluginin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUninstallPlugin
public void exitUninstallPlugin(MySqlParser.UninstallPluginContext ctx)
Exit a parse tree produced byMySqlParser.uninstallPlugin().The default implementation does nothing.
- Specified by:
exitUninstallPluginin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetVariable
public void enterSetVariable(MySqlParser.SetVariableContext ctx)
Enter a parse tree produced by thesetVariablelabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
enterSetVariablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetVariable
public void exitSetVariable(MySqlParser.SetVariableContext ctx)
Exit a parse tree produced by thesetVariablelabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
exitSetVariablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetCharset
public void enterSetCharset(MySqlParser.SetCharsetContext ctx)
Enter a parse tree produced by thesetCharsetlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
enterSetCharsetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetCharset
public void exitSetCharset(MySqlParser.SetCharsetContext ctx)
Exit a parse tree produced by thesetCharsetlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
exitSetCharsetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetNames
public void enterSetNames(MySqlParser.SetNamesContext ctx)
Enter a parse tree produced by thesetNameslabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
enterSetNamesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetNames
public void exitSetNames(MySqlParser.SetNamesContext ctx)
Exit a parse tree produced by thesetNameslabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
exitSetNamesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetPassword
public void enterSetPassword(MySqlParser.SetPasswordContext ctx)
Enter a parse tree produced by thesetPasswordlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
enterSetPasswordin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetPassword
public void exitSetPassword(MySqlParser.SetPasswordContext ctx)
Exit a parse tree produced by thesetPasswordlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
exitSetPasswordin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetTransaction
public void enterSetTransaction(MySqlParser.SetTransactionContext ctx)
Enter a parse tree produced by thesetTransactionlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
enterSetTransactionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetTransaction
public void exitSetTransaction(MySqlParser.SetTransactionContext ctx)
Exit a parse tree produced by thesetTransactionlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
exitSetTransactionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetAutocommit
public void enterSetAutocommit(MySqlParser.SetAutocommitContext ctx)
Enter a parse tree produced by thesetAutocommitlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
enterSetAutocommitin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetAutocommit
public void exitSetAutocommit(MySqlParser.SetAutocommitContext ctx)
Exit a parse tree produced by thesetAutocommitlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
exitSetAutocommitin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSetNewValueInsideTrigger
public void enterSetNewValueInsideTrigger(MySqlParser.SetNewValueInsideTriggerContext ctx)
Enter a parse tree produced by thesetNewValueInsideTriggerlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
enterSetNewValueInsideTriggerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSetNewValueInsideTrigger
public void exitSetNewValueInsideTrigger(MySqlParser.SetNewValueInsideTriggerContext ctx)
Exit a parse tree produced by thesetNewValueInsideTriggerlabeled alternative inMySqlParser.setStatement().The default implementation does nothing.
- Specified by:
exitSetNewValueInsideTriggerin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowMasterLogs
public void enterShowMasterLogs(MySqlParser.ShowMasterLogsContext ctx)
Enter a parse tree produced by theshowMasterLogslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowMasterLogsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowMasterLogs
public void exitShowMasterLogs(MySqlParser.ShowMasterLogsContext ctx)
Exit a parse tree produced by theshowMasterLogslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowMasterLogsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowLogEvents
public void enterShowLogEvents(MySqlParser.ShowLogEventsContext ctx)
Enter a parse tree produced by theshowLogEventslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowLogEventsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowLogEvents
public void exitShowLogEvents(MySqlParser.ShowLogEventsContext ctx)
Exit a parse tree produced by theshowLogEventslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowLogEventsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowObjectFilter
public void enterShowObjectFilter(MySqlParser.ShowObjectFilterContext ctx)
Enter a parse tree produced by theshowObjectFilterlabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowObjectFilterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowObjectFilter
public void exitShowObjectFilter(MySqlParser.ShowObjectFilterContext ctx)
Exit a parse tree produced by theshowObjectFilterlabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowObjectFilterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowColumns
public void enterShowColumns(MySqlParser.ShowColumnsContext ctx)
Enter a parse tree produced by theshowColumnslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowColumnsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowColumns
public void exitShowColumns(MySqlParser.ShowColumnsContext ctx)
Exit a parse tree produced by theshowColumnslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowColumnsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowCreateDb
public void enterShowCreateDb(MySqlParser.ShowCreateDbContext ctx)
Enter a parse tree produced by theshowCreateDblabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowCreateDbin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowCreateDb
public void exitShowCreateDb(MySqlParser.ShowCreateDbContext ctx)
Exit a parse tree produced by theshowCreateDblabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowCreateDbin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowCreateFullIdObject
public void enterShowCreateFullIdObject(MySqlParser.ShowCreateFullIdObjectContext ctx)
Enter a parse tree produced by theshowCreateFullIdObjectlabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowCreateFullIdObjectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowCreateFullIdObject
public void exitShowCreateFullIdObject(MySqlParser.ShowCreateFullIdObjectContext ctx)
Exit a parse tree produced by theshowCreateFullIdObjectlabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowCreateFullIdObjectin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowCreateUser
public void enterShowCreateUser(MySqlParser.ShowCreateUserContext ctx)
Enter a parse tree produced by theshowCreateUserlabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowCreateUserin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowCreateUser
public void exitShowCreateUser(MySqlParser.ShowCreateUserContext ctx)
Exit a parse tree produced by theshowCreateUserlabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowCreateUserin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowEngine
public void enterShowEngine(MySqlParser.ShowEngineContext ctx)
Enter a parse tree produced by theshowEnginelabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowEnginein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowEngine
public void exitShowEngine(MySqlParser.ShowEngineContext ctx)
Exit a parse tree produced by theshowEnginelabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowEnginein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowGlobalInfo
public void enterShowGlobalInfo(MySqlParser.ShowGlobalInfoContext ctx)
Enter a parse tree produced by theshowGlobalInfolabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowGlobalInfoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowGlobalInfo
public void exitShowGlobalInfo(MySqlParser.ShowGlobalInfoContext ctx)
Exit a parse tree produced by theshowGlobalInfolabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowGlobalInfoin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowErrors
public void enterShowErrors(MySqlParser.ShowErrorsContext ctx)
Enter a parse tree produced by theshowErrorslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowErrorsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowErrors
public void exitShowErrors(MySqlParser.ShowErrorsContext ctx)
Exit a parse tree produced by theshowErrorslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowErrorsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowCountErrors
public void enterShowCountErrors(MySqlParser.ShowCountErrorsContext ctx)
Enter a parse tree produced by theshowCountErrorslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowCountErrorsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowCountErrors
public void exitShowCountErrors(MySqlParser.ShowCountErrorsContext ctx)
Exit a parse tree produced by theshowCountErrorslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowCountErrorsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowSchemaFilter
public void enterShowSchemaFilter(MySqlParser.ShowSchemaFilterContext ctx)
Enter a parse tree produced by theshowSchemaFilterlabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowSchemaFilterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowSchemaFilter
public void exitShowSchemaFilter(MySqlParser.ShowSchemaFilterContext ctx)
Exit a parse tree produced by theshowSchemaFilterlabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowSchemaFilterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowRoutine
public void enterShowRoutine(MySqlParser.ShowRoutineContext ctx)
Enter a parse tree produced by theshowRoutinelabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowRoutinein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowRoutine
public void exitShowRoutine(MySqlParser.ShowRoutineContext ctx)
Exit a parse tree produced by theshowRoutinelabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowRoutinein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowGrants
public void enterShowGrants(MySqlParser.ShowGrantsContext ctx)
Enter a parse tree produced by theshowGrantslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowGrantsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowGrants
public void exitShowGrants(MySqlParser.ShowGrantsContext ctx)
Exit a parse tree produced by theshowGrantslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowGrantsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowIndexes
public void enterShowIndexes(MySqlParser.ShowIndexesContext ctx)
Enter a parse tree produced by theshowIndexeslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowIndexesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowIndexes
public void exitShowIndexes(MySqlParser.ShowIndexesContext ctx)
Exit a parse tree produced by theshowIndexeslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowIndexesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowOpenTables
public void enterShowOpenTables(MySqlParser.ShowOpenTablesContext ctx)
Enter a parse tree produced by theshowOpenTableslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowOpenTablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowOpenTables
public void exitShowOpenTables(MySqlParser.ShowOpenTablesContext ctx)
Exit a parse tree produced by theshowOpenTableslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowOpenTablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowProfile
public void enterShowProfile(MySqlParser.ShowProfileContext ctx)
Enter a parse tree produced by theshowProfilelabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowProfilein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowProfile
public void exitShowProfile(MySqlParser.ShowProfileContext ctx)
Exit a parse tree produced by theshowProfilelabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowProfilein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowSlaveStatus
public void enterShowSlaveStatus(MySqlParser.ShowSlaveStatusContext ctx)
Enter a parse tree produced by theshowSlaveStatuslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
enterShowSlaveStatusin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowSlaveStatus
public void exitShowSlaveStatus(MySqlParser.ShowSlaveStatusContext ctx)
Exit a parse tree produced by theshowSlaveStatuslabeled alternative inMySqlParser.showStatement().The default implementation does nothing.
- Specified by:
exitShowSlaveStatusin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterVariableClause
public void enterVariableClause(MySqlParser.VariableClauseContext ctx)
Enter a parse tree produced byMySqlParser.variableClause().The default implementation does nothing.
- Specified by:
enterVariableClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitVariableClause
public void exitVariableClause(MySqlParser.VariableClauseContext ctx)
Exit a parse tree produced byMySqlParser.variableClause().The default implementation does nothing.
- Specified by:
exitVariableClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowCommonEntity
public void enterShowCommonEntity(MySqlParser.ShowCommonEntityContext ctx)
Enter a parse tree produced byMySqlParser.showCommonEntity().The default implementation does nothing.
- Specified by:
enterShowCommonEntityin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowCommonEntity
public void exitShowCommonEntity(MySqlParser.ShowCommonEntityContext ctx)
Exit a parse tree produced byMySqlParser.showCommonEntity().The default implementation does nothing.
- Specified by:
exitShowCommonEntityin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowFilter
public void enterShowFilter(MySqlParser.ShowFilterContext ctx)
Enter a parse tree produced byMySqlParser.showFilter().The default implementation does nothing.
- Specified by:
enterShowFilterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowFilter
public void exitShowFilter(MySqlParser.ShowFilterContext ctx)
Exit a parse tree produced byMySqlParser.showFilter().The default implementation does nothing.
- Specified by:
exitShowFilterin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowGlobalInfoClause
public void enterShowGlobalInfoClause(MySqlParser.ShowGlobalInfoClauseContext ctx)
Enter a parse tree produced byMySqlParser.showGlobalInfoClause().The default implementation does nothing.
- Specified by:
enterShowGlobalInfoClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowGlobalInfoClause
public void exitShowGlobalInfoClause(MySqlParser.ShowGlobalInfoClauseContext ctx)
Exit a parse tree produced byMySqlParser.showGlobalInfoClause().The default implementation does nothing.
- Specified by:
exitShowGlobalInfoClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowSchemaEntity
public void enterShowSchemaEntity(MySqlParser.ShowSchemaEntityContext ctx)
Enter a parse tree produced byMySqlParser.showSchemaEntity().The default implementation does nothing.
- Specified by:
enterShowSchemaEntityin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowSchemaEntity
public void exitShowSchemaEntity(MySqlParser.ShowSchemaEntityContext ctx)
Exit a parse tree produced byMySqlParser.showSchemaEntity().The default implementation does nothing.
- Specified by:
exitShowSchemaEntityin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShowProfileType
public void enterShowProfileType(MySqlParser.ShowProfileTypeContext ctx)
Enter a parse tree produced byMySqlParser.showProfileType().The default implementation does nothing.
- Specified by:
enterShowProfileTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShowProfileType
public void exitShowProfileType(MySqlParser.ShowProfileTypeContext ctx)
Exit a parse tree produced byMySqlParser.showProfileType().The default implementation does nothing.
- Specified by:
exitShowProfileTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBinlogStatement
public void enterBinlogStatement(MySqlParser.BinlogStatementContext ctx)
Enter a parse tree produced byMySqlParser.binlogStatement().The default implementation does nothing.
- Specified by:
enterBinlogStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBinlogStatement
public void exitBinlogStatement(MySqlParser.BinlogStatementContext ctx)
Exit a parse tree produced byMySqlParser.binlogStatement().The default implementation does nothing.
- Specified by:
exitBinlogStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCacheIndexStatement
public void enterCacheIndexStatement(MySqlParser.CacheIndexStatementContext ctx)
Enter a parse tree produced byMySqlParser.cacheIndexStatement().The default implementation does nothing.
- Specified by:
enterCacheIndexStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCacheIndexStatement
public void exitCacheIndexStatement(MySqlParser.CacheIndexStatementContext ctx)
Exit a parse tree produced byMySqlParser.cacheIndexStatement().The default implementation does nothing.
- Specified by:
exitCacheIndexStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFlushStatement
public void enterFlushStatement(MySqlParser.FlushStatementContext ctx)
Enter a parse tree produced byMySqlParser.flushStatement().The default implementation does nothing.
- Specified by:
enterFlushStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFlushStatement
public void exitFlushStatement(MySqlParser.FlushStatementContext ctx)
Exit a parse tree produced byMySqlParser.flushStatement().The default implementation does nothing.
- Specified by:
exitFlushStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterKillStatement
public void enterKillStatement(MySqlParser.KillStatementContext ctx)
Enter a parse tree produced byMySqlParser.killStatement().The default implementation does nothing.
- Specified by:
enterKillStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitKillStatement
public void exitKillStatement(MySqlParser.KillStatementContext ctx)
Exit a parse tree produced byMySqlParser.killStatement().The default implementation does nothing.
- Specified by:
exitKillStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLoadIndexIntoCache
public void enterLoadIndexIntoCache(MySqlParser.LoadIndexIntoCacheContext ctx)
Enter a parse tree produced byMySqlParser.loadIndexIntoCache().The default implementation does nothing.
- Specified by:
enterLoadIndexIntoCachein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLoadIndexIntoCache
public void exitLoadIndexIntoCache(MySqlParser.LoadIndexIntoCacheContext ctx)
Exit a parse tree produced byMySqlParser.loadIndexIntoCache().The default implementation does nothing.
- Specified by:
exitLoadIndexIntoCachein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterResetStatement
public void enterResetStatement(MySqlParser.ResetStatementContext ctx)
Enter a parse tree produced byMySqlParser.resetStatement().The default implementation does nothing.
- Specified by:
enterResetStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitResetStatement
public void exitResetStatement(MySqlParser.ResetStatementContext ctx)
Exit a parse tree produced byMySqlParser.resetStatement().The default implementation does nothing.
- Specified by:
exitResetStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterShutdownStatement
public void enterShutdownStatement(MySqlParser.ShutdownStatementContext ctx)
Enter a parse tree produced byMySqlParser.shutdownStatement().The default implementation does nothing.
- Specified by:
enterShutdownStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitShutdownStatement
public void exitShutdownStatement(MySqlParser.ShutdownStatementContext ctx)
Exit a parse tree produced byMySqlParser.shutdownStatement().The default implementation does nothing.
- Specified by:
exitShutdownStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableIndexes
public void enterTableIndexes(MySqlParser.TableIndexesContext ctx)
Enter a parse tree produced byMySqlParser.tableIndexes().The default implementation does nothing.
- Specified by:
enterTableIndexesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableIndexes
public void exitTableIndexes(MySqlParser.TableIndexesContext ctx)
Exit a parse tree produced byMySqlParser.tableIndexes().The default implementation does nothing.
- Specified by:
exitTableIndexesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleFlushOption
public void enterSimpleFlushOption(MySqlParser.SimpleFlushOptionContext ctx)
Enter a parse tree produced by thesimpleFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation does nothing.
- Specified by:
enterSimpleFlushOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleFlushOption
public void exitSimpleFlushOption(MySqlParser.SimpleFlushOptionContext ctx)
Exit a parse tree produced by thesimpleFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation does nothing.
- Specified by:
exitSimpleFlushOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterChannelFlushOption
public void enterChannelFlushOption(MySqlParser.ChannelFlushOptionContext ctx)
Enter a parse tree produced by thechannelFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation does nothing.
- Specified by:
enterChannelFlushOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitChannelFlushOption
public void exitChannelFlushOption(MySqlParser.ChannelFlushOptionContext ctx)
Exit a parse tree produced by thechannelFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation does nothing.
- Specified by:
exitChannelFlushOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableFlushOption
public void enterTableFlushOption(MySqlParser.TableFlushOptionContext ctx)
Enter a parse tree produced by thetableFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation does nothing.
- Specified by:
enterTableFlushOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableFlushOption
public void exitTableFlushOption(MySqlParser.TableFlushOptionContext ctx)
Exit a parse tree produced by thetableFlushOptionlabeled alternative inMySqlParser.flushOption().The default implementation does nothing.
- Specified by:
exitTableFlushOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFlushTableOption
public void enterFlushTableOption(MySqlParser.FlushTableOptionContext ctx)
Enter a parse tree produced byMySqlParser.flushTableOption().The default implementation does nothing.
- Specified by:
enterFlushTableOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFlushTableOption
public void exitFlushTableOption(MySqlParser.FlushTableOptionContext ctx)
Exit a parse tree produced byMySqlParser.flushTableOption().The default implementation does nothing.
- Specified by:
exitFlushTableOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLoadedTableIndexes
public void enterLoadedTableIndexes(MySqlParser.LoadedTableIndexesContext ctx)
Enter a parse tree produced byMySqlParser.loadedTableIndexes().The default implementation does nothing.
- Specified by:
enterLoadedTableIndexesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLoadedTableIndexes
public void exitLoadedTableIndexes(MySqlParser.LoadedTableIndexesContext ctx)
Exit a parse tree produced byMySqlParser.loadedTableIndexes().The default implementation does nothing.
- Specified by:
exitLoadedTableIndexesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleDescribeStatement
public void enterSimpleDescribeStatement(MySqlParser.SimpleDescribeStatementContext ctx)
Enter a parse tree produced byMySqlParser.simpleDescribeStatement().The default implementation does nothing.
- Specified by:
enterSimpleDescribeStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleDescribeStatement
public void exitSimpleDescribeStatement(MySqlParser.SimpleDescribeStatementContext ctx)
Exit a parse tree produced byMySqlParser.simpleDescribeStatement().The default implementation does nothing.
- Specified by:
exitSimpleDescribeStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFullDescribeStatement
public void enterFullDescribeStatement(MySqlParser.FullDescribeStatementContext ctx)
Enter a parse tree produced byMySqlParser.fullDescribeStatement().The default implementation does nothing.
- Specified by:
enterFullDescribeStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFullDescribeStatement
public void exitFullDescribeStatement(MySqlParser.FullDescribeStatementContext ctx)
Exit a parse tree produced byMySqlParser.fullDescribeStatement().The default implementation does nothing.
- Specified by:
exitFullDescribeStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHelpStatement
public void enterHelpStatement(MySqlParser.HelpStatementContext ctx)
Enter a parse tree produced byMySqlParser.helpStatement().The default implementation does nothing.
- Specified by:
enterHelpStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHelpStatement
public void exitHelpStatement(MySqlParser.HelpStatementContext ctx)
Exit a parse tree produced byMySqlParser.helpStatement().The default implementation does nothing.
- Specified by:
exitHelpStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUseStatement
public void enterUseStatement(MySqlParser.UseStatementContext ctx)
Enter a parse tree produced byMySqlParser.useStatement().The default implementation does nothing.
- Specified by:
enterUseStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUseStatement
public void exitUseStatement(MySqlParser.UseStatementContext ctx)
Exit a parse tree produced byMySqlParser.useStatement().The default implementation does nothing.
- Specified by:
exitUseStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSignalStatement
public void enterSignalStatement(MySqlParser.SignalStatementContext ctx)
Enter a parse tree produced byMySqlParser.signalStatement().The default implementation does nothing.
- Specified by:
enterSignalStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSignalStatement
public void exitSignalStatement(MySqlParser.SignalStatementContext ctx)
Exit a parse tree produced byMySqlParser.signalStatement().The default implementation does nothing.
- Specified by:
exitSignalStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterResignalStatement
public void enterResignalStatement(MySqlParser.ResignalStatementContext ctx)
Enter a parse tree produced byMySqlParser.resignalStatement().The default implementation does nothing.
- Specified by:
enterResignalStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitResignalStatement
public void exitResignalStatement(MySqlParser.ResignalStatementContext ctx)
Exit a parse tree produced byMySqlParser.resignalStatement().The default implementation does nothing.
- Specified by:
exitResignalStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSignalConditionInformation
public void enterSignalConditionInformation(MySqlParser.SignalConditionInformationContext ctx)
Enter a parse tree produced byMySqlParser.signalConditionInformation().The default implementation does nothing.
- Specified by:
enterSignalConditionInformationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSignalConditionInformation
public void exitSignalConditionInformation(MySqlParser.SignalConditionInformationContext ctx)
Exit a parse tree produced byMySqlParser.signalConditionInformation().The default implementation does nothing.
- Specified by:
exitSignalConditionInformationin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDiagnosticsStatement
public void enterDiagnosticsStatement(MySqlParser.DiagnosticsStatementContext ctx)
Enter a parse tree produced byMySqlParser.diagnosticsStatement().The default implementation does nothing.
- Specified by:
enterDiagnosticsStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDiagnosticsStatement
public void exitDiagnosticsStatement(MySqlParser.DiagnosticsStatementContext ctx)
Exit a parse tree produced byMySqlParser.diagnosticsStatement().The default implementation does nothing.
- Specified by:
exitDiagnosticsStatementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDiagnosticsConditionInformationName
public void enterDiagnosticsConditionInformationName(MySqlParser.DiagnosticsConditionInformationNameContext ctx)
Enter a parse tree produced byMySqlParser.diagnosticsConditionInformationName().The default implementation does nothing.
- Specified by:
enterDiagnosticsConditionInformationNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDiagnosticsConditionInformationName
public void exitDiagnosticsConditionInformationName(MySqlParser.DiagnosticsConditionInformationNameContext ctx)
Exit a parse tree produced byMySqlParser.diagnosticsConditionInformationName().The default implementation does nothing.
- Specified by:
exitDiagnosticsConditionInformationNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDescribeStatements
public void enterDescribeStatements(MySqlParser.DescribeStatementsContext ctx)
Enter a parse tree produced by thedescribeStatementslabeled alternative inMySqlParser.describeObjectClause().The default implementation does nothing.
- Specified by:
enterDescribeStatementsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDescribeStatements
public void exitDescribeStatements(MySqlParser.DescribeStatementsContext ctx)
Exit a parse tree produced by thedescribeStatementslabeled alternative inMySqlParser.describeObjectClause().The default implementation does nothing.
- Specified by:
exitDescribeStatementsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDescribeConnection
public void enterDescribeConnection(MySqlParser.DescribeConnectionContext ctx)
Enter a parse tree produced by thedescribeConnectionlabeled alternative inMySqlParser.describeObjectClause().The default implementation does nothing.
- Specified by:
enterDescribeConnectionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDescribeConnection
public void exitDescribeConnection(MySqlParser.DescribeConnectionContext ctx)
Exit a parse tree produced by thedescribeConnectionlabeled alternative inMySqlParser.describeObjectClause().The default implementation does nothing.
- Specified by:
exitDescribeConnectionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFullId
public void enterFullId(MySqlParser.FullIdContext ctx)
Enter a parse tree produced byMySqlParser.fullId().The default implementation does nothing.
- Specified by:
enterFullIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFullId
public void exitFullId(MySqlParser.FullIdContext ctx)
Exit a parse tree produced byMySqlParser.fullId().The default implementation does nothing.
- Specified by:
exitFullIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTableName
public void enterTableName(MySqlParser.TableNameContext ctx)
Enter a parse tree produced byMySqlParser.tableName().The default implementation does nothing.
- Specified by:
enterTableNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTableName
public void exitTableName(MySqlParser.TableNameContext ctx)
Exit a parse tree produced byMySqlParser.tableName().The default implementation does nothing.
- Specified by:
exitTableNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFullColumnName
public void enterFullColumnName(MySqlParser.FullColumnNameContext ctx)
Enter a parse tree produced byMySqlParser.fullColumnName().The default implementation does nothing.
- Specified by:
enterFullColumnNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFullColumnName
public void exitFullColumnName(MySqlParser.FullColumnNameContext ctx)
Exit a parse tree produced byMySqlParser.fullColumnName().The default implementation does nothing.
- Specified by:
exitFullColumnNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIndexColumnName
public void enterIndexColumnName(MySqlParser.IndexColumnNameContext ctx)
Enter a parse tree produced byMySqlParser.indexColumnName().The default implementation does nothing.
- Specified by:
enterIndexColumnNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIndexColumnName
public void exitIndexColumnName(MySqlParser.IndexColumnNameContext ctx)
Exit a parse tree produced byMySqlParser.indexColumnName().The default implementation does nothing.
- Specified by:
exitIndexColumnNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUserName
public void enterUserName(MySqlParser.UserNameContext ctx)
Enter a parse tree produced byMySqlParser.userName().The default implementation does nothing.
- Specified by:
enterUserNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUserName
public void exitUserName(MySqlParser.UserNameContext ctx)
Exit a parse tree produced byMySqlParser.userName().The default implementation does nothing.
- Specified by:
exitUserNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMysqlVariable
public void enterMysqlVariable(MySqlParser.MysqlVariableContext ctx)
Enter a parse tree produced byMySqlParser.mysqlVariable().The default implementation does nothing.
- Specified by:
enterMysqlVariablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMysqlVariable
public void exitMysqlVariable(MySqlParser.MysqlVariableContext ctx)
Exit a parse tree produced byMySqlParser.mysqlVariable().The default implementation does nothing.
- Specified by:
exitMysqlVariablein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCharsetName
public void enterCharsetName(MySqlParser.CharsetNameContext ctx)
Enter a parse tree produced byMySqlParser.charsetName().The default implementation does nothing.
- Specified by:
enterCharsetNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCharsetName
public void exitCharsetName(MySqlParser.CharsetNameContext ctx)
Exit a parse tree produced byMySqlParser.charsetName().The default implementation does nothing.
- Specified by:
exitCharsetNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCollationName
public void enterCollationName(MySqlParser.CollationNameContext ctx)
Enter a parse tree produced byMySqlParser.collationName().The default implementation does nothing.
- Specified by:
enterCollationNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCollationName
public void exitCollationName(MySqlParser.CollationNameContext ctx)
Exit a parse tree produced byMySqlParser.collationName().The default implementation does nothing.
- Specified by:
exitCollationNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterEngineName
public void enterEngineName(MySqlParser.EngineNameContext ctx)
Enter a parse tree produced byMySqlParser.engineName().The default implementation does nothing.
- Specified by:
enterEngineNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitEngineName
public void exitEngineName(MySqlParser.EngineNameContext ctx)
Exit a parse tree produced byMySqlParser.engineName().The default implementation does nothing.
- Specified by:
exitEngineNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUuidSet
public void enterUuidSet(MySqlParser.UuidSetContext ctx)
Enter a parse tree produced byMySqlParser.uuidSet().The default implementation does nothing.
- Specified by:
enterUuidSetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUuidSet
public void exitUuidSet(MySqlParser.UuidSetContext ctx)
Exit a parse tree produced byMySqlParser.uuidSet().The default implementation does nothing.
- Specified by:
exitUuidSetin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterXid
public void enterXid(MySqlParser.XidContext ctx)
Enter a parse tree produced byMySqlParser.xid().The default implementation does nothing.
- Specified by:
enterXidin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitXid
public void exitXid(MySqlParser.XidContext ctx)
Exit a parse tree produced byMySqlParser.xid().The default implementation does nothing.
- Specified by:
exitXidin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterXuidStringId
public void enterXuidStringId(MySqlParser.XuidStringIdContext ctx)
Enter a parse tree produced byMySqlParser.xuidStringId().The default implementation does nothing.
- Specified by:
enterXuidStringIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitXuidStringId
public void exitXuidStringId(MySqlParser.XuidStringIdContext ctx)
Exit a parse tree produced byMySqlParser.xuidStringId().The default implementation does nothing.
- Specified by:
exitXuidStringIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAuthPlugin
public void enterAuthPlugin(MySqlParser.AuthPluginContext ctx)
Enter a parse tree produced byMySqlParser.authPlugin().The default implementation does nothing.
- Specified by:
enterAuthPluginin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAuthPlugin
public void exitAuthPlugin(MySqlParser.AuthPluginContext ctx)
Exit a parse tree produced byMySqlParser.authPlugin().The default implementation does nothing.
- Specified by:
exitAuthPluginin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUid
public void enterUid(MySqlParser.UidContext ctx)
Enter a parse tree produced byMySqlParser.uid().The default implementation does nothing.
- Specified by:
enterUidin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUid
public void exitUid(MySqlParser.UidContext ctx)
Exit a parse tree produced byMySqlParser.uid().The default implementation does nothing.
- Specified by:
exitUidin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleId
public void enterSimpleId(MySqlParser.SimpleIdContext ctx)
Enter a parse tree produced byMySqlParser.simpleId().The default implementation does nothing.
- Specified by:
enterSimpleIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleId
public void exitSimpleId(MySqlParser.SimpleIdContext ctx)
Exit a parse tree produced byMySqlParser.simpleId().The default implementation does nothing.
- Specified by:
exitSimpleIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDottedId
public void enterDottedId(MySqlParser.DottedIdContext ctx)
Enter a parse tree produced byMySqlParser.dottedId().The default implementation does nothing.
- Specified by:
enterDottedIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDottedId
public void exitDottedId(MySqlParser.DottedIdContext ctx)
Exit a parse tree produced byMySqlParser.dottedId().The default implementation does nothing.
- Specified by:
exitDottedIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDecimalLiteral
public void enterDecimalLiteral(MySqlParser.DecimalLiteralContext ctx)
Enter a parse tree produced byMySqlParser.decimalLiteral().The default implementation does nothing.
- Specified by:
enterDecimalLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDecimalLiteral
public void exitDecimalLiteral(MySqlParser.DecimalLiteralContext ctx)
Exit a parse tree produced byMySqlParser.decimalLiteral().The default implementation does nothing.
- Specified by:
exitDecimalLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFileSizeLiteral
public void enterFileSizeLiteral(MySqlParser.FileSizeLiteralContext ctx)
Enter a parse tree produced byMySqlParser.fileSizeLiteral().The default implementation does nothing.
- Specified by:
enterFileSizeLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFileSizeLiteral
public void exitFileSizeLiteral(MySqlParser.FileSizeLiteralContext ctx)
Exit a parse tree produced byMySqlParser.fileSizeLiteral().The default implementation does nothing.
- Specified by:
exitFileSizeLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStringLiteral
public void enterStringLiteral(MySqlParser.StringLiteralContext ctx)
Enter a parse tree produced byMySqlParser.stringLiteral().The default implementation does nothing.
- Specified by:
enterStringLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStringLiteral
public void exitStringLiteral(MySqlParser.StringLiteralContext ctx)
Exit a parse tree produced byMySqlParser.stringLiteral().The default implementation does nothing.
- Specified by:
exitStringLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBooleanLiteral
public void enterBooleanLiteral(MySqlParser.BooleanLiteralContext ctx)
Enter a parse tree produced byMySqlParser.booleanLiteral().The default implementation does nothing.
- Specified by:
enterBooleanLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBooleanLiteral
public void exitBooleanLiteral(MySqlParser.BooleanLiteralContext ctx)
Exit a parse tree produced byMySqlParser.booleanLiteral().The default implementation does nothing.
- Specified by:
exitBooleanLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterHexadecimalLiteral
public void enterHexadecimalLiteral(MySqlParser.HexadecimalLiteralContext ctx)
Enter a parse tree produced byMySqlParser.hexadecimalLiteral().The default implementation does nothing.
- Specified by:
enterHexadecimalLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitHexadecimalLiteral
public void exitHexadecimalLiteral(MySqlParser.HexadecimalLiteralContext ctx)
Exit a parse tree produced byMySqlParser.hexadecimalLiteral().The default implementation does nothing.
- Specified by:
exitHexadecimalLiteralin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterNullNotnull
public void enterNullNotnull(MySqlParser.NullNotnullContext ctx)
Enter a parse tree produced byMySqlParser.nullNotnull().The default implementation does nothing.
- Specified by:
enterNullNotnullin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitNullNotnull
public void exitNullNotnull(MySqlParser.NullNotnullContext ctx)
Exit a parse tree produced byMySqlParser.nullNotnull().The default implementation does nothing.
- Specified by:
exitNullNotnullin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterConstant
public void enterConstant(MySqlParser.ConstantContext ctx)
Enter a parse tree produced byMySqlParser.constant().The default implementation does nothing.
- Specified by:
enterConstantin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitConstant
public void exitConstant(MySqlParser.ConstantContext ctx)
Exit a parse tree produced byMySqlParser.constant().The default implementation does nothing.
- Specified by:
exitConstantin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterStringDataType
public void enterStringDataType(MySqlParser.StringDataTypeContext ctx)
Enter a parse tree produced by thestringDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterStringDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitStringDataType
public void exitStringDataType(MySqlParser.StringDataTypeContext ctx)
Exit a parse tree produced by thestringDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitStringDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterNationalStringDataType
public void enterNationalStringDataType(MySqlParser.NationalStringDataTypeContext ctx)
Enter a parse tree produced by thenationalStringDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterNationalStringDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitNationalStringDataType
public void exitNationalStringDataType(MySqlParser.NationalStringDataTypeContext ctx)
Exit a parse tree produced by thenationalStringDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitNationalStringDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterNationalVaryingStringDataType
public void enterNationalVaryingStringDataType(MySqlParser.NationalVaryingStringDataTypeContext ctx)
Enter a parse tree produced by thenationalVaryingStringDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterNationalVaryingStringDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitNationalVaryingStringDataType
public void exitNationalVaryingStringDataType(MySqlParser.NationalVaryingStringDataTypeContext ctx)
Exit a parse tree produced by thenationalVaryingStringDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitNationalVaryingStringDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDimensionDataType
public void enterDimensionDataType(MySqlParser.DimensionDataTypeContext ctx)
Enter a parse tree produced by thedimensionDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterDimensionDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDimensionDataType
public void exitDimensionDataType(MySqlParser.DimensionDataTypeContext ctx)
Exit a parse tree produced by thedimensionDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitDimensionDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleDataType
public void enterSimpleDataType(MySqlParser.SimpleDataTypeContext ctx)
Enter a parse tree produced by thesimpleDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterSimpleDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleDataType
public void exitSimpleDataType(MySqlParser.SimpleDataTypeContext ctx)
Exit a parse tree produced by thesimpleDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitSimpleDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCollectionDataType
public void enterCollectionDataType(MySqlParser.CollectionDataTypeContext ctx)
Enter a parse tree produced by thecollectionDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterCollectionDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCollectionDataType
public void exitCollectionDataType(MySqlParser.CollectionDataTypeContext ctx)
Exit a parse tree produced by thecollectionDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitCollectionDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSpatialDataType
public void enterSpatialDataType(MySqlParser.SpatialDataTypeContext ctx)
Enter a parse tree produced by thespatialDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterSpatialDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSpatialDataType
public void exitSpatialDataType(MySqlParser.SpatialDataTypeContext ctx)
Exit a parse tree produced by thespatialDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitSpatialDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLongVarcharDataType
public void enterLongVarcharDataType(MySqlParser.LongVarcharDataTypeContext ctx)
Enter a parse tree produced by thelongVarcharDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterLongVarcharDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLongVarcharDataType
public void exitLongVarcharDataType(MySqlParser.LongVarcharDataTypeContext ctx)
Exit a parse tree produced by thelongVarcharDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitLongVarcharDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLongVarbinaryDataType
public void enterLongVarbinaryDataType(MySqlParser.LongVarbinaryDataTypeContext ctx)
Enter a parse tree produced by thelongVarbinaryDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
enterLongVarbinaryDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLongVarbinaryDataType
public void exitLongVarbinaryDataType(MySqlParser.LongVarbinaryDataTypeContext ctx)
Exit a parse tree produced by thelongVarbinaryDataTypelabeled alternative inMySqlParser.dataType().The default implementation does nothing.
- Specified by:
exitLongVarbinaryDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCollectionOptions
public void enterCollectionOptions(MySqlParser.CollectionOptionsContext ctx)
Enter a parse tree produced byMySqlParser.collectionOptions().The default implementation does nothing.
- Specified by:
enterCollectionOptionsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCollectionOptions
public void exitCollectionOptions(MySqlParser.CollectionOptionsContext ctx)
Exit a parse tree produced byMySqlParser.collectionOptions().The default implementation does nothing.
- Specified by:
exitCollectionOptionsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCollectionOption
public void enterCollectionOption(MySqlParser.CollectionOptionContext ctx)
Enter a parse tree produced byMySqlParser.collectionOption().The default implementation does nothing.
- Specified by:
enterCollectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCollectionOption
public void exitCollectionOption(MySqlParser.CollectionOptionContext ctx)
Exit a parse tree produced byMySqlParser.collectionOption().The default implementation does nothing.
- Specified by:
exitCollectionOptionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterConvertedDataType
public void enterConvertedDataType(MySqlParser.ConvertedDataTypeContext ctx)
Enter a parse tree produced byMySqlParser.convertedDataType().The default implementation does nothing.
- Specified by:
enterConvertedDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitConvertedDataType
public void exitConvertedDataType(MySqlParser.ConvertedDataTypeContext ctx)
Exit a parse tree produced byMySqlParser.convertedDataType().The default implementation does nothing.
- Specified by:
exitConvertedDataTypein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLengthOneDimension
public void enterLengthOneDimension(MySqlParser.LengthOneDimensionContext ctx)
Enter a parse tree produced byMySqlParser.lengthOneDimension().The default implementation does nothing.
- Specified by:
enterLengthOneDimensionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLengthOneDimension
public void exitLengthOneDimension(MySqlParser.LengthOneDimensionContext ctx)
Exit a parse tree produced byMySqlParser.lengthOneDimension().The default implementation does nothing.
- Specified by:
exitLengthOneDimensionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLengthTwoDimension
public void enterLengthTwoDimension(MySqlParser.LengthTwoDimensionContext ctx)
Enter a parse tree produced byMySqlParser.lengthTwoDimension().The default implementation does nothing.
- Specified by:
enterLengthTwoDimensionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLengthTwoDimension
public void exitLengthTwoDimension(MySqlParser.LengthTwoDimensionContext ctx)
Exit a parse tree produced byMySqlParser.lengthTwoDimension().The default implementation does nothing.
- Specified by:
exitLengthTwoDimensionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLengthTwoOptionalDimension
public void enterLengthTwoOptionalDimension(MySqlParser.LengthTwoOptionalDimensionContext ctx)
Enter a parse tree produced byMySqlParser.lengthTwoOptionalDimension().The default implementation does nothing.
- Specified by:
enterLengthTwoOptionalDimensionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLengthTwoOptionalDimension
public void exitLengthTwoOptionalDimension(MySqlParser.LengthTwoOptionalDimensionContext ctx)
Exit a parse tree produced byMySqlParser.lengthTwoOptionalDimension().The default implementation does nothing.
- Specified by:
exitLengthTwoOptionalDimensionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUidList
public void enterUidList(MySqlParser.UidListContext ctx)
Enter a parse tree produced byMySqlParser.uidList().The default implementation does nothing.
- Specified by:
enterUidListin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUidList
public void exitUidList(MySqlParser.UidListContext ctx)
Exit a parse tree produced byMySqlParser.uidList().The default implementation does nothing.
- Specified by:
exitUidListin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTables
public void enterTables(MySqlParser.TablesContext ctx)
Enter a parse tree produced byMySqlParser.tables().The default implementation does nothing.
- Specified by:
enterTablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTables
public void exitTables(MySqlParser.TablesContext ctx)
Exit a parse tree produced byMySqlParser.tables().The default implementation does nothing.
- Specified by:
exitTablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIndexColumnNames
public void enterIndexColumnNames(MySqlParser.IndexColumnNamesContext ctx)
Enter a parse tree produced byMySqlParser.indexColumnNames().The default implementation does nothing.
- Specified by:
enterIndexColumnNamesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIndexColumnNames
public void exitIndexColumnNames(MySqlParser.IndexColumnNamesContext ctx)
Exit a parse tree produced byMySqlParser.indexColumnNames().The default implementation does nothing.
- Specified by:
exitIndexColumnNamesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterExpressions
public void enterExpressions(MySqlParser.ExpressionsContext ctx)
Enter a parse tree produced byMySqlParser.expressions().The default implementation does nothing.
- Specified by:
enterExpressionsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitExpressions
public void exitExpressions(MySqlParser.ExpressionsContext ctx)
Exit a parse tree produced byMySqlParser.expressions().The default implementation does nothing.
- Specified by:
exitExpressionsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterExpressionsWithDefaults
public void enterExpressionsWithDefaults(MySqlParser.ExpressionsWithDefaultsContext ctx)
Enter a parse tree produced byMySqlParser.expressionsWithDefaults().The default implementation does nothing.
- Specified by:
enterExpressionsWithDefaultsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitExpressionsWithDefaults
public void exitExpressionsWithDefaults(MySqlParser.ExpressionsWithDefaultsContext ctx)
Exit a parse tree produced byMySqlParser.expressionsWithDefaults().The default implementation does nothing.
- Specified by:
exitExpressionsWithDefaultsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterConstants
public void enterConstants(MySqlParser.ConstantsContext ctx)
Enter a parse tree produced byMySqlParser.constants().The default implementation does nothing.
- Specified by:
enterConstantsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitConstants
public void exitConstants(MySqlParser.ConstantsContext ctx)
Exit a parse tree produced byMySqlParser.constants().The default implementation does nothing.
- Specified by:
exitConstantsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleStrings
public void enterSimpleStrings(MySqlParser.SimpleStringsContext ctx)
Enter a parse tree produced byMySqlParser.simpleStrings().The default implementation does nothing.
- Specified by:
enterSimpleStringsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleStrings
public void exitSimpleStrings(MySqlParser.SimpleStringsContext ctx)
Exit a parse tree produced byMySqlParser.simpleStrings().The default implementation does nothing.
- Specified by:
exitSimpleStringsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUserVariables
public void enterUserVariables(MySqlParser.UserVariablesContext ctx)
Enter a parse tree produced byMySqlParser.userVariables().The default implementation does nothing.
- Specified by:
enterUserVariablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUserVariables
public void exitUserVariables(MySqlParser.UserVariablesContext ctx)
Exit a parse tree produced byMySqlParser.userVariables().The default implementation does nothing.
- Specified by:
exitUserVariablesin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDefaultValue
public void enterDefaultValue(MySqlParser.DefaultValueContext ctx)
Enter a parse tree produced byMySqlParser.defaultValue().The default implementation does nothing.
- Specified by:
enterDefaultValuein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDefaultValue
public void exitDefaultValue(MySqlParser.DefaultValueContext ctx)
Exit a parse tree produced byMySqlParser.defaultValue().The default implementation does nothing.
- Specified by:
exitDefaultValuein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCurrentTimestamp
public void enterCurrentTimestamp(MySqlParser.CurrentTimestampContext ctx)
Enter a parse tree produced byMySqlParser.currentTimestamp().The default implementation does nothing.
- Specified by:
enterCurrentTimestampin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCurrentTimestamp
public void exitCurrentTimestamp(MySqlParser.CurrentTimestampContext ctx)
Exit a parse tree produced byMySqlParser.currentTimestamp().The default implementation does nothing.
- Specified by:
exitCurrentTimestampin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterExpressionOrDefault
public void enterExpressionOrDefault(MySqlParser.ExpressionOrDefaultContext ctx)
Enter a parse tree produced byMySqlParser.expressionOrDefault().The default implementation does nothing.
- Specified by:
enterExpressionOrDefaultin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitExpressionOrDefault
public void exitExpressionOrDefault(MySqlParser.ExpressionOrDefaultContext ctx)
Exit a parse tree produced byMySqlParser.expressionOrDefault().The default implementation does nothing.
- Specified by:
exitExpressionOrDefaultin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIfExists
public void enterIfExists(MySqlParser.IfExistsContext ctx)
Enter a parse tree produced byMySqlParser.ifExists().The default implementation does nothing.
- Specified by:
enterIfExistsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIfExists
public void exitIfExists(MySqlParser.IfExistsContext ctx)
Exit a parse tree produced byMySqlParser.ifExists().The default implementation does nothing.
- Specified by:
exitIfExistsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIfNotExists
public void enterIfNotExists(MySqlParser.IfNotExistsContext ctx)
Enter a parse tree produced byMySqlParser.ifNotExists().The default implementation does nothing.
- Specified by:
enterIfNotExistsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIfNotExists
public void exitIfNotExists(MySqlParser.IfNotExistsContext ctx)
Exit a parse tree produced byMySqlParser.ifNotExists().The default implementation does nothing.
- Specified by:
exitIfNotExistsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSpecificFunctionCall
public void enterSpecificFunctionCall(MySqlParser.SpecificFunctionCallContext ctx)
Enter a parse tree produced by thespecificFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
enterSpecificFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSpecificFunctionCall
public void exitSpecificFunctionCall(MySqlParser.SpecificFunctionCallContext ctx)
Exit a parse tree produced by thespecificFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
exitSpecificFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAggregateFunctionCall
public void enterAggregateFunctionCall(MySqlParser.AggregateFunctionCallContext ctx)
Enter a parse tree produced by theaggregateFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
enterAggregateFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAggregateFunctionCall
public void exitAggregateFunctionCall(MySqlParser.AggregateFunctionCallContext ctx)
Exit a parse tree produced by theaggregateFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
exitAggregateFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterScalarFunctionCall
public void enterScalarFunctionCall(MySqlParser.ScalarFunctionCallContext ctx)
Enter a parse tree produced by thescalarFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
enterScalarFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitScalarFunctionCall
public void exitScalarFunctionCall(MySqlParser.ScalarFunctionCallContext ctx)
Exit a parse tree produced by thescalarFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
exitScalarFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUdfFunctionCall
public void enterUdfFunctionCall(MySqlParser.UdfFunctionCallContext ctx)
Enter a parse tree produced by theudfFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
enterUdfFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUdfFunctionCall
public void exitUdfFunctionCall(MySqlParser.UdfFunctionCallContext ctx)
Exit a parse tree produced by theudfFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
exitUdfFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPasswordFunctionCall
public void enterPasswordFunctionCall(MySqlParser.PasswordFunctionCallContext ctx)
Enter a parse tree produced by thepasswordFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
enterPasswordFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPasswordFunctionCall
public void exitPasswordFunctionCall(MySqlParser.PasswordFunctionCallContext ctx)
Exit a parse tree produced by thepasswordFunctionCalllabeled alternative inMySqlParser.functionCall().The default implementation does nothing.
- Specified by:
exitPasswordFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSimpleFunctionCall
public void enterSimpleFunctionCall(MySqlParser.SimpleFunctionCallContext ctx)
Enter a parse tree produced by thesimpleFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterSimpleFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSimpleFunctionCall
public void exitSimpleFunctionCall(MySqlParser.SimpleFunctionCallContext ctx)
Exit a parse tree produced by thesimpleFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitSimpleFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDataTypeFunctionCall
public void enterDataTypeFunctionCall(MySqlParser.DataTypeFunctionCallContext ctx)
Enter a parse tree produced by thedataTypeFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterDataTypeFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDataTypeFunctionCall
public void exitDataTypeFunctionCall(MySqlParser.DataTypeFunctionCallContext ctx)
Exit a parse tree produced by thedataTypeFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitDataTypeFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterValuesFunctionCall
public void enterValuesFunctionCall(MySqlParser.ValuesFunctionCallContext ctx)
Enter a parse tree produced by thevaluesFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterValuesFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitValuesFunctionCall
public void exitValuesFunctionCall(MySqlParser.ValuesFunctionCallContext ctx)
Exit a parse tree produced by thevaluesFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitValuesFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCaseFunctionCall
public void enterCaseFunctionCall(MySqlParser.CaseFunctionCallContext ctx)
Enter a parse tree produced by thecaseFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterCaseFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCaseFunctionCall
public void exitCaseFunctionCall(MySqlParser.CaseFunctionCallContext ctx)
Exit a parse tree produced by thecaseFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitCaseFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCharFunctionCall
public void enterCharFunctionCall(MySqlParser.CharFunctionCallContext ctx)
Enter a parse tree produced by thecharFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterCharFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCharFunctionCall
public void exitCharFunctionCall(MySqlParser.CharFunctionCallContext ctx)
Exit a parse tree produced by thecharFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitCharFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPositionFunctionCall
public void enterPositionFunctionCall(MySqlParser.PositionFunctionCallContext ctx)
Enter a parse tree produced by thepositionFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterPositionFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPositionFunctionCall
public void exitPositionFunctionCall(MySqlParser.PositionFunctionCallContext ctx)
Exit a parse tree produced by thepositionFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitPositionFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSubstrFunctionCall
public void enterSubstrFunctionCall(MySqlParser.SubstrFunctionCallContext ctx)
Enter a parse tree produced by thesubstrFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterSubstrFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSubstrFunctionCall
public void exitSubstrFunctionCall(MySqlParser.SubstrFunctionCallContext ctx)
Exit a parse tree produced by thesubstrFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitSubstrFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTrimFunctionCall
public void enterTrimFunctionCall(MySqlParser.TrimFunctionCallContext ctx)
Enter a parse tree produced by thetrimFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterTrimFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTrimFunctionCall
public void exitTrimFunctionCall(MySqlParser.TrimFunctionCallContext ctx)
Exit a parse tree produced by thetrimFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitTrimFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterWeightFunctionCall
public void enterWeightFunctionCall(MySqlParser.WeightFunctionCallContext ctx)
Enter a parse tree produced by theweightFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterWeightFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitWeightFunctionCall
public void exitWeightFunctionCall(MySqlParser.WeightFunctionCallContext ctx)
Exit a parse tree produced by theweightFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitWeightFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterExtractFunctionCall
public void enterExtractFunctionCall(MySqlParser.ExtractFunctionCallContext ctx)
Enter a parse tree produced by theextractFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterExtractFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitExtractFunctionCall
public void exitExtractFunctionCall(MySqlParser.ExtractFunctionCallContext ctx)
Exit a parse tree produced by theextractFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitExtractFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterGetFormatFunctionCall
public void enterGetFormatFunctionCall(MySqlParser.GetFormatFunctionCallContext ctx)
Enter a parse tree produced by thegetFormatFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
enterGetFormatFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitGetFormatFunctionCall
public void exitGetFormatFunctionCall(MySqlParser.GetFormatFunctionCallContext ctx)
Exit a parse tree produced by thegetFormatFunctionCalllabeled alternative inMySqlParser.specificFunction().The default implementation does nothing.
- Specified by:
exitGetFormatFunctionCallin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCaseFuncAlternative
public void enterCaseFuncAlternative(MySqlParser.CaseFuncAlternativeContext ctx)
Enter a parse tree produced byMySqlParser.caseFuncAlternative().The default implementation does nothing.
- Specified by:
enterCaseFuncAlternativein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCaseFuncAlternative
public void exitCaseFuncAlternative(MySqlParser.CaseFuncAlternativeContext ctx)
Exit a parse tree produced byMySqlParser.caseFuncAlternative().The default implementation does nothing.
- Specified by:
exitCaseFuncAlternativein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLevelWeightList
public void enterLevelWeightList(MySqlParser.LevelWeightListContext ctx)
Enter a parse tree produced by thelevelWeightListlabeled alternative inMySqlParser.levelsInWeightString().The default implementation does nothing.
- Specified by:
enterLevelWeightListin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLevelWeightList
public void exitLevelWeightList(MySqlParser.LevelWeightListContext ctx)
Exit a parse tree produced by thelevelWeightListlabeled alternative inMySqlParser.levelsInWeightString().The default implementation does nothing.
- Specified by:
exitLevelWeightListin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLevelWeightRange
public void enterLevelWeightRange(MySqlParser.LevelWeightRangeContext ctx)
Enter a parse tree produced by thelevelWeightRangelabeled alternative inMySqlParser.levelsInWeightString().The default implementation does nothing.
- Specified by:
enterLevelWeightRangein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLevelWeightRange
public void exitLevelWeightRange(MySqlParser.LevelWeightRangeContext ctx)
Exit a parse tree produced by thelevelWeightRangelabeled alternative inMySqlParser.levelsInWeightString().The default implementation does nothing.
- Specified by:
exitLevelWeightRangein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLevelInWeightListElement
public void enterLevelInWeightListElement(MySqlParser.LevelInWeightListElementContext ctx)
Enter a parse tree produced byMySqlParser.levelInWeightListElement().The default implementation does nothing.
- Specified by:
enterLevelInWeightListElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLevelInWeightListElement
public void exitLevelInWeightListElement(MySqlParser.LevelInWeightListElementContext ctx)
Exit a parse tree produced byMySqlParser.levelInWeightListElement().The default implementation does nothing.
- Specified by:
exitLevelInWeightListElementin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterAggregateWindowedFunction
public void enterAggregateWindowedFunction(MySqlParser.AggregateWindowedFunctionContext ctx)
Enter a parse tree produced byMySqlParser.aggregateWindowedFunction().The default implementation does nothing.
- Specified by:
enterAggregateWindowedFunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitAggregateWindowedFunction
public void exitAggregateWindowedFunction(MySqlParser.AggregateWindowedFunctionContext ctx)
Exit a parse tree produced byMySqlParser.aggregateWindowedFunction().The default implementation does nothing.
- Specified by:
exitAggregateWindowedFunctionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterScalarFunctionName
public void enterScalarFunctionName(MySqlParser.ScalarFunctionNameContext ctx)
Enter a parse tree produced byMySqlParser.scalarFunctionName().The default implementation does nothing.
- Specified by:
enterScalarFunctionNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitScalarFunctionName
public void exitScalarFunctionName(MySqlParser.ScalarFunctionNameContext ctx)
Exit a parse tree produced byMySqlParser.scalarFunctionName().The default implementation does nothing.
- Specified by:
exitScalarFunctionNamein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPasswordFunctionClause
public void enterPasswordFunctionClause(MySqlParser.PasswordFunctionClauseContext ctx)
Enter a parse tree produced byMySqlParser.passwordFunctionClause().The default implementation does nothing.
- Specified by:
enterPasswordFunctionClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPasswordFunctionClause
public void exitPasswordFunctionClause(MySqlParser.PasswordFunctionClauseContext ctx)
Exit a parse tree produced byMySqlParser.passwordFunctionClause().The default implementation does nothing.
- Specified by:
exitPasswordFunctionClausein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFunctionArgs
public void enterFunctionArgs(MySqlParser.FunctionArgsContext ctx)
Enter a parse tree produced byMySqlParser.functionArgs().The default implementation does nothing.
- Specified by:
enterFunctionArgsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFunctionArgs
public void exitFunctionArgs(MySqlParser.FunctionArgsContext ctx)
Exit a parse tree produced byMySqlParser.functionArgs().The default implementation does nothing.
- Specified by:
exitFunctionArgsin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFunctionArg
public void enterFunctionArg(MySqlParser.FunctionArgContext ctx)
Enter a parse tree produced byMySqlParser.functionArg().The default implementation does nothing.
- Specified by:
enterFunctionArgin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFunctionArg
public void exitFunctionArg(MySqlParser.FunctionArgContext ctx)
Exit a parse tree produced byMySqlParser.functionArg().The default implementation does nothing.
- Specified by:
exitFunctionArgin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIsExpression
public void enterIsExpression(MySqlParser.IsExpressionContext ctx)
Enter a parse tree produced by theisExpressionlabeled alternative inMySqlParser.expression().The default implementation does nothing.
- Specified by:
enterIsExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIsExpression
public void exitIsExpression(MySqlParser.IsExpressionContext ctx)
Exit a parse tree produced by theisExpressionlabeled alternative inMySqlParser.expression().The default implementation does nothing.
- Specified by:
exitIsExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterNotExpression
public void enterNotExpression(MySqlParser.NotExpressionContext ctx)
Enter a parse tree produced by thenotExpressionlabeled alternative inMySqlParser.expression().The default implementation does nothing.
- Specified by:
enterNotExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitNotExpression
public void exitNotExpression(MySqlParser.NotExpressionContext ctx)
Exit a parse tree produced by thenotExpressionlabeled alternative inMySqlParser.expression().The default implementation does nothing.
- Specified by:
exitNotExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLogicalExpression
public void enterLogicalExpression(MySqlParser.LogicalExpressionContext ctx)
Enter a parse tree produced by thelogicalExpressionlabeled alternative inMySqlParser.expression().The default implementation does nothing.
- Specified by:
enterLogicalExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLogicalExpression
public void exitLogicalExpression(MySqlParser.LogicalExpressionContext ctx)
Exit a parse tree produced by thelogicalExpressionlabeled alternative inMySqlParser.expression().The default implementation does nothing.
- Specified by:
exitLogicalExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPredicateExpression
public void enterPredicateExpression(MySqlParser.PredicateExpressionContext ctx)
Enter a parse tree produced by thepredicateExpressionlabeled alternative inMySqlParser.expression().The default implementation does nothing.
- Specified by:
enterPredicateExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPredicateExpression
public void exitPredicateExpression(MySqlParser.PredicateExpressionContext ctx)
Exit a parse tree produced by thepredicateExpressionlabeled alternative inMySqlParser.expression().The default implementation does nothing.
- Specified by:
exitPredicateExpressionin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSoundsLikePredicate
public void enterSoundsLikePredicate(MySqlParser.SoundsLikePredicateContext ctx)
Enter a parse tree produced by thesoundsLikePredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterSoundsLikePredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSoundsLikePredicate
public void exitSoundsLikePredicate(MySqlParser.SoundsLikePredicateContext ctx)
Exit a parse tree produced by thesoundsLikePredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitSoundsLikePredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterExpressionAtomPredicate
public void enterExpressionAtomPredicate(MySqlParser.ExpressionAtomPredicateContext ctx)
Enter a parse tree produced by theexpressionAtomPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterExpressionAtomPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitExpressionAtomPredicate
public void exitExpressionAtomPredicate(MySqlParser.ExpressionAtomPredicateContext ctx)
Exit a parse tree produced by theexpressionAtomPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitExpressionAtomPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterJsonMemberOfPredicate
public void enterJsonMemberOfPredicate(MySqlParser.JsonMemberOfPredicateContext ctx)
Enter a parse tree produced by thejsonMemberOfPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterJsonMemberOfPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitJsonMemberOfPredicate
public void exitJsonMemberOfPredicate(MySqlParser.JsonMemberOfPredicateContext ctx)
Exit a parse tree produced by thejsonMemberOfPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitJsonMemberOfPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterInPredicate
public void enterInPredicate(MySqlParser.InPredicateContext ctx)
Enter a parse tree produced by theinPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterInPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitInPredicate
public void exitInPredicate(MySqlParser.InPredicateContext ctx)
Exit a parse tree produced by theinPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitInPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSubqueryComparasionPredicate
public void enterSubqueryComparasionPredicate(MySqlParser.SubqueryComparasionPredicateContext ctx)
Enter a parse tree produced by thesubqueryComparasionPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterSubqueryComparasionPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSubqueryComparasionPredicate
public void exitSubqueryComparasionPredicate(MySqlParser.SubqueryComparasionPredicateContext ctx)
Exit a parse tree produced by thesubqueryComparasionPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitSubqueryComparasionPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBetweenPredicate
public void enterBetweenPredicate(MySqlParser.BetweenPredicateContext ctx)
Enter a parse tree produced by thebetweenPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterBetweenPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBetweenPredicate
public void exitBetweenPredicate(MySqlParser.BetweenPredicateContext ctx)
Exit a parse tree produced by thebetweenPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitBetweenPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBinaryComparasionPredicate
public void enterBinaryComparasionPredicate(MySqlParser.BinaryComparasionPredicateContext ctx)
Enter a parse tree produced by thebinaryComparasionPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterBinaryComparasionPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBinaryComparasionPredicate
public void exitBinaryComparasionPredicate(MySqlParser.BinaryComparasionPredicateContext ctx)
Exit a parse tree produced by thebinaryComparasionPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitBinaryComparasionPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIsNullPredicate
public void enterIsNullPredicate(MySqlParser.IsNullPredicateContext ctx)
Enter a parse tree produced by theisNullPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterIsNullPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIsNullPredicate
public void exitIsNullPredicate(MySqlParser.IsNullPredicateContext ctx)
Exit a parse tree produced by theisNullPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitIsNullPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLikePredicate
public void enterLikePredicate(MySqlParser.LikePredicateContext ctx)
Enter a parse tree produced by thelikePredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterLikePredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLikePredicate
public void exitLikePredicate(MySqlParser.LikePredicateContext ctx)
Exit a parse tree produced by thelikePredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitLikePredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterRegexpPredicate
public void enterRegexpPredicate(MySqlParser.RegexpPredicateContext ctx)
Enter a parse tree produced by theregexpPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
enterRegexpPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitRegexpPredicate
public void exitRegexpPredicate(MySqlParser.RegexpPredicateContext ctx)
Exit a parse tree produced by theregexpPredicatelabeled alternative inMySqlParser.predicate().The default implementation does nothing.
- Specified by:
exitRegexpPredicatein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUnaryExpressionAtom
public void enterUnaryExpressionAtom(MySqlParser.UnaryExpressionAtomContext ctx)
Enter a parse tree produced by theunaryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterUnaryExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUnaryExpressionAtom
public void exitUnaryExpressionAtom(MySqlParser.UnaryExpressionAtomContext ctx)
Exit a parse tree produced by theunaryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitUnaryExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCollateExpressionAtom
public void enterCollateExpressionAtom(MySqlParser.CollateExpressionAtomContext ctx)
Enter a parse tree produced by thecollateExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterCollateExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCollateExpressionAtom
public void exitCollateExpressionAtom(MySqlParser.CollateExpressionAtomContext ctx)
Exit a parse tree produced by thecollateExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitCollateExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterSubqueryExpessionAtom
public void enterSubqueryExpessionAtom(MySqlParser.SubqueryExpessionAtomContext ctx)
Enter a parse tree produced by thesubqueryExpessionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterSubqueryExpessionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitSubqueryExpessionAtom
public void exitSubqueryExpessionAtom(MySqlParser.SubqueryExpessionAtomContext ctx)
Exit a parse tree produced by thesubqueryExpessionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitSubqueryExpessionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMysqlVariableExpressionAtom
public void enterMysqlVariableExpressionAtom(MySqlParser.MysqlVariableExpressionAtomContext ctx)
Enter a parse tree produced by themysqlVariableExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterMysqlVariableExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMysqlVariableExpressionAtom
public void exitMysqlVariableExpressionAtom(MySqlParser.MysqlVariableExpressionAtomContext ctx)
Exit a parse tree produced by themysqlVariableExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitMysqlVariableExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterNestedExpressionAtom
public void enterNestedExpressionAtom(MySqlParser.NestedExpressionAtomContext ctx)
Enter a parse tree produced by thenestedExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterNestedExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitNestedExpressionAtom
public void exitNestedExpressionAtom(MySqlParser.NestedExpressionAtomContext ctx)
Exit a parse tree produced by thenestedExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitNestedExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterNestedRowExpressionAtom
public void enterNestedRowExpressionAtom(MySqlParser.NestedRowExpressionAtomContext ctx)
Enter a parse tree produced by thenestedRowExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterNestedRowExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitNestedRowExpressionAtom
public void exitNestedRowExpressionAtom(MySqlParser.NestedRowExpressionAtomContext ctx)
Exit a parse tree produced by thenestedRowExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitNestedRowExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMathExpressionAtom
public void enterMathExpressionAtom(MySqlParser.MathExpressionAtomContext ctx)
Enter a parse tree produced by themathExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterMathExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMathExpressionAtom
public void exitMathExpressionAtom(MySqlParser.MathExpressionAtomContext ctx)
Exit a parse tree produced by themathExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitMathExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIntervalExpressionAtom
public void enterIntervalExpressionAtom(MySqlParser.IntervalExpressionAtomContext ctx)
Enter a parse tree produced by theintervalExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterIntervalExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIntervalExpressionAtom
public void exitIntervalExpressionAtom(MySqlParser.IntervalExpressionAtomContext ctx)
Exit a parse tree produced by theintervalExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitIntervalExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterJsonExpressionAtom
public void enterJsonExpressionAtom(MySqlParser.JsonExpressionAtomContext ctx)
Enter a parse tree produced by thejsonExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterJsonExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitJsonExpressionAtom
public void exitJsonExpressionAtom(MySqlParser.JsonExpressionAtomContext ctx)
Exit a parse tree produced by thejsonExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitJsonExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterExistsExpessionAtom
public void enterExistsExpessionAtom(MySqlParser.ExistsExpessionAtomContext ctx)
Enter a parse tree produced by theexistsExpessionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterExistsExpessionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitExistsExpessionAtom
public void exitExistsExpessionAtom(MySqlParser.ExistsExpessionAtomContext ctx)
Exit a parse tree produced by theexistsExpessionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitExistsExpessionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterConstantExpressionAtom
public void enterConstantExpressionAtom(MySqlParser.ConstantExpressionAtomContext ctx)
Enter a parse tree produced by theconstantExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterConstantExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitConstantExpressionAtom
public void exitConstantExpressionAtom(MySqlParser.ConstantExpressionAtomContext ctx)
Exit a parse tree produced by theconstantExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitConstantExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFunctionCallExpressionAtom
public void enterFunctionCallExpressionAtom(MySqlParser.FunctionCallExpressionAtomContext ctx)
Enter a parse tree produced by thefunctionCallExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterFunctionCallExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFunctionCallExpressionAtom
public void exitFunctionCallExpressionAtom(MySqlParser.FunctionCallExpressionAtomContext ctx)
Exit a parse tree produced by thefunctionCallExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitFunctionCallExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBinaryExpressionAtom
public void enterBinaryExpressionAtom(MySqlParser.BinaryExpressionAtomContext ctx)
Enter a parse tree produced by thebinaryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterBinaryExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBinaryExpressionAtom
public void exitBinaryExpressionAtom(MySqlParser.BinaryExpressionAtomContext ctx)
Exit a parse tree produced by thebinaryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitBinaryExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFullColumnNameExpressionAtom
public void enterFullColumnNameExpressionAtom(MySqlParser.FullColumnNameExpressionAtomContext ctx)
Enter a parse tree produced by thefullColumnNameExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterFullColumnNameExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFullColumnNameExpressionAtom
public void exitFullColumnNameExpressionAtom(MySqlParser.FullColumnNameExpressionAtomContext ctx)
Exit a parse tree produced by thefullColumnNameExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitFullColumnNameExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBitExpressionAtom
public void enterBitExpressionAtom(MySqlParser.BitExpressionAtomContext ctx)
Enter a parse tree produced by thebitExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
enterBitExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBitExpressionAtom
public void exitBitExpressionAtom(MySqlParser.BitExpressionAtomContext ctx)
Exit a parse tree produced by thebitExpressionAtomlabeled alternative inMySqlParser.expressionAtom().The default implementation does nothing.
- Specified by:
exitBitExpressionAtomin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterUnaryOperator
public void enterUnaryOperator(MySqlParser.UnaryOperatorContext ctx)
Enter a parse tree produced byMySqlParser.unaryOperator().The default implementation does nothing.
- Specified by:
enterUnaryOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitUnaryOperator
public void exitUnaryOperator(MySqlParser.UnaryOperatorContext ctx)
Exit a parse tree produced byMySqlParser.unaryOperator().The default implementation does nothing.
- Specified by:
exitUnaryOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterComparisonOperator
public void enterComparisonOperator(MySqlParser.ComparisonOperatorContext ctx)
Enter a parse tree produced byMySqlParser.comparisonOperator().The default implementation does nothing.
- Specified by:
enterComparisonOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitComparisonOperator
public void exitComparisonOperator(MySqlParser.ComparisonOperatorContext ctx)
Exit a parse tree produced byMySqlParser.comparisonOperator().The default implementation does nothing.
- Specified by:
exitComparisonOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterLogicalOperator
public void enterLogicalOperator(MySqlParser.LogicalOperatorContext ctx)
Enter a parse tree produced byMySqlParser.logicalOperator().The default implementation does nothing.
- Specified by:
enterLogicalOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitLogicalOperator
public void exitLogicalOperator(MySqlParser.LogicalOperatorContext ctx)
Exit a parse tree produced byMySqlParser.logicalOperator().The default implementation does nothing.
- Specified by:
exitLogicalOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterBitOperator
public void enterBitOperator(MySqlParser.BitOperatorContext ctx)
Enter a parse tree produced byMySqlParser.bitOperator().The default implementation does nothing.
- Specified by:
enterBitOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitBitOperator
public void exitBitOperator(MySqlParser.BitOperatorContext ctx)
Exit a parse tree produced byMySqlParser.bitOperator().The default implementation does nothing.
- Specified by:
exitBitOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterMathOperator
public void enterMathOperator(MySqlParser.MathOperatorContext ctx)
Enter a parse tree produced byMySqlParser.mathOperator().The default implementation does nothing.
- Specified by:
enterMathOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitMathOperator
public void exitMathOperator(MySqlParser.MathOperatorContext ctx)
Exit a parse tree produced byMySqlParser.mathOperator().The default implementation does nothing.
- Specified by:
exitMathOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterJsonOperator
public void enterJsonOperator(MySqlParser.JsonOperatorContext ctx)
Enter a parse tree produced byMySqlParser.jsonOperator().The default implementation does nothing.
- Specified by:
enterJsonOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitJsonOperator
public void exitJsonOperator(MySqlParser.JsonOperatorContext ctx)
Exit a parse tree produced byMySqlParser.jsonOperator().The default implementation does nothing.
- Specified by:
exitJsonOperatorin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterCharsetNameBase
public void enterCharsetNameBase(MySqlParser.CharsetNameBaseContext ctx)
Enter a parse tree produced byMySqlParser.charsetNameBase().The default implementation does nothing.
- Specified by:
enterCharsetNameBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitCharsetNameBase
public void exitCharsetNameBase(MySqlParser.CharsetNameBaseContext ctx)
Exit a parse tree produced byMySqlParser.charsetNameBase().The default implementation does nothing.
- Specified by:
exitCharsetNameBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterTransactionLevelBase
public void enterTransactionLevelBase(MySqlParser.TransactionLevelBaseContext ctx)
Enter a parse tree produced byMySqlParser.transactionLevelBase().The default implementation does nothing.
- Specified by:
enterTransactionLevelBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitTransactionLevelBase
public void exitTransactionLevelBase(MySqlParser.TransactionLevelBaseContext ctx)
Exit a parse tree produced byMySqlParser.transactionLevelBase().The default implementation does nothing.
- Specified by:
exitTransactionLevelBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterPrivilegesBase
public void enterPrivilegesBase(MySqlParser.PrivilegesBaseContext ctx)
Enter a parse tree produced byMySqlParser.privilegesBase().The default implementation does nothing.
- Specified by:
enterPrivilegesBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitPrivilegesBase
public void exitPrivilegesBase(MySqlParser.PrivilegesBaseContext ctx)
Exit a parse tree produced byMySqlParser.privilegesBase().The default implementation does nothing.
- Specified by:
exitPrivilegesBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterIntervalTypeBase
public void enterIntervalTypeBase(MySqlParser.IntervalTypeBaseContext ctx)
Enter a parse tree produced byMySqlParser.intervalTypeBase().The default implementation does nothing.
- Specified by:
enterIntervalTypeBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitIntervalTypeBase
public void exitIntervalTypeBase(MySqlParser.IntervalTypeBaseContext ctx)
Exit a parse tree produced byMySqlParser.intervalTypeBase().The default implementation does nothing.
- Specified by:
exitIntervalTypeBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterDataTypeBase
public void enterDataTypeBase(MySqlParser.DataTypeBaseContext ctx)
Enter a parse tree produced byMySqlParser.dataTypeBase().The default implementation does nothing.
- Specified by:
enterDataTypeBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitDataTypeBase
public void exitDataTypeBase(MySqlParser.DataTypeBaseContext ctx)
Exit a parse tree produced byMySqlParser.dataTypeBase().The default implementation does nothing.
- Specified by:
exitDataTypeBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterKeywordsCanBeId
public void enterKeywordsCanBeId(MySqlParser.KeywordsCanBeIdContext ctx)
Enter a parse tree produced byMySqlParser.keywordsCanBeId().The default implementation does nothing.
- Specified by:
enterKeywordsCanBeIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitKeywordsCanBeId
public void exitKeywordsCanBeId(MySqlParser.KeywordsCanBeIdContext ctx)
Exit a parse tree produced byMySqlParser.keywordsCanBeId().The default implementation does nothing.
- Specified by:
exitKeywordsCanBeIdin interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterFunctionNameBase
public void enterFunctionNameBase(MySqlParser.FunctionNameBaseContext ctx)
Enter a parse tree produced byMySqlParser.functionNameBase().The default implementation does nothing.
- Specified by:
enterFunctionNameBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
exitFunctionNameBase
public void exitFunctionNameBase(MySqlParser.FunctionNameBaseContext ctx)
Exit a parse tree produced byMySqlParser.functionNameBase().The default implementation does nothing.
- Specified by:
exitFunctionNameBasein interfaceMySqlParserListener- Parameters:
ctx- the parse tree
-
enterEveryRule
public void enterEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
enterEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
exitEveryRule
public void exitEveryRule(org.antlr.v4.runtime.ParserRuleContext ctx)
The default implementation does nothing.
- Specified by:
exitEveryRulein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitTerminal
public void visitTerminal(org.antlr.v4.runtime.tree.TerminalNode node)
The default implementation does nothing.
- Specified by:
visitTerminalin interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
visitErrorNode
public void visitErrorNode(org.antlr.v4.runtime.tree.ErrorNode node)
The default implementation does nothing.
- Specified by:
visitErrorNodein interfaceorg.antlr.v4.runtime.tree.ParseTreeListener
-
-