Package io.edurt.datacap.parser.mysql
Interface MySqlParserVisitor<T>
-
- Type Parameters:
T- The return type of the visit operation. UseVoidfor operations with no return type.
- All Superinterfaces:
org.antlr.v4.runtime.tree.ParseTreeVisitor<T>
- All Known Implementing Classes:
MySqlParserBaseVisitor
public interface MySqlParserVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced byMySqlParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitRoot
T visitRoot(MySqlParser.RootContext ctx)
Visit a parse tree produced byMySqlParser.root().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSqlStatements
T visitSqlStatements(MySqlParser.SqlStatementsContext ctx)
Visit a parse tree produced byMySqlParser.sqlStatements().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSqlStatement
T visitSqlStatement(MySqlParser.SqlStatementContext ctx)
Visit a parse tree produced byMySqlParser.sqlStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEmptyStatement_
T visitEmptyStatement_(MySqlParser.EmptyStatement_Context ctx)
Visit a parse tree produced byMySqlParser.emptyStatement_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDdlStatement
T visitDdlStatement(MySqlParser.DdlStatementContext ctx)
Visit a parse tree produced byMySqlParser.ddlStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDmlStatement
T visitDmlStatement(MySqlParser.DmlStatementContext ctx)
Visit a parse tree produced byMySqlParser.dmlStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionStatement
T visitTransactionStatement(MySqlParser.TransactionStatementContext ctx)
Visit a parse tree produced byMySqlParser.transactionStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReplicationStatement
T visitReplicationStatement(MySqlParser.ReplicationStatementContext ctx)
Visit a parse tree produced byMySqlParser.replicationStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreparedStatement
T visitPreparedStatement(MySqlParser.PreparedStatementContext ctx)
Visit a parse tree produced byMySqlParser.preparedStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompoundStatement
T visitCompoundStatement(MySqlParser.CompoundStatementContext ctx)
Visit a parse tree produced byMySqlParser.compoundStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAdministrationStatement
T visitAdministrationStatement(MySqlParser.AdministrationStatementContext ctx)
Visit a parse tree produced byMySqlParser.administrationStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUtilityStatement
T visitUtilityStatement(MySqlParser.UtilityStatementContext ctx)
Visit a parse tree produced byMySqlParser.utilityStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabase
T visitCreateDatabase(MySqlParser.CreateDatabaseContext ctx)
Visit a parse tree produced byMySqlParser.createDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateEvent
T visitCreateEvent(MySqlParser.CreateEventContext ctx)
Visit a parse tree produced byMySqlParser.createEvent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndex
T visitCreateIndex(MySqlParser.CreateIndexContext ctx)
Visit a parse tree produced byMySqlParser.createIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLogfileGroup
T visitCreateLogfileGroup(MySqlParser.CreateLogfileGroupContext ctx)
Visit a parse tree produced byMySqlParser.createLogfileGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateProcedure
T visitCreateProcedure(MySqlParser.CreateProcedureContext ctx)
Visit a parse tree produced byMySqlParser.createProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateFunction
T visitCreateFunction(MySqlParser.CreateFunctionContext ctx)
Visit a parse tree produced byMySqlParser.createFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateRole
T visitCreateRole(MySqlParser.CreateRoleContext ctx)
Visit a parse tree produced byMySqlParser.createRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateServer
T visitCreateServer(MySqlParser.CreateServerContext ctx)
Visit a parse tree produced byMySqlParser.createServer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCopyCreateTable
T visitCopyCreateTable(MySqlParser.CopyCreateTableContext ctx)
Visit a parse tree produced by thecopyCreateTablelabeled alternative inMySqlParser.createTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryCreateTable
T visitQueryCreateTable(MySqlParser.QueryCreateTableContext ctx)
Visit a parse tree produced by thequeryCreateTablelabeled alternative inMySqlParser.createTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnCreateTable
T visitColumnCreateTable(MySqlParser.ColumnCreateTableContext ctx)
Visit a parse tree produced by thecolumnCreateTablelabeled alternative inMySqlParser.createTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTablespaceInnodb
T visitCreateTablespaceInnodb(MySqlParser.CreateTablespaceInnodbContext ctx)
Visit a parse tree produced byMySqlParser.createTablespaceInnodb().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTablespaceNdb
T visitCreateTablespaceNdb(MySqlParser.CreateTablespaceNdbContext ctx)
Visit a parse tree produced byMySqlParser.createTablespaceNdb().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTrigger
T visitCreateTrigger(MySqlParser.CreateTriggerContext ctx)
Visit a parse tree produced byMySqlParser.createTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithClause
T visitWithClause(MySqlParser.WithClauseContext ctx)
Visit a parse tree produced byMySqlParser.withClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonTableExpressions
T visitCommonTableExpressions(MySqlParser.CommonTableExpressionsContext ctx)
Visit a parse tree produced byMySqlParser.commonTableExpressions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCteName
T visitCteName(MySqlParser.CteNameContext ctx)
Visit a parse tree produced byMySqlParser.cteName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCteColumnName
T visitCteColumnName(MySqlParser.CteColumnNameContext ctx)
Visit a parse tree produced byMySqlParser.cteColumnName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateView
T visitCreateView(MySqlParser.CreateViewContext ctx)
Visit a parse tree produced byMySqlParser.createView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabaseOption
T visitCreateDatabaseOption(MySqlParser.CreateDatabaseOptionContext ctx)
Visit a parse tree produced byMySqlParser.createDatabaseOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharSet
T visitCharSet(MySqlParser.CharSetContext ctx)
Visit a parse tree produced byMySqlParser.charSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentUserExpression
T visitCurrentUserExpression(MySqlParser.CurrentUserExpressionContext ctx)
Visit a parse tree produced byMySqlParser.currentUserExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOwnerStatement
T visitOwnerStatement(MySqlParser.OwnerStatementContext ctx)
Visit a parse tree produced byMySqlParser.ownerStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPreciseSchedule
T visitPreciseSchedule(MySqlParser.PreciseScheduleContext ctx)
Visit a parse tree produced by thepreciseSchedulelabeled alternative inMySqlParser.scheduleExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalSchedule
T visitIntervalSchedule(MySqlParser.IntervalScheduleContext ctx)
Visit a parse tree produced by theintervalSchedulelabeled alternative inMySqlParser.scheduleExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTimestampValue
T visitTimestampValue(MySqlParser.TimestampValueContext ctx)
Visit a parse tree produced byMySqlParser.timestampValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalExpr
T visitIntervalExpr(MySqlParser.IntervalExprContext ctx)
Visit a parse tree produced byMySqlParser.intervalExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalType
T visitIntervalType(MySqlParser.IntervalTypeContext ctx)
Visit a parse tree produced byMySqlParser.intervalType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEnableType
T visitEnableType(MySqlParser.EnableTypeContext ctx)
Visit a parse tree produced byMySqlParser.enableType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexType
T visitIndexType(MySqlParser.IndexTypeContext ctx)
Visit a parse tree produced byMySqlParser.indexType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexOption
T visitIndexOption(MySqlParser.IndexOptionContext ctx)
Visit a parse tree produced byMySqlParser.indexOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureParameter
T visitProcedureParameter(MySqlParser.ProcedureParameterContext ctx)
Visit a parse tree produced byMySqlParser.procedureParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionParameter
T visitFunctionParameter(MySqlParser.FunctionParameterContext ctx)
Visit a parse tree produced byMySqlParser.functionParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineComment
T visitRoutineComment(MySqlParser.RoutineCommentContext ctx)
Visit a parse tree produced by theroutineCommentlabeled alternative inMySqlParser.routineOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineLanguage
T visitRoutineLanguage(MySqlParser.RoutineLanguageContext ctx)
Visit a parse tree produced by theroutineLanguagelabeled alternative inMySqlParser.routineOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineBehavior
T visitRoutineBehavior(MySqlParser.RoutineBehaviorContext ctx)
Visit a parse tree produced by theroutineBehaviorlabeled alternative inMySqlParser.routineOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineData
T visitRoutineData(MySqlParser.RoutineDataContext ctx)
Visit a parse tree produced by theroutineDatalabeled alternative inMySqlParser.routineOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineSecurity
T visitRoutineSecurity(MySqlParser.RoutineSecurityContext ctx)
Visit a parse tree produced by theroutineSecuritylabeled alternative inMySqlParser.routineOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServerOption
T visitServerOption(MySqlParser.ServerOptionContext ctx)
Visit a parse tree produced byMySqlParser.serverOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinitions
T visitCreateDefinitions(MySqlParser.CreateDefinitionsContext ctx)
Visit a parse tree produced byMySqlParser.createDefinitions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDeclaration
T visitColumnDeclaration(MySqlParser.ColumnDeclarationContext ctx)
Visit a parse tree produced by thecolumnDeclarationlabeled alternative inMySqlParser.createDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintDeclaration
T visitConstraintDeclaration(MySqlParser.ConstraintDeclarationContext ctx)
Visit a parse tree produced by theconstraintDeclarationlabeled alternative inMySqlParser.createDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexDeclaration
T visitIndexDeclaration(MySqlParser.IndexDeclarationContext ctx)
Visit a parse tree produced by theindexDeclarationlabeled alternative inMySqlParser.createDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefinition
T visitColumnDefinition(MySqlParser.ColumnDefinitionContext ctx)
Visit a parse tree produced byMySqlParser.columnDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullColumnConstraint
T visitNullColumnConstraint(MySqlParser.NullColumnConstraintContext ctx)
Visit a parse tree produced by thenullColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultColumnConstraint
T visitDefaultColumnConstraint(MySqlParser.DefaultColumnConstraintContext ctx)
Visit a parse tree produced by thedefaultColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVisibilityColumnConstraint
T visitVisibilityColumnConstraint(MySqlParser.VisibilityColumnConstraintContext ctx)
Visit a parse tree produced by thevisibilityColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInvisibilityColumnConstraint
T visitInvisibilityColumnConstraint(MySqlParser.InvisibilityColumnConstraintContext ctx)
Visit a parse tree produced by theinvisibilityColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAutoIncrementColumnConstraint
T visitAutoIncrementColumnConstraint(MySqlParser.AutoIncrementColumnConstraintContext ctx)
Visit a parse tree produced by theautoIncrementColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyColumnConstraint
T visitPrimaryKeyColumnConstraint(MySqlParser.PrimaryKeyColumnConstraintContext ctx)
Visit a parse tree produced by theprimaryKeyColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUniqueKeyColumnConstraint
T visitUniqueKeyColumnConstraint(MySqlParser.UniqueKeyColumnConstraintContext ctx)
Visit a parse tree produced by theuniqueKeyColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommentColumnConstraint
T visitCommentColumnConstraint(MySqlParser.CommentColumnConstraintContext ctx)
Visit a parse tree produced by thecommentColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFormatColumnConstraint
T visitFormatColumnConstraint(MySqlParser.FormatColumnConstraintContext ctx)
Visit a parse tree produced by theformatColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStorageColumnConstraint
T visitStorageColumnConstraint(MySqlParser.StorageColumnConstraintContext ctx)
Visit a parse tree produced by thestorageColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceColumnConstraint
T visitReferenceColumnConstraint(MySqlParser.ReferenceColumnConstraintContext ctx)
Visit a parse tree produced by thereferenceColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollateColumnConstraint
T visitCollateColumnConstraint(MySqlParser.CollateColumnConstraintContext ctx)
Visit a parse tree produced by thecollateColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneratedColumnConstraint
T visitGeneratedColumnConstraint(MySqlParser.GeneratedColumnConstraintContext ctx)
Visit a parse tree produced by thegeneratedColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSerialDefaultColumnConstraint
T visitSerialDefaultColumnConstraint(MySqlParser.SerialDefaultColumnConstraintContext ctx)
Visit a parse tree produced by theserialDefaultColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckColumnConstraint
T visitCheckColumnConstraint(MySqlParser.CheckColumnConstraintContext ctx)
Visit a parse tree produced by thecheckColumnConstraintlabeled alternative inMySqlParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyTableConstraint
T visitPrimaryKeyTableConstraint(MySqlParser.PrimaryKeyTableConstraintContext ctx)
Visit a parse tree produced by theprimaryKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUniqueKeyTableConstraint
T visitUniqueKeyTableConstraint(MySqlParser.UniqueKeyTableConstraintContext ctx)
Visit a parse tree produced by theuniqueKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForeignKeyTableConstraint
T visitForeignKeyTableConstraint(MySqlParser.ForeignKeyTableConstraintContext ctx)
Visit a parse tree produced by theforeignKeyTableConstraintlabeled alternative inMySqlParser.tableConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckTableConstraint
T visitCheckTableConstraint(MySqlParser.CheckTableConstraintContext ctx)
Visit a parse tree produced by thecheckTableConstraintlabeled alternative inMySqlParser.tableConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceDefinition
T visitReferenceDefinition(MySqlParser.ReferenceDefinitionContext ctx)
Visit a parse tree produced byMySqlParser.referenceDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceAction
T visitReferenceAction(MySqlParser.ReferenceActionContext ctx)
Visit a parse tree produced byMySqlParser.referenceAction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceControlType
T visitReferenceControlType(MySqlParser.ReferenceControlTypeContext ctx)
Visit a parse tree produced byMySqlParser.referenceControlType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleIndexDeclaration
T visitSimpleIndexDeclaration(MySqlParser.SimpleIndexDeclarationContext ctx)
Visit a parse tree produced by thesimpleIndexDeclarationlabeled alternative inMySqlParser.indexColumnDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSpecialIndexDeclaration
T visitSpecialIndexDeclaration(MySqlParser.SpecialIndexDeclarationContext ctx)
Visit a parse tree produced by thespecialIndexDeclarationlabeled alternative inMySqlParser.indexColumnDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionEngine
T visitTableOptionEngine(MySqlParser.TableOptionEngineContext ctx)
Visit a parse tree produced by thetableOptionEnginelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionEngineAttribute
T visitTableOptionEngineAttribute(MySqlParser.TableOptionEngineAttributeContext ctx)
Visit a parse tree produced by thetableOptionEngineAttributelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionAutoextendSize
T visitTableOptionAutoextendSize(MySqlParser.TableOptionAutoextendSizeContext ctx)
Visit a parse tree produced by thetableOptionAutoextendSizelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionAutoIncrement
T visitTableOptionAutoIncrement(MySqlParser.TableOptionAutoIncrementContext ctx)
Visit a parse tree produced by thetableOptionAutoIncrementlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionAverage
T visitTableOptionAverage(MySqlParser.TableOptionAverageContext ctx)
Visit a parse tree produced by thetableOptionAveragelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionCharset
T visitTableOptionCharset(MySqlParser.TableOptionCharsetContext ctx)
Visit a parse tree produced by thetableOptionCharsetlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionChecksum
T visitTableOptionChecksum(MySqlParser.TableOptionChecksumContext ctx)
Visit a parse tree produced by thetableOptionChecksumlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionCollate
T visitTableOptionCollate(MySqlParser.TableOptionCollateContext ctx)
Visit a parse tree produced by thetableOptionCollatelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionComment
T visitTableOptionComment(MySqlParser.TableOptionCommentContext ctx)
Visit a parse tree produced by thetableOptionCommentlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionCompression
T visitTableOptionCompression(MySqlParser.TableOptionCompressionContext ctx)
Visit a parse tree produced by thetableOptionCompressionlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionConnection
T visitTableOptionConnection(MySqlParser.TableOptionConnectionContext ctx)
Visit a parse tree produced by thetableOptionConnectionlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionDataDirectory
T visitTableOptionDataDirectory(MySqlParser.TableOptionDataDirectoryContext ctx)
Visit a parse tree produced by thetableOptionDataDirectorylabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionDelay
T visitTableOptionDelay(MySqlParser.TableOptionDelayContext ctx)
Visit a parse tree produced by thetableOptionDelaylabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionEncryption
T visitTableOptionEncryption(MySqlParser.TableOptionEncryptionContext ctx)
Visit a parse tree produced by thetableOptionEncryptionlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPageCompressed
T visitTableOptionPageCompressed(MySqlParser.TableOptionPageCompressedContext ctx)
Visit a parse tree produced by thetableOptionPageCompressedlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPageCompressionLevel
T visitTableOptionPageCompressionLevel(MySqlParser.TableOptionPageCompressionLevelContext ctx)
Visit a parse tree produced by thetableOptionPageCompressionLevellabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionEncryptionKeyId
T visitTableOptionEncryptionKeyId(MySqlParser.TableOptionEncryptionKeyIdContext ctx)
Visit a parse tree produced by thetableOptionEncryptionKeyIdlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionIndexDirectory
T visitTableOptionIndexDirectory(MySqlParser.TableOptionIndexDirectoryContext ctx)
Visit a parse tree produced by thetableOptionIndexDirectorylabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionInsertMethod
T visitTableOptionInsertMethod(MySqlParser.TableOptionInsertMethodContext ctx)
Visit a parse tree produced by thetableOptionInsertMethodlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionKeyBlockSize
T visitTableOptionKeyBlockSize(MySqlParser.TableOptionKeyBlockSizeContext ctx)
Visit a parse tree produced by thetableOptionKeyBlockSizelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionMaxRows
T visitTableOptionMaxRows(MySqlParser.TableOptionMaxRowsContext ctx)
Visit a parse tree produced by thetableOptionMaxRowslabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionMinRows
T visitTableOptionMinRows(MySqlParser.TableOptionMinRowsContext ctx)
Visit a parse tree produced by thetableOptionMinRowslabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPackKeys
T visitTableOptionPackKeys(MySqlParser.TableOptionPackKeysContext ctx)
Visit a parse tree produced by thetableOptionPackKeyslabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPassword
T visitTableOptionPassword(MySqlParser.TableOptionPasswordContext ctx)
Visit a parse tree produced by thetableOptionPasswordlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionRowFormat
T visitTableOptionRowFormat(MySqlParser.TableOptionRowFormatContext ctx)
Visit a parse tree produced by thetableOptionRowFormatlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionStartTransaction
T visitTableOptionStartTransaction(MySqlParser.TableOptionStartTransactionContext ctx)
Visit a parse tree produced by thetableOptionStartTransactionlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionSecondaryEngineAttribute
T visitTableOptionSecondaryEngineAttribute(MySqlParser.TableOptionSecondaryEngineAttributeContext ctx)
Visit a parse tree produced by thetableOptionSecondaryEngineAttributelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionRecalculation
T visitTableOptionRecalculation(MySqlParser.TableOptionRecalculationContext ctx)
Visit a parse tree produced by thetableOptionRecalculationlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionPersistent
T visitTableOptionPersistent(MySqlParser.TableOptionPersistentContext ctx)
Visit a parse tree produced by thetableOptionPersistentlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionSamplePage
T visitTableOptionSamplePage(MySqlParser.TableOptionSamplePageContext ctx)
Visit a parse tree produced by thetableOptionSamplePagelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionTablespace
T visitTableOptionTablespace(MySqlParser.TableOptionTablespaceContext ctx)
Visit a parse tree produced by thetableOptionTablespacelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionTableType
T visitTableOptionTableType(MySqlParser.TableOptionTableTypeContext ctx)
Visit a parse tree produced by thetableOptionTableTypelabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionTransactional
T visitTableOptionTransactional(MySqlParser.TableOptionTransactionalContext ctx)
Visit a parse tree produced by thetableOptionTransactionallabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptionUnion
T visitTableOptionUnion(MySqlParser.TableOptionUnionContext ctx)
Visit a parse tree produced by thetableOptionUnionlabeled alternative inMySqlParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableType
T visitTableType(MySqlParser.TableTypeContext ctx)
Visit a parse tree produced byMySqlParser.tableType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTablespaceStorage
T visitTablespaceStorage(MySqlParser.TablespaceStorageContext ctx)
Visit a parse tree produced byMySqlParser.tablespaceStorage().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionDefinitions
T visitPartitionDefinitions(MySqlParser.PartitionDefinitionsContext ctx)
Visit a parse tree produced byMySqlParser.partitionDefinitions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionFunctionHash
T visitPartitionFunctionHash(MySqlParser.PartitionFunctionHashContext ctx)
Visit a parse tree produced by thepartitionFunctionHashlabeled alternative inMySqlParser.partitionFunctionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionFunctionKey
T visitPartitionFunctionKey(MySqlParser.PartitionFunctionKeyContext ctx)
Visit a parse tree produced by thepartitionFunctionKeylabeled alternative inMySqlParser.partitionFunctionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionFunctionRange
T visitPartitionFunctionRange(MySqlParser.PartitionFunctionRangeContext ctx)
Visit a parse tree produced by thepartitionFunctionRangelabeled alternative inMySqlParser.partitionFunctionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionFunctionList
T visitPartitionFunctionList(MySqlParser.PartitionFunctionListContext ctx)
Visit a parse tree produced by thepartitionFunctionListlabeled alternative inMySqlParser.partitionFunctionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubPartitionFunctionHash
T visitSubPartitionFunctionHash(MySqlParser.SubPartitionFunctionHashContext ctx)
Visit a parse tree produced by thesubPartitionFunctionHashlabeled alternative inMySqlParser.subpartitionFunctionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubPartitionFunctionKey
T visitSubPartitionFunctionKey(MySqlParser.SubPartitionFunctionKeyContext ctx)
Visit a parse tree produced by thesubPartitionFunctionKeylabeled alternative inMySqlParser.subpartitionFunctionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionComparison
T visitPartitionComparison(MySqlParser.PartitionComparisonContext ctx)
Visit a parse tree produced by thepartitionComparisonlabeled alternative inMySqlParser.partitionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionListAtom
T visitPartitionListAtom(MySqlParser.PartitionListAtomContext ctx)
Visit a parse tree produced by thepartitionListAtomlabeled alternative inMySqlParser.partitionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionListVector
T visitPartitionListVector(MySqlParser.PartitionListVectorContext ctx)
Visit a parse tree produced by thepartitionListVectorlabeled alternative inMySqlParser.partitionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionSimple
T visitPartitionSimple(MySqlParser.PartitionSimpleContext ctx)
Visit a parse tree produced by thepartitionSimplelabeled alternative inMySqlParser.partitionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionDefinerAtom
T visitPartitionDefinerAtom(MySqlParser.PartitionDefinerAtomContext ctx)
Visit a parse tree produced byMySqlParser.partitionDefinerAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionDefinerVector
T visitPartitionDefinerVector(MySqlParser.PartitionDefinerVectorContext ctx)
Visit a parse tree produced byMySqlParser.partitionDefinerVector().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubpartitionDefinition
T visitSubpartitionDefinition(MySqlParser.SubpartitionDefinitionContext ctx)
Visit a parse tree produced byMySqlParser.subpartitionDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionEngine
T visitPartitionOptionEngine(MySqlParser.PartitionOptionEngineContext ctx)
Visit a parse tree produced by thepartitionOptionEnginelabeled alternative inMySqlParser.partitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionComment
T visitPartitionOptionComment(MySqlParser.PartitionOptionCommentContext ctx)
Visit a parse tree produced by thepartitionOptionCommentlabeled alternative inMySqlParser.partitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionDataDirectory
T visitPartitionOptionDataDirectory(MySqlParser.PartitionOptionDataDirectoryContext ctx)
Visit a parse tree produced by thepartitionOptionDataDirectorylabeled alternative inMySqlParser.partitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionIndexDirectory
T visitPartitionOptionIndexDirectory(MySqlParser.PartitionOptionIndexDirectoryContext ctx)
Visit a parse tree produced by thepartitionOptionIndexDirectorylabeled alternative inMySqlParser.partitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionMaxRows
T visitPartitionOptionMaxRows(MySqlParser.PartitionOptionMaxRowsContext ctx)
Visit a parse tree produced by thepartitionOptionMaxRowslabeled alternative inMySqlParser.partitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionMinRows
T visitPartitionOptionMinRows(MySqlParser.PartitionOptionMinRowsContext ctx)
Visit a parse tree produced by thepartitionOptionMinRowslabeled alternative inMySqlParser.partitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionTablespace
T visitPartitionOptionTablespace(MySqlParser.PartitionOptionTablespaceContext ctx)
Visit a parse tree produced by thepartitionOptionTablespacelabeled alternative inMySqlParser.partitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionOptionNodeGroup
T visitPartitionOptionNodeGroup(MySqlParser.PartitionOptionNodeGroupContext ctx)
Visit a parse tree produced by thepartitionOptionNodeGrouplabeled alternative inMySqlParser.partitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSimpleDatabase
T visitAlterSimpleDatabase(MySqlParser.AlterSimpleDatabaseContext ctx)
Visit a parse tree produced by thealterSimpleDatabaselabeled alternative inMySqlParser.alterDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUpgradeName
T visitAlterUpgradeName(MySqlParser.AlterUpgradeNameContext ctx)
Visit a parse tree produced by thealterUpgradeNamelabeled alternative inMySqlParser.alterDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterEvent
T visitAlterEvent(MySqlParser.AlterEventContext ctx)
Visit a parse tree produced byMySqlParser.alterEvent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterFunction
T visitAlterFunction(MySqlParser.AlterFunctionContext ctx)
Visit a parse tree produced byMySqlParser.alterFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterInstance
T visitAlterInstance(MySqlParser.AlterInstanceContext ctx)
Visit a parse tree produced byMySqlParser.alterInstance().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterLogfileGroup
T visitAlterLogfileGroup(MySqlParser.AlterLogfileGroupContext ctx)
Visit a parse tree produced byMySqlParser.alterLogfileGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterProcedure
T visitAlterProcedure(MySqlParser.AlterProcedureContext ctx)
Visit a parse tree produced byMySqlParser.alterProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterServer
T visitAlterServer(MySqlParser.AlterServerContext ctx)
Visit a parse tree produced byMySqlParser.alterServer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTable
T visitAlterTable(MySqlParser.AlterTableContext ctx)
Visit a parse tree produced byMySqlParser.alterTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTablespace
T visitAlterTablespace(MySqlParser.AlterTablespaceContext ctx)
Visit a parse tree produced byMySqlParser.alterTablespace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterView
T visitAlterView(MySqlParser.AlterViewContext ctx)
Visit a parse tree produced byMySqlParser.alterView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByTableOption
T visitAlterByTableOption(MySqlParser.AlterByTableOptionContext ctx)
Visit a parse tree produced by thealterByTableOptionlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddColumn
T visitAlterByAddColumn(MySqlParser.AlterByAddColumnContext ctx)
Visit a parse tree produced by thealterByAddColumnlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddColumns
T visitAlterByAddColumns(MySqlParser.AlterByAddColumnsContext ctx)
Visit a parse tree produced by thealterByAddColumnslabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddIndex
T visitAlterByAddIndex(MySqlParser.AlterByAddIndexContext ctx)
Visit a parse tree produced by thealterByAddIndexlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddPrimaryKey
T visitAlterByAddPrimaryKey(MySqlParser.AlterByAddPrimaryKeyContext ctx)
Visit a parse tree produced by thealterByAddPrimaryKeylabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddUniqueKey
T visitAlterByAddUniqueKey(MySqlParser.AlterByAddUniqueKeyContext ctx)
Visit a parse tree produced by thealterByAddUniqueKeylabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddSpecialIndex
T visitAlterByAddSpecialIndex(MySqlParser.AlterByAddSpecialIndexContext ctx)
Visit a parse tree produced by thealterByAddSpecialIndexlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddForeignKey
T visitAlterByAddForeignKey(MySqlParser.AlterByAddForeignKeyContext ctx)
Visit a parse tree produced by thealterByAddForeignKeylabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddCheckTableConstraint
T visitAlterByAddCheckTableConstraint(MySqlParser.AlterByAddCheckTableConstraintContext ctx)
Visit a parse tree produced by thealterByAddCheckTableConstraintlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAlterCheckTableConstraint
T visitAlterByAlterCheckTableConstraint(MySqlParser.AlterByAlterCheckTableConstraintContext ctx)
Visit a parse tree produced by thealterByAlterCheckTableConstraintlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterBySetAlgorithm
T visitAlterBySetAlgorithm(MySqlParser.AlterBySetAlgorithmContext ctx)
Visit a parse tree produced by thealterBySetAlgorithmlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByChangeDefault
T visitAlterByChangeDefault(MySqlParser.AlterByChangeDefaultContext ctx)
Visit a parse tree produced by thealterByChangeDefaultlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByChangeColumn
T visitAlterByChangeColumn(MySqlParser.AlterByChangeColumnContext ctx)
Visit a parse tree produced by thealterByChangeColumnlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRenameColumn
T visitAlterByRenameColumn(MySqlParser.AlterByRenameColumnContext ctx)
Visit a parse tree produced by thealterByRenameColumnlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByLock
T visitAlterByLock(MySqlParser.AlterByLockContext ctx)
Visit a parse tree produced by thealterByLocklabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByModifyColumn
T visitAlterByModifyColumn(MySqlParser.AlterByModifyColumnContext ctx)
Visit a parse tree produced by thealterByModifyColumnlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropColumn
T visitAlterByDropColumn(MySqlParser.AlterByDropColumnContext ctx)
Visit a parse tree produced by thealterByDropColumnlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropConstraintCheck
T visitAlterByDropConstraintCheck(MySqlParser.AlterByDropConstraintCheckContext ctx)
Visit a parse tree produced by thealterByDropConstraintChecklabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropPrimaryKey
T visitAlterByDropPrimaryKey(MySqlParser.AlterByDropPrimaryKeyContext ctx)
Visit a parse tree produced by thealterByDropPrimaryKeylabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropIndex
T visitAlterByDropIndex(MySqlParser.AlterByDropIndexContext ctx)
Visit a parse tree produced by thealterByDropIndexlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRenameIndex
T visitAlterByRenameIndex(MySqlParser.AlterByRenameIndexContext ctx)
Visit a parse tree produced by thealterByRenameIndexlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAlterColumnDefault
T visitAlterByAlterColumnDefault(MySqlParser.AlterByAlterColumnDefaultContext ctx)
Visit a parse tree produced by thealterByAlterColumnDefaultlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAlterIndexVisibility
T visitAlterByAlterIndexVisibility(MySqlParser.AlterByAlterIndexVisibilityContext ctx)
Visit a parse tree produced by thealterByAlterIndexVisibilitylabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropForeignKey
T visitAlterByDropForeignKey(MySqlParser.AlterByDropForeignKeyContext ctx)
Visit a parse tree produced by thealterByDropForeignKeylabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDisableKeys
T visitAlterByDisableKeys(MySqlParser.AlterByDisableKeysContext ctx)
Visit a parse tree produced by thealterByDisableKeyslabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByEnableKeys
T visitAlterByEnableKeys(MySqlParser.AlterByEnableKeysContext ctx)
Visit a parse tree produced by thealterByEnableKeyslabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRename
T visitAlterByRename(MySqlParser.AlterByRenameContext ctx)
Visit a parse tree produced by thealterByRenamelabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByOrder
T visitAlterByOrder(MySqlParser.AlterByOrderContext ctx)
Visit a parse tree produced by thealterByOrderlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByConvertCharset
T visitAlterByConvertCharset(MySqlParser.AlterByConvertCharsetContext ctx)
Visit a parse tree produced by thealterByConvertCharsetlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDefaultCharset
T visitAlterByDefaultCharset(MySqlParser.AlterByDefaultCharsetContext ctx)
Visit a parse tree produced by thealterByDefaultCharsetlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDiscardTablespace
T visitAlterByDiscardTablespace(MySqlParser.AlterByDiscardTablespaceContext ctx)
Visit a parse tree produced by thealterByDiscardTablespacelabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByImportTablespace
T visitAlterByImportTablespace(MySqlParser.AlterByImportTablespaceContext ctx)
Visit a parse tree produced by thealterByImportTablespacelabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByForce
T visitAlterByForce(MySqlParser.AlterByForceContext ctx)
Visit a parse tree produced by thealterByForcelabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByValidate
T visitAlterByValidate(MySqlParser.AlterByValidateContext ctx)
Visit a parse tree produced by thealterByValidatelabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddDefinitions
T visitAlterByAddDefinitions(MySqlParser.AlterByAddDefinitionsContext ctx)
Visit a parse tree produced by thealterByAddDefinitionslabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterPartition
T visitAlterPartition(MySqlParser.AlterPartitionContext ctx)
Visit a parse tree produced by thealterPartitionlabeled alternative inMySqlParser.alterSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAddPartition
T visitAlterByAddPartition(MySqlParser.AlterByAddPartitionContext ctx)
Visit a parse tree produced by thealterByAddPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDropPartition
T visitAlterByDropPartition(MySqlParser.AlterByDropPartitionContext ctx)
Visit a parse tree produced by thealterByDropPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByDiscardPartition
T visitAlterByDiscardPartition(MySqlParser.AlterByDiscardPartitionContext ctx)
Visit a parse tree produced by thealterByDiscardPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByImportPartition
T visitAlterByImportPartition(MySqlParser.AlterByImportPartitionContext ctx)
Visit a parse tree produced by thealterByImportPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByTruncatePartition
T visitAlterByTruncatePartition(MySqlParser.AlterByTruncatePartitionContext ctx)
Visit a parse tree produced by thealterByTruncatePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByCoalescePartition
T visitAlterByCoalescePartition(MySqlParser.AlterByCoalescePartitionContext ctx)
Visit a parse tree produced by thealterByCoalescePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByReorganizePartition
T visitAlterByReorganizePartition(MySqlParser.AlterByReorganizePartitionContext ctx)
Visit a parse tree produced by thealterByReorganizePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByExchangePartition
T visitAlterByExchangePartition(MySqlParser.AlterByExchangePartitionContext ctx)
Visit a parse tree produced by thealterByExchangePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByAnalyzePartition
T visitAlterByAnalyzePartition(MySqlParser.AlterByAnalyzePartitionContext ctx)
Visit a parse tree produced by thealterByAnalyzePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByCheckPartition
T visitAlterByCheckPartition(MySqlParser.AlterByCheckPartitionContext ctx)
Visit a parse tree produced by thealterByCheckPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByOptimizePartition
T visitAlterByOptimizePartition(MySqlParser.AlterByOptimizePartitionContext ctx)
Visit a parse tree produced by thealterByOptimizePartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRebuildPartition
T visitAlterByRebuildPartition(MySqlParser.AlterByRebuildPartitionContext ctx)
Visit a parse tree produced by thealterByRebuildPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRepairPartition
T visitAlterByRepairPartition(MySqlParser.AlterByRepairPartitionContext ctx)
Visit a parse tree produced by thealterByRepairPartitionlabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByRemovePartitioning
T visitAlterByRemovePartitioning(MySqlParser.AlterByRemovePartitioningContext ctx)
Visit a parse tree produced by thealterByRemovePartitioninglabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterByUpgradePartitioning
T visitAlterByUpgradePartitioning(MySqlParser.AlterByUpgradePartitioningContext ctx)
Visit a parse tree produced by thealterByUpgradePartitioninglabeled alternative inMySqlParser.alterPartitionSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDatabase
T visitDropDatabase(MySqlParser.DropDatabaseContext ctx)
Visit a parse tree produced byMySqlParser.dropDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropEvent
T visitDropEvent(MySqlParser.DropEventContext ctx)
Visit a parse tree produced byMySqlParser.dropEvent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropIndex
T visitDropIndex(MySqlParser.DropIndexContext ctx)
Visit a parse tree produced byMySqlParser.dropIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropLogfileGroup
T visitDropLogfileGroup(MySqlParser.DropLogfileGroupContext ctx)
Visit a parse tree produced byMySqlParser.dropLogfileGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropProcedure
T visitDropProcedure(MySqlParser.DropProcedureContext ctx)
Visit a parse tree produced byMySqlParser.dropProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropFunction
T visitDropFunction(MySqlParser.DropFunctionContext ctx)
Visit a parse tree produced byMySqlParser.dropFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropServer
T visitDropServer(MySqlParser.DropServerContext ctx)
Visit a parse tree produced byMySqlParser.dropServer().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTable
T visitDropTable(MySqlParser.DropTableContext ctx)
Visit a parse tree produced byMySqlParser.dropTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTablespace
T visitDropTablespace(MySqlParser.DropTablespaceContext ctx)
Visit a parse tree produced byMySqlParser.dropTablespace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTrigger
T visitDropTrigger(MySqlParser.DropTriggerContext ctx)
Visit a parse tree produced byMySqlParser.dropTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropView
T visitDropView(MySqlParser.DropViewContext ctx)
Visit a parse tree produced byMySqlParser.dropView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRole
T visitDropRole(MySqlParser.DropRoleContext ctx)
Visit a parse tree produced byMySqlParser.dropRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetRole
T visitSetRole(MySqlParser.SetRoleContext ctx)
Visit a parse tree produced byMySqlParser.setRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameTable
T visitRenameTable(MySqlParser.RenameTableContext ctx)
Visit a parse tree produced byMySqlParser.renameTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameTableClause
T visitRenameTableClause(MySqlParser.RenameTableClauseContext ctx)
Visit a parse tree produced byMySqlParser.renameTableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTruncateTable
T visitTruncateTable(MySqlParser.TruncateTableContext ctx)
Visit a parse tree produced byMySqlParser.truncateTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCallStatement
T visitCallStatement(MySqlParser.CallStatementContext ctx)
Visit a parse tree produced byMySqlParser.callStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeleteStatement
T visitDeleteStatement(MySqlParser.DeleteStatementContext ctx)
Visit a parse tree produced byMySqlParser.deleteStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoStatement
T visitDoStatement(MySqlParser.DoStatementContext ctx)
Visit a parse tree produced byMySqlParser.doStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerStatement
T visitHandlerStatement(MySqlParser.HandlerStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertStatement
T visitInsertStatement(MySqlParser.InsertStatementContext ctx)
Visit a parse tree produced byMySqlParser.insertStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoadDataStatement
T visitLoadDataStatement(MySqlParser.LoadDataStatementContext ctx)
Visit a parse tree produced byMySqlParser.loadDataStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoadXmlStatement
T visitLoadXmlStatement(MySqlParser.LoadXmlStatementContext ctx)
Visit a parse tree produced byMySqlParser.loadXmlStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReplaceStatement
T visitReplaceStatement(MySqlParser.ReplaceStatementContext ctx)
Visit a parse tree produced byMySqlParser.replaceStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleSelect
T visitSimpleSelect(MySqlParser.SimpleSelectContext ctx)
Visit a parse tree produced by thesimpleSelectlabeled alternative inMySqlParser.selectStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParenthesisSelect
T visitParenthesisSelect(MySqlParser.ParenthesisSelectContext ctx)
Visit a parse tree produced by theparenthesisSelectlabeled alternative inMySqlParser.selectStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnionSelect
T visitUnionSelect(MySqlParser.UnionSelectContext ctx)
Visit a parse tree produced by theunionSelectlabeled alternative inMySqlParser.selectStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnionParenthesisSelect
T visitUnionParenthesisSelect(MySqlParser.UnionParenthesisSelectContext ctx)
Visit a parse tree produced by theunionParenthesisSelectlabeled alternative inMySqlParser.selectStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithLateralStatement
T visitWithLateralStatement(MySqlParser.WithLateralStatementContext ctx)
Visit a parse tree produced by thewithLateralStatementlabeled alternative inMySqlParser.selectStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpdateStatement
T visitUpdateStatement(MySqlParser.UpdateStatementContext ctx)
Visit a parse tree produced byMySqlParser.updateStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValuesStatement
T visitValuesStatement(MySqlParser.ValuesStatementContext ctx)
Visit a parse tree produced byMySqlParser.valuesStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertStatementValue
T visitInsertStatementValue(MySqlParser.InsertStatementValueContext ctx)
Visit a parse tree produced byMySqlParser.insertStatementValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpdatedElement
T visitUpdatedElement(MySqlParser.UpdatedElementContext ctx)
Visit a parse tree produced byMySqlParser.updatedElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentField
T visitAssignmentField(MySqlParser.AssignmentFieldContext ctx)
Visit a parse tree produced byMySqlParser.assignmentField().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockClause
T visitLockClause(MySqlParser.LockClauseContext ctx)
Visit a parse tree produced byMySqlParser.lockClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleDeleteStatement
T visitSingleDeleteStatement(MySqlParser.SingleDeleteStatementContext ctx)
Visit a parse tree produced byMySqlParser.singleDeleteStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultipleDeleteStatement
T visitMultipleDeleteStatement(MySqlParser.MultipleDeleteStatementContext ctx)
Visit a parse tree produced byMySqlParser.multipleDeleteStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerOpenStatement
T visitHandlerOpenStatement(MySqlParser.HandlerOpenStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerOpenStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerReadIndexStatement
T visitHandlerReadIndexStatement(MySqlParser.HandlerReadIndexStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerReadIndexStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerReadStatement
T visitHandlerReadStatement(MySqlParser.HandlerReadStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerReadStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerCloseStatement
T visitHandlerCloseStatement(MySqlParser.HandlerCloseStatementContext ctx)
Visit a parse tree produced byMySqlParser.handlerCloseStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleUpdateStatement
T visitSingleUpdateStatement(MySqlParser.SingleUpdateStatementContext ctx)
Visit a parse tree produced byMySqlParser.singleUpdateStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultipleUpdateStatement
T visitMultipleUpdateStatement(MySqlParser.MultipleUpdateStatementContext ctx)
Visit a parse tree produced byMySqlParser.multipleUpdateStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByClause
T visitOrderByClause(MySqlParser.OrderByClauseContext ctx)
Visit a parse tree produced byMySqlParser.orderByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByExpression
T visitOrderByExpression(MySqlParser.OrderByExpressionContext ctx)
Visit a parse tree produced byMySqlParser.orderByExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSources
T visitTableSources(MySqlParser.TableSourcesContext ctx)
Visit a parse tree produced byMySqlParser.tableSources().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSourceBase
T visitTableSourceBase(MySqlParser.TableSourceBaseContext ctx)
Visit a parse tree produced by thetableSourceBaselabeled alternative inMySqlParser.tableSource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSourceNested
T visitTableSourceNested(MySqlParser.TableSourceNestedContext ctx)
Visit a parse tree produced by thetableSourceNestedlabeled alternative inMySqlParser.tableSource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableJson
T visitTableJson(MySqlParser.TableJsonContext ctx)
Visit a parse tree produced by thetableJsonlabeled alternative inMySqlParser.tableSource().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtomTableItem
T visitAtomTableItem(MySqlParser.AtomTableItemContext ctx)
Visit a parse tree produced by theatomTableItemlabeled alternative inMySqlParser.tableSourceItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubqueryTableItem
T visitSubqueryTableItem(MySqlParser.SubqueryTableItemContext ctx)
Visit a parse tree produced by thesubqueryTableItemlabeled alternative inMySqlParser.tableSourceItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableSourcesItem
T visitTableSourcesItem(MySqlParser.TableSourcesItemContext ctx)
Visit a parse tree produced by thetableSourcesItemlabeled alternative inMySqlParser.tableSourceItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexHint
T visitIndexHint(MySqlParser.IndexHintContext ctx)
Visit a parse tree produced byMySqlParser.indexHint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexHintType
T visitIndexHintType(MySqlParser.IndexHintTypeContext ctx)
Visit a parse tree produced byMySqlParser.indexHintType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInnerJoin
T visitInnerJoin(MySqlParser.InnerJoinContext ctx)
Visit a parse tree produced by theinnerJoinlabeled alternative inMySqlParser.joinPart().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStraightJoin
T visitStraightJoin(MySqlParser.StraightJoinContext ctx)
Visit a parse tree produced by thestraightJoinlabeled alternative inMySqlParser.joinPart().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOuterJoin
T visitOuterJoin(MySqlParser.OuterJoinContext ctx)
Visit a parse tree produced by theouterJoinlabeled alternative inMySqlParser.joinPart().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNaturalJoin
T visitNaturalJoin(MySqlParser.NaturalJoinContext ctx)
Visit a parse tree produced by thenaturalJoinlabeled alternative inMySqlParser.joinPart().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinSpec
T visitJoinSpec(MySqlParser.JoinSpecContext ctx)
Visit a parse tree produced byMySqlParser.joinSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryExpression
T visitQueryExpression(MySqlParser.QueryExpressionContext ctx)
Visit a parse tree produced byMySqlParser.queryExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryExpressionNointo
T visitQueryExpressionNointo(MySqlParser.QueryExpressionNointoContext ctx)
Visit a parse tree produced byMySqlParser.queryExpressionNointo().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuerySpecification
T visitQuerySpecification(MySqlParser.QuerySpecificationContext ctx)
Visit a parse tree produced byMySqlParser.querySpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQuerySpecificationNointo
T visitQuerySpecificationNointo(MySqlParser.QuerySpecificationNointoContext ctx)
Visit a parse tree produced byMySqlParser.querySpecificationNointo().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnionParenthesis
T visitUnionParenthesis(MySqlParser.UnionParenthesisContext ctx)
Visit a parse tree produced byMySqlParser.unionParenthesis().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnionStatement
T visitUnionStatement(MySqlParser.UnionStatementContext ctx)
Visit a parse tree produced byMySqlParser.unionStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLateralStatement
T visitLateralStatement(MySqlParser.LateralStatementContext ctx)
Visit a parse tree produced byMySqlParser.lateralStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonTable
T visitJsonTable(MySqlParser.JsonTableContext ctx)
Visit a parse tree produced byMySqlParser.jsonTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonColumnList
T visitJsonColumnList(MySqlParser.JsonColumnListContext ctx)
Visit a parse tree produced byMySqlParser.jsonColumnList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonColumn
T visitJsonColumn(MySqlParser.JsonColumnContext ctx)
Visit a parse tree produced byMySqlParser.jsonColumn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonOnEmpty
T visitJsonOnEmpty(MySqlParser.JsonOnEmptyContext ctx)
Visit a parse tree produced byMySqlParser.jsonOnEmpty().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonOnError
T visitJsonOnError(MySqlParser.JsonOnErrorContext ctx)
Visit a parse tree produced byMySqlParser.jsonOnError().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectSpec
T visitSelectSpec(MySqlParser.SelectSpecContext ctx)
Visit a parse tree produced byMySqlParser.selectSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectElements
T visitSelectElements(MySqlParser.SelectElementsContext ctx)
Visit a parse tree produced byMySqlParser.selectElements().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectStarElement
T visitSelectStarElement(MySqlParser.SelectStarElementContext ctx)
Visit a parse tree produced by theselectStarElementlabeled alternative inMySqlParser.selectElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectColumnElement
T visitSelectColumnElement(MySqlParser.SelectColumnElementContext ctx)
Visit a parse tree produced by theselectColumnElementlabeled alternative inMySqlParser.selectElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectFunctionElement
T visitSelectFunctionElement(MySqlParser.SelectFunctionElementContext ctx)
Visit a parse tree produced by theselectFunctionElementlabeled alternative inMySqlParser.selectElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectExpressionElement
T visitSelectExpressionElement(MySqlParser.SelectExpressionElementContext ctx)
Visit a parse tree produced by theselectExpressionElementlabeled alternative inMySqlParser.selectElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectIntoVariables
T visitSelectIntoVariables(MySqlParser.SelectIntoVariablesContext ctx)
Visit a parse tree produced by theselectIntoVariableslabeled alternative inMySqlParser.selectIntoExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectIntoDumpFile
T visitSelectIntoDumpFile(MySqlParser.SelectIntoDumpFileContext ctx)
Visit a parse tree produced by theselectIntoDumpFilelabeled alternative inMySqlParser.selectIntoExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectIntoTextFile
T visitSelectIntoTextFile(MySqlParser.SelectIntoTextFileContext ctx)
Visit a parse tree produced by theselectIntoTextFilelabeled alternative inMySqlParser.selectIntoExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectFieldsInto
T visitSelectFieldsInto(MySqlParser.SelectFieldsIntoContext ctx)
Visit a parse tree produced byMySqlParser.selectFieldsInto().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectLinesInto
T visitSelectLinesInto(MySqlParser.SelectLinesIntoContext ctx)
Visit a parse tree produced byMySqlParser.selectLinesInto().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromClause
T visitFromClause(MySqlParser.FromClauseContext ctx)
Visit a parse tree produced byMySqlParser.fromClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByClause
T visitGroupByClause(MySqlParser.GroupByClauseContext ctx)
Visit a parse tree produced byMySqlParser.groupByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHavingClause
T visitHavingClause(MySqlParser.HavingClauseContext ctx)
Visit a parse tree produced byMySqlParser.havingClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowClause
T visitWindowClause(MySqlParser.WindowClauseContext ctx)
Visit a parse tree produced byMySqlParser.windowClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByItem
T visitGroupByItem(MySqlParser.GroupByItemContext ctx)
Visit a parse tree produced byMySqlParser.groupByItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClause
T visitLimitClause(MySqlParser.LimitClauseContext ctx)
Visit a parse tree produced byMySqlParser.limitClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClauseAtom
T visitLimitClauseAtom(MySqlParser.LimitClauseAtomContext ctx)
Visit a parse tree produced byMySqlParser.limitClauseAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartTransaction
T visitStartTransaction(MySqlParser.StartTransactionContext ctx)
Visit a parse tree produced byMySqlParser.startTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBeginWork
T visitBeginWork(MySqlParser.BeginWorkContext ctx)
Visit a parse tree produced byMySqlParser.beginWork().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommitWork
T visitCommitWork(MySqlParser.CommitWorkContext ctx)
Visit a parse tree produced byMySqlParser.commitWork().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackWork
T visitRollbackWork(MySqlParser.RollbackWorkContext ctx)
Visit a parse tree produced byMySqlParser.rollbackWork().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSavepointStatement
T visitSavepointStatement(MySqlParser.SavepointStatementContext ctx)
Visit a parse tree produced byMySqlParser.savepointStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackStatement
T visitRollbackStatement(MySqlParser.RollbackStatementContext ctx)
Visit a parse tree produced byMySqlParser.rollbackStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReleaseStatement
T visitReleaseStatement(MySqlParser.ReleaseStatementContext ctx)
Visit a parse tree produced byMySqlParser.releaseStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockTables
T visitLockTables(MySqlParser.LockTablesContext ctx)
Visit a parse tree produced byMySqlParser.lockTables().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnlockTables
T visitUnlockTables(MySqlParser.UnlockTablesContext ctx)
Visit a parse tree produced byMySqlParser.unlockTables().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetAutocommitStatement
T visitSetAutocommitStatement(MySqlParser.SetAutocommitStatementContext ctx)
Visit a parse tree produced byMySqlParser.setAutocommitStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTransactionStatement
T visitSetTransactionStatement(MySqlParser.SetTransactionStatementContext ctx)
Visit a parse tree produced byMySqlParser.setTransactionStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionMode
T visitTransactionMode(MySqlParser.TransactionModeContext ctx)
Visit a parse tree produced byMySqlParser.transactionMode().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockTableElement
T visitLockTableElement(MySqlParser.LockTableElementContext ctx)
Visit a parse tree produced byMySqlParser.lockTableElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLockAction
T visitLockAction(MySqlParser.LockActionContext ctx)
Visit a parse tree produced byMySqlParser.lockAction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionOption
T visitTransactionOption(MySqlParser.TransactionOptionContext ctx)
Visit a parse tree produced byMySqlParser.transactionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionLevel
T visitTransactionLevel(MySqlParser.TransactionLevelContext ctx)
Visit a parse tree produced byMySqlParser.transactionLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChangeMaster
T visitChangeMaster(MySqlParser.ChangeMasterContext ctx)
Visit a parse tree produced byMySqlParser.changeMaster().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChangeReplicationFilter
T visitChangeReplicationFilter(MySqlParser.ChangeReplicationFilterContext ctx)
Visit a parse tree produced byMySqlParser.changeReplicationFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPurgeBinaryLogs
T visitPurgeBinaryLogs(MySqlParser.PurgeBinaryLogsContext ctx)
Visit a parse tree produced byMySqlParser.purgeBinaryLogs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetMaster
T visitResetMaster(MySqlParser.ResetMasterContext ctx)
Visit a parse tree produced byMySqlParser.resetMaster().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetSlave
T visitResetSlave(MySqlParser.ResetSlaveContext ctx)
Visit a parse tree produced byMySqlParser.resetSlave().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartSlave
T visitStartSlave(MySqlParser.StartSlaveContext ctx)
Visit a parse tree produced byMySqlParser.startSlave().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStopSlave
T visitStopSlave(MySqlParser.StopSlaveContext ctx)
Visit a parse tree produced byMySqlParser.stopSlave().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStartGroupReplication
T visitStartGroupReplication(MySqlParser.StartGroupReplicationContext ctx)
Visit a parse tree produced byMySqlParser.startGroupReplication().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStopGroupReplication
T visitStopGroupReplication(MySqlParser.StopGroupReplicationContext ctx)
Visit a parse tree produced byMySqlParser.stopGroupReplication().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterStringOption
T visitMasterStringOption(MySqlParser.MasterStringOptionContext ctx)
Visit a parse tree produced by themasterStringOptionlabeled alternative inMySqlParser.masterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterDecimalOption
T visitMasterDecimalOption(MySqlParser.MasterDecimalOptionContext ctx)
Visit a parse tree produced by themasterDecimalOptionlabeled alternative inMySqlParser.masterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterBoolOption
T visitMasterBoolOption(MySqlParser.MasterBoolOptionContext ctx)
Visit a parse tree produced by themasterBoolOptionlabeled alternative inMySqlParser.masterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterRealOption
T visitMasterRealOption(MySqlParser.MasterRealOptionContext ctx)
Visit a parse tree produced by themasterRealOptionlabeled alternative inMySqlParser.masterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterUidListOption
T visitMasterUidListOption(MySqlParser.MasterUidListOptionContext ctx)
Visit a parse tree produced by themasterUidListOptionlabeled alternative inMySqlParser.masterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringMasterOption
T visitStringMasterOption(MySqlParser.StringMasterOptionContext ctx)
Visit a parse tree produced byMySqlParser.stringMasterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecimalMasterOption
T visitDecimalMasterOption(MySqlParser.DecimalMasterOptionContext ctx)
Visit a parse tree produced byMySqlParser.decimalMasterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBoolMasterOption
T visitBoolMasterOption(MySqlParser.BoolMasterOptionContext ctx)
Visit a parse tree produced byMySqlParser.boolMasterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChannelOption
T visitChannelOption(MySqlParser.ChannelOptionContext ctx)
Visit a parse tree produced byMySqlParser.channelOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoDbReplication
T visitDoDbReplication(MySqlParser.DoDbReplicationContext ctx)
Visit a parse tree produced by thedoDbReplicationlabeled alternative inMySqlParser.replicationFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoreDbReplication
T visitIgnoreDbReplication(MySqlParser.IgnoreDbReplicationContext ctx)
Visit a parse tree produced by theignoreDbReplicationlabeled alternative inMySqlParser.replicationFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDoTableReplication
T visitDoTableReplication(MySqlParser.DoTableReplicationContext ctx)
Visit a parse tree produced by thedoTableReplicationlabeled alternative inMySqlParser.replicationFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoreTableReplication
T visitIgnoreTableReplication(MySqlParser.IgnoreTableReplicationContext ctx)
Visit a parse tree produced by theignoreTableReplicationlabeled alternative inMySqlParser.replicationFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildDoTableReplication
T visitWildDoTableReplication(MySqlParser.WildDoTableReplicationContext ctx)
Visit a parse tree produced by thewildDoTableReplicationlabeled alternative inMySqlParser.replicationFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWildIgnoreTableReplication
T visitWildIgnoreTableReplication(MySqlParser.WildIgnoreTableReplicationContext ctx)
Visit a parse tree produced by thewildIgnoreTableReplicationlabeled alternative inMySqlParser.replicationFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRewriteDbReplication
T visitRewriteDbReplication(MySqlParser.RewriteDbReplicationContext ctx)
Visit a parse tree produced by therewriteDbReplicationlabeled alternative inMySqlParser.replicationFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTablePair
T visitTablePair(MySqlParser.TablePairContext ctx)
Visit a parse tree produced byMySqlParser.tablePair().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitThreadType
T visitThreadType(MySqlParser.ThreadTypeContext ctx)
Visit a parse tree produced byMySqlParser.threadType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGtidsUntilOption
T visitGtidsUntilOption(MySqlParser.GtidsUntilOptionContext ctx)
Visit a parse tree produced by thegtidsUntilOptionlabeled alternative inMySqlParser.untilOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMasterLogUntilOption
T visitMasterLogUntilOption(MySqlParser.MasterLogUntilOptionContext ctx)
Visit a parse tree produced by themasterLogUntilOptionlabeled alternative inMySqlParser.untilOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelayLogUntilOption
T visitRelayLogUntilOption(MySqlParser.RelayLogUntilOptionContext ctx)
Visit a parse tree produced by therelayLogUntilOptionlabeled alternative inMySqlParser.untilOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSqlGapsUntilOption
T visitSqlGapsUntilOption(MySqlParser.SqlGapsUntilOptionContext ctx)
Visit a parse tree produced by thesqlGapsUntilOptionlabeled alternative inMySqlParser.untilOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserConnectionOption
T visitUserConnectionOption(MySqlParser.UserConnectionOptionContext ctx)
Visit a parse tree produced by theuserConnectionOptionlabeled alternative inMySqlParser.connectionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordConnectionOption
T visitPasswordConnectionOption(MySqlParser.PasswordConnectionOptionContext ctx)
Visit a parse tree produced by thepasswordConnectionOptionlabeled alternative inMySqlParser.connectionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultAuthConnectionOption
T visitDefaultAuthConnectionOption(MySqlParser.DefaultAuthConnectionOptionContext ctx)
Visit a parse tree produced by thedefaultAuthConnectionOptionlabeled alternative inMySqlParser.connectionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPluginDirConnectionOption
T visitPluginDirConnectionOption(MySqlParser.PluginDirConnectionOptionContext ctx)
Visit a parse tree produced by thepluginDirConnectionOptionlabeled alternative inMySqlParser.connectionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGtuidSet
T visitGtuidSet(MySqlParser.GtuidSetContext ctx)
Visit a parse tree produced byMySqlParser.gtuidSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaStartTransaction
T visitXaStartTransaction(MySqlParser.XaStartTransactionContext ctx)
Visit a parse tree produced byMySqlParser.xaStartTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaEndTransaction
T visitXaEndTransaction(MySqlParser.XaEndTransactionContext ctx)
Visit a parse tree produced byMySqlParser.xaEndTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaPrepareStatement
T visitXaPrepareStatement(MySqlParser.XaPrepareStatementContext ctx)
Visit a parse tree produced byMySqlParser.xaPrepareStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaCommitWork
T visitXaCommitWork(MySqlParser.XaCommitWorkContext ctx)
Visit a parse tree produced byMySqlParser.xaCommitWork().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaRollbackWork
T visitXaRollbackWork(MySqlParser.XaRollbackWorkContext ctx)
Visit a parse tree produced byMySqlParser.xaRollbackWork().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXaRecoverWork
T visitXaRecoverWork(MySqlParser.XaRecoverWorkContext ctx)
Visit a parse tree produced byMySqlParser.xaRecoverWork().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrepareStatement
T visitPrepareStatement(MySqlParser.PrepareStatementContext ctx)
Visit a parse tree produced byMySqlParser.prepareStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExecuteStatement
T visitExecuteStatement(MySqlParser.ExecuteStatementContext ctx)
Visit a parse tree produced byMySqlParser.executeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeallocatePrepare
T visitDeallocatePrepare(MySqlParser.DeallocatePrepareContext ctx)
Visit a parse tree produced byMySqlParser.deallocatePrepare().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoutineBody
T visitRoutineBody(MySqlParser.RoutineBodyContext ctx)
Visit a parse tree produced byMySqlParser.routineBody().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlockStatement
T visitBlockStatement(MySqlParser.BlockStatementContext ctx)
Visit a parse tree produced byMySqlParser.blockStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseStatement
T visitCaseStatement(MySqlParser.CaseStatementContext ctx)
Visit a parse tree produced byMySqlParser.caseStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfStatement
T visitIfStatement(MySqlParser.IfStatementContext ctx)
Visit a parse tree produced byMySqlParser.ifStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIterateStatement
T visitIterateStatement(MySqlParser.IterateStatementContext ctx)
Visit a parse tree produced byMySqlParser.iterateStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLeaveStatement
T visitLeaveStatement(MySqlParser.LeaveStatementContext ctx)
Visit a parse tree produced byMySqlParser.leaveStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoopStatement
T visitLoopStatement(MySqlParser.LoopStatementContext ctx)
Visit a parse tree produced byMySqlParser.loopStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRepeatStatement
T visitRepeatStatement(MySqlParser.RepeatStatementContext ctx)
Visit a parse tree produced byMySqlParser.repeatStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReturnStatement
T visitReturnStatement(MySqlParser.ReturnStatementContext ctx)
Visit a parse tree produced byMySqlParser.returnStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhileStatement
T visitWhileStatement(MySqlParser.WhileStatementContext ctx)
Visit a parse tree produced byMySqlParser.whileStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCloseCursor
T visitCloseCursor(MySqlParser.CloseCursorContext ctx)
Visit a parse tree produced by theCloseCursorlabeled alternative inMySqlParser.cursorStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFetchCursor
T visitFetchCursor(MySqlParser.FetchCursorContext ctx)
Visit a parse tree produced by theFetchCursorlabeled alternative inMySqlParser.cursorStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOpenCursor
T visitOpenCursor(MySqlParser.OpenCursorContext ctx)
Visit a parse tree produced by theOpenCursorlabeled alternative inMySqlParser.cursorStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareVariable
T visitDeclareVariable(MySqlParser.DeclareVariableContext ctx)
Visit a parse tree produced byMySqlParser.declareVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareCondition
T visitDeclareCondition(MySqlParser.DeclareConditionContext ctx)
Visit a parse tree produced byMySqlParser.declareCondition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareCursor
T visitDeclareCursor(MySqlParser.DeclareCursorContext ctx)
Visit a parse tree produced byMySqlParser.declareCursor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareHandler
T visitDeclareHandler(MySqlParser.DeclareHandlerContext ctx)
Visit a parse tree produced byMySqlParser.declareHandler().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionCode
T visitHandlerConditionCode(MySqlParser.HandlerConditionCodeContext ctx)
Visit a parse tree produced by thehandlerConditionCodelabeled alternative inMySqlParser.handlerConditionValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionState
T visitHandlerConditionState(MySqlParser.HandlerConditionStateContext ctx)
Visit a parse tree produced by thehandlerConditionStatelabeled alternative inMySqlParser.handlerConditionValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionName
T visitHandlerConditionName(MySqlParser.HandlerConditionNameContext ctx)
Visit a parse tree produced by thehandlerConditionNamelabeled alternative inMySqlParser.handlerConditionValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionWarning
T visitHandlerConditionWarning(MySqlParser.HandlerConditionWarningContext ctx)
Visit a parse tree produced by thehandlerConditionWarninglabeled alternative inMySqlParser.handlerConditionValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionNotfound
T visitHandlerConditionNotfound(MySqlParser.HandlerConditionNotfoundContext ctx)
Visit a parse tree produced by thehandlerConditionNotfoundlabeled alternative inMySqlParser.handlerConditionValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHandlerConditionException
T visitHandlerConditionException(MySqlParser.HandlerConditionExceptionContext ctx)
Visit a parse tree produced by thehandlerConditionExceptionlabeled alternative inMySqlParser.handlerConditionValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureSqlStatement
T visitProcedureSqlStatement(MySqlParser.ProcedureSqlStatementContext ctx)
Visit a parse tree produced byMySqlParser.procedureSqlStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseAlternative
T visitCaseAlternative(MySqlParser.CaseAlternativeContext ctx)
Visit a parse tree produced byMySqlParser.caseAlternative().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitElifAlternative
T visitElifAlternative(MySqlParser.ElifAlternativeContext ctx)
Visit a parse tree produced byMySqlParser.elifAlternative().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUserMysqlV56
T visitAlterUserMysqlV56(MySqlParser.AlterUserMysqlV56Context ctx)
Visit a parse tree produced by thealterUserMysqlV56labeled alternative inMySqlParser.alterUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUserMysqlV80
T visitAlterUserMysqlV80(MySqlParser.AlterUserMysqlV80Context ctx)
Visit a parse tree produced by thealterUserMysqlV80labeled alternative inMySqlParser.alterUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserMysqlV56
T visitCreateUserMysqlV56(MySqlParser.CreateUserMysqlV56Context ctx)
Visit a parse tree produced by thecreateUserMysqlV56labeled alternative inMySqlParser.createUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserMysqlV80
T visitCreateUserMysqlV80(MySqlParser.CreateUserMysqlV80Context ctx)
Visit a parse tree produced by thecreateUserMysqlV80labeled alternative inMySqlParser.createUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropUser
T visitDropUser(MySqlParser.DropUserContext ctx)
Visit a parse tree produced byMySqlParser.dropUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantStatement
T visitGrantStatement(MySqlParser.GrantStatementContext ctx)
Visit a parse tree produced byMySqlParser.grantStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleOption
T visitRoleOption(MySqlParser.RoleOptionContext ctx)
Visit a parse tree produced byMySqlParser.roleOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantProxy
T visitGrantProxy(MySqlParser.GrantProxyContext ctx)
Visit a parse tree produced byMySqlParser.grantProxy().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameUser
T visitRenameUser(MySqlParser.RenameUserContext ctx)
Visit a parse tree produced byMySqlParser.renameUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDetailRevoke
T visitDetailRevoke(MySqlParser.DetailRevokeContext ctx)
Visit a parse tree produced by thedetailRevokelabeled alternative inMySqlParser.revokeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShortRevoke
T visitShortRevoke(MySqlParser.ShortRevokeContext ctx)
Visit a parse tree produced by theshortRevokelabeled alternative inMySqlParser.revokeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleRevoke
T visitRoleRevoke(MySqlParser.RoleRevokeContext ctx)
Visit a parse tree produced by theroleRevokelabeled alternative inMySqlParser.revokeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevokeProxy
T visitRevokeProxy(MySqlParser.RevokeProxyContext ctx)
Visit a parse tree produced byMySqlParser.revokeProxy().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetPasswordStatement
T visitSetPasswordStatement(MySqlParser.SetPasswordStatementContext ctx)
Visit a parse tree produced byMySqlParser.setPasswordStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserSpecification
T visitUserSpecification(MySqlParser.UserSpecificationContext ctx)
Visit a parse tree produced byMySqlParser.userSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHashAuthOption
T visitHashAuthOption(MySqlParser.HashAuthOptionContext ctx)
Visit a parse tree produced by thehashAuthOptionlabeled alternative inMySqlParser.userAuthOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRandomAuthOption
T visitRandomAuthOption(MySqlParser.RandomAuthOptionContext ctx)
Visit a parse tree produced by therandomAuthOptionlabeled alternative inMySqlParser.userAuthOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringAuthOption
T visitStringAuthOption(MySqlParser.StringAuthOptionContext ctx)
Visit a parse tree produced by thestringAuthOptionlabeled alternative inMySqlParser.userAuthOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModuleAuthOption
T visitModuleAuthOption(MySqlParser.ModuleAuthOptionContext ctx)
Visit a parse tree produced by themoduleAuthOptionlabeled alternative inMySqlParser.userAuthOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleAuthOption
T visitSimpleAuthOption(MySqlParser.SimpleAuthOptionContext ctx)
Visit a parse tree produced by thesimpleAuthOptionlabeled alternative inMySqlParser.userAuthOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAuthOptionClause
T visitAuthOptionClause(MySqlParser.AuthOptionClauseContext ctx)
Visit a parse tree produced byMySqlParser.authOptionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModule
T visitModule(MySqlParser.ModuleContext ctx)
Visit a parse tree produced by themodulelabeled alternative inMySqlParser.authenticationRule().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordModuleOption
T visitPasswordModuleOption(MySqlParser.PasswordModuleOptionContext ctx)
Visit a parse tree produced by thepasswordModuleOptionlabeled alternative inMySqlParser.authenticationRule().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTlsOption
T visitTlsOption(MySqlParser.TlsOptionContext ctx)
Visit a parse tree produced byMySqlParser.tlsOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserResourceOption
T visitUserResourceOption(MySqlParser.UserResourceOptionContext ctx)
Visit a parse tree produced byMySqlParser.userResourceOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserPasswordOption
T visitUserPasswordOption(MySqlParser.UserPasswordOptionContext ctx)
Visit a parse tree produced byMySqlParser.userPasswordOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserLockOption
T visitUserLockOption(MySqlParser.UserLockOptionContext ctx)
Visit a parse tree produced byMySqlParser.userLockOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivelegeClause
T visitPrivelegeClause(MySqlParser.PrivelegeClauseContext ctx)
Visit a parse tree produced byMySqlParser.privelegeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilege
T visitPrivilege(MySqlParser.PrivilegeContext ctx)
Visit a parse tree produced byMySqlParser.privilege().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentSchemaPriviLevel
T visitCurrentSchemaPriviLevel(MySqlParser.CurrentSchemaPriviLevelContext ctx)
Visit a parse tree produced by thecurrentSchemaPriviLevellabeled alternative inMySqlParser.privilegeLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGlobalPrivLevel
T visitGlobalPrivLevel(MySqlParser.GlobalPrivLevelContext ctx)
Visit a parse tree produced by theglobalPrivLevellabeled alternative inMySqlParser.privilegeLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefiniteSchemaPrivLevel
T visitDefiniteSchemaPrivLevel(MySqlParser.DefiniteSchemaPrivLevelContext ctx)
Visit a parse tree produced by thedefiniteSchemaPrivLevellabeled alternative inMySqlParser.privilegeLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefiniteFullTablePrivLevel
T visitDefiniteFullTablePrivLevel(MySqlParser.DefiniteFullTablePrivLevelContext ctx)
Visit a parse tree produced by thedefiniteFullTablePrivLevellabeled alternative inMySqlParser.privilegeLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefiniteFullTablePrivLevel2
T visitDefiniteFullTablePrivLevel2(MySqlParser.DefiniteFullTablePrivLevel2Context ctx)
Visit a parse tree produced by thedefiniteFullTablePrivLevel2labeled alternative inMySqlParser.privilegeLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefiniteTablePrivLevel
T visitDefiniteTablePrivLevel(MySqlParser.DefiniteTablePrivLevelContext ctx)
Visit a parse tree produced by thedefiniteTablePrivLevellabeled alternative inMySqlParser.privilegeLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRenameUserClause
T visitRenameUserClause(MySqlParser.RenameUserClauseContext ctx)
Visit a parse tree produced byMySqlParser.renameUserClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAnalyzeTable
T visitAnalyzeTable(MySqlParser.AnalyzeTableContext ctx)
Visit a parse tree produced byMySqlParser.analyzeTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckTable
T visitCheckTable(MySqlParser.CheckTableContext ctx)
Visit a parse tree produced byMySqlParser.checkTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChecksumTable
T visitChecksumTable(MySqlParser.ChecksumTableContext ctx)
Visit a parse tree produced byMySqlParser.checksumTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptimizeTable
T visitOptimizeTable(MySqlParser.OptimizeTableContext ctx)
Visit a parse tree produced byMySqlParser.optimizeTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRepairTable
T visitRepairTable(MySqlParser.RepairTableContext ctx)
Visit a parse tree produced byMySqlParser.repairTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckTableOption
T visitCheckTableOption(MySqlParser.CheckTableOptionContext ctx)
Visit a parse tree produced byMySqlParser.checkTableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUdfunction
T visitCreateUdfunction(MySqlParser.CreateUdfunctionContext ctx)
Visit a parse tree produced byMySqlParser.createUdfunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInstallPlugin
T visitInstallPlugin(MySqlParser.InstallPluginContext ctx)
Visit a parse tree produced byMySqlParser.installPlugin().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUninstallPlugin
T visitUninstallPlugin(MySqlParser.UninstallPluginContext ctx)
Visit a parse tree produced byMySqlParser.uninstallPlugin().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetVariable
T visitSetVariable(MySqlParser.SetVariableContext ctx)
Visit a parse tree produced by thesetVariablelabeled alternative inMySqlParser.setStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetCharset
T visitSetCharset(MySqlParser.SetCharsetContext ctx)
Visit a parse tree produced by thesetCharsetlabeled alternative inMySqlParser.setStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetNames
T visitSetNames(MySqlParser.SetNamesContext ctx)
Visit a parse tree produced by thesetNameslabeled alternative inMySqlParser.setStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetPassword
T visitSetPassword(MySqlParser.SetPasswordContext ctx)
Visit a parse tree produced by thesetPasswordlabeled alternative inMySqlParser.setStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTransaction
T visitSetTransaction(MySqlParser.SetTransactionContext ctx)
Visit a parse tree produced by thesetTransactionlabeled alternative inMySqlParser.setStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetAutocommit
T visitSetAutocommit(MySqlParser.SetAutocommitContext ctx)
Visit a parse tree produced by thesetAutocommitlabeled alternative inMySqlParser.setStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetNewValueInsideTrigger
T visitSetNewValueInsideTrigger(MySqlParser.SetNewValueInsideTriggerContext ctx)
Visit a parse tree produced by thesetNewValueInsideTriggerlabeled alternative inMySqlParser.setStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowMasterLogs
T visitShowMasterLogs(MySqlParser.ShowMasterLogsContext ctx)
Visit a parse tree produced by theshowMasterLogslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowLogEvents
T visitShowLogEvents(MySqlParser.ShowLogEventsContext ctx)
Visit a parse tree produced by theshowLogEventslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowObjectFilter
T visitShowObjectFilter(MySqlParser.ShowObjectFilterContext ctx)
Visit a parse tree produced by theshowObjectFilterlabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowColumns
T visitShowColumns(MySqlParser.ShowColumnsContext ctx)
Visit a parse tree produced by theshowColumnslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCreateDb
T visitShowCreateDb(MySqlParser.ShowCreateDbContext ctx)
Visit a parse tree produced by theshowCreateDblabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCreateFullIdObject
T visitShowCreateFullIdObject(MySqlParser.ShowCreateFullIdObjectContext ctx)
Visit a parse tree produced by theshowCreateFullIdObjectlabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCreateUser
T visitShowCreateUser(MySqlParser.ShowCreateUserContext ctx)
Visit a parse tree produced by theshowCreateUserlabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowEngine
T visitShowEngine(MySqlParser.ShowEngineContext ctx)
Visit a parse tree produced by theshowEnginelabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowGlobalInfo
T visitShowGlobalInfo(MySqlParser.ShowGlobalInfoContext ctx)
Visit a parse tree produced by theshowGlobalInfolabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowErrors
T visitShowErrors(MySqlParser.ShowErrorsContext ctx)
Visit a parse tree produced by theshowErrorslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCountErrors
T visitShowCountErrors(MySqlParser.ShowCountErrorsContext ctx)
Visit a parse tree produced by theshowCountErrorslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowSchemaFilter
T visitShowSchemaFilter(MySqlParser.ShowSchemaFilterContext ctx)
Visit a parse tree produced by theshowSchemaFilterlabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowRoutine
T visitShowRoutine(MySqlParser.ShowRoutineContext ctx)
Visit a parse tree produced by theshowRoutinelabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowGrants
T visitShowGrants(MySqlParser.ShowGrantsContext ctx)
Visit a parse tree produced by theshowGrantslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowIndexes
T visitShowIndexes(MySqlParser.ShowIndexesContext ctx)
Visit a parse tree produced by theshowIndexeslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowOpenTables
T visitShowOpenTables(MySqlParser.ShowOpenTablesContext ctx)
Visit a parse tree produced by theshowOpenTableslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowProfile
T visitShowProfile(MySqlParser.ShowProfileContext ctx)
Visit a parse tree produced by theshowProfilelabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowSlaveStatus
T visitShowSlaveStatus(MySqlParser.ShowSlaveStatusContext ctx)
Visit a parse tree produced by theshowSlaveStatuslabeled alternative inMySqlParser.showStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableClause
T visitVariableClause(MySqlParser.VariableClauseContext ctx)
Visit a parse tree produced byMySqlParser.variableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowCommonEntity
T visitShowCommonEntity(MySqlParser.ShowCommonEntityContext ctx)
Visit a parse tree produced byMySqlParser.showCommonEntity().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowFilter
T visitShowFilter(MySqlParser.ShowFilterContext ctx)
Visit a parse tree produced byMySqlParser.showFilter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowGlobalInfoClause
T visitShowGlobalInfoClause(MySqlParser.ShowGlobalInfoClauseContext ctx)
Visit a parse tree produced byMySqlParser.showGlobalInfoClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowSchemaEntity
T visitShowSchemaEntity(MySqlParser.ShowSchemaEntityContext ctx)
Visit a parse tree produced byMySqlParser.showSchemaEntity().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShowProfileType
T visitShowProfileType(MySqlParser.ShowProfileTypeContext ctx)
Visit a parse tree produced byMySqlParser.showProfileType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinlogStatement
T visitBinlogStatement(MySqlParser.BinlogStatementContext ctx)
Visit a parse tree produced byMySqlParser.binlogStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCacheIndexStatement
T visitCacheIndexStatement(MySqlParser.CacheIndexStatementContext ctx)
Visit a parse tree produced byMySqlParser.cacheIndexStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFlushStatement
T visitFlushStatement(MySqlParser.FlushStatementContext ctx)
Visit a parse tree produced byMySqlParser.flushStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKillStatement
T visitKillStatement(MySqlParser.KillStatementContext ctx)
Visit a parse tree produced byMySqlParser.killStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoadIndexIntoCache
T visitLoadIndexIntoCache(MySqlParser.LoadIndexIntoCacheContext ctx)
Visit a parse tree produced byMySqlParser.loadIndexIntoCache().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResetStatement
T visitResetStatement(MySqlParser.ResetStatementContext ctx)
Visit a parse tree produced byMySqlParser.resetStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitShutdownStatement
T visitShutdownStatement(MySqlParser.ShutdownStatementContext ctx)
Visit a parse tree produced byMySqlParser.shutdownStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableIndexes
T visitTableIndexes(MySqlParser.TableIndexesContext ctx)
Visit a parse tree produced byMySqlParser.tableIndexes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleFlushOption
T visitSimpleFlushOption(MySqlParser.SimpleFlushOptionContext ctx)
Visit a parse tree produced by thesimpleFlushOptionlabeled alternative inMySqlParser.flushOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChannelFlushOption
T visitChannelFlushOption(MySqlParser.ChannelFlushOptionContext ctx)
Visit a parse tree produced by thechannelFlushOptionlabeled alternative inMySqlParser.flushOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFlushOption
T visitTableFlushOption(MySqlParser.TableFlushOptionContext ctx)
Visit a parse tree produced by thetableFlushOptionlabeled alternative inMySqlParser.flushOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFlushTableOption
T visitFlushTableOption(MySqlParser.FlushTableOptionContext ctx)
Visit a parse tree produced byMySqlParser.flushTableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLoadedTableIndexes
T visitLoadedTableIndexes(MySqlParser.LoadedTableIndexesContext ctx)
Visit a parse tree produced byMySqlParser.loadedTableIndexes().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleDescribeStatement
T visitSimpleDescribeStatement(MySqlParser.SimpleDescribeStatementContext ctx)
Visit a parse tree produced byMySqlParser.simpleDescribeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullDescribeStatement
T visitFullDescribeStatement(MySqlParser.FullDescribeStatementContext ctx)
Visit a parse tree produced byMySqlParser.fullDescribeStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHelpStatement
T visitHelpStatement(MySqlParser.HelpStatementContext ctx)
Visit a parse tree produced byMySqlParser.helpStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUseStatement
T visitUseStatement(MySqlParser.UseStatementContext ctx)
Visit a parse tree produced byMySqlParser.useStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSignalStatement
T visitSignalStatement(MySqlParser.SignalStatementContext ctx)
Visit a parse tree produced byMySqlParser.signalStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResignalStatement
T visitResignalStatement(MySqlParser.ResignalStatementContext ctx)
Visit a parse tree produced byMySqlParser.resignalStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSignalConditionInformation
T visitSignalConditionInformation(MySqlParser.SignalConditionInformationContext ctx)
Visit a parse tree produced byMySqlParser.signalConditionInformation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithStatement
T visitWithStatement(MySqlParser.WithStatementContext ctx)
Visit a parse tree produced byMySqlParser.withStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableStatement
T visitTableStatement(MySqlParser.TableStatementContext ctx)
Visit a parse tree produced byMySqlParser.tableStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDiagnosticsStatement
T visitDiagnosticsStatement(MySqlParser.DiagnosticsStatementContext ctx)
Visit a parse tree produced byMySqlParser.diagnosticsStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDiagnosticsConditionInformationName
T visitDiagnosticsConditionInformationName(MySqlParser.DiagnosticsConditionInformationNameContext ctx)
Visit a parse tree produced byMySqlParser.diagnosticsConditionInformationName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDescribeStatements
T visitDescribeStatements(MySqlParser.DescribeStatementsContext ctx)
Visit a parse tree produced by thedescribeStatementslabeled alternative inMySqlParser.describeObjectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDescribeConnection
T visitDescribeConnection(MySqlParser.DescribeConnectionContext ctx)
Visit a parse tree produced by thedescribeConnectionlabeled alternative inMySqlParser.describeObjectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullId
T visitFullId(MySqlParser.FullIdContext ctx)
Visit a parse tree produced byMySqlParser.fullId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableName
T visitTableName(MySqlParser.TableNameContext ctx)
Visit a parse tree produced byMySqlParser.tableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleName
T visitRoleName(MySqlParser.RoleNameContext ctx)
Visit a parse tree produced byMySqlParser.roleName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullColumnName
T visitFullColumnName(MySqlParser.FullColumnNameContext ctx)
Visit a parse tree produced byMySqlParser.fullColumnName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexColumnName
T visitIndexColumnName(MySqlParser.IndexColumnNameContext ctx)
Visit a parse tree produced byMySqlParser.indexColumnName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleUserName
T visitSimpleUserName(MySqlParser.SimpleUserNameContext ctx)
Visit a parse tree produced byMySqlParser.simpleUserName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHostName
T visitHostName(MySqlParser.HostNameContext ctx)
Visit a parse tree produced byMySqlParser.hostName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserName
T visitUserName(MySqlParser.UserNameContext ctx)
Visit a parse tree produced byMySqlParser.userName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMysqlVariable
T visitMysqlVariable(MySqlParser.MysqlVariableContext ctx)
Visit a parse tree produced byMySqlParser.mysqlVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharsetName
T visitCharsetName(MySqlParser.CharsetNameContext ctx)
Visit a parse tree produced byMySqlParser.charsetName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollationName
T visitCollationName(MySqlParser.CollationNameContext ctx)
Visit a parse tree produced byMySqlParser.collationName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEngineName
T visitEngineName(MySqlParser.EngineNameContext ctx)
Visit a parse tree produced byMySqlParser.engineName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEngineNameBase
T visitEngineNameBase(MySqlParser.EngineNameBaseContext ctx)
Visit a parse tree produced byMySqlParser.engineNameBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUuidSet
T visitUuidSet(MySqlParser.UuidSetContext ctx)
Visit a parse tree produced byMySqlParser.uuidSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXid
T visitXid(MySqlParser.XidContext ctx)
Visit a parse tree produced byMySqlParser.xid().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXuidStringId
T visitXuidStringId(MySqlParser.XuidStringIdContext ctx)
Visit a parse tree produced byMySqlParser.xuidStringId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAuthPlugin
T visitAuthPlugin(MySqlParser.AuthPluginContext ctx)
Visit a parse tree produced byMySqlParser.authPlugin().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUid
T visitUid(MySqlParser.UidContext ctx)
Visit a parse tree produced byMySqlParser.uid().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleId
T visitSimpleId(MySqlParser.SimpleIdContext ctx)
Visit a parse tree produced byMySqlParser.simpleId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDottedId
T visitDottedId(MySqlParser.DottedIdContext ctx)
Visit a parse tree produced byMySqlParser.dottedId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDecimalLiteral
T visitDecimalLiteral(MySqlParser.DecimalLiteralContext ctx)
Visit a parse tree produced byMySqlParser.decimalLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileSizeLiteral
T visitFileSizeLiteral(MySqlParser.FileSizeLiteralContext ctx)
Visit a parse tree produced byMySqlParser.fileSizeLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringLiteral
T visitStringLiteral(MySqlParser.StringLiteralContext ctx)
Visit a parse tree produced byMySqlParser.stringLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanLiteral
T visitBooleanLiteral(MySqlParser.BooleanLiteralContext ctx)
Visit a parse tree produced byMySqlParser.booleanLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHexadecimalLiteral
T visitHexadecimalLiteral(MySqlParser.HexadecimalLiteralContext ctx)
Visit a parse tree produced byMySqlParser.hexadecimalLiteral().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullNotnull
T visitNullNotnull(MySqlParser.NullNotnullContext ctx)
Visit a parse tree produced byMySqlParser.nullNotnull().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstant
T visitConstant(MySqlParser.ConstantContext ctx)
Visit a parse tree produced byMySqlParser.constant().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringDataType
T visitStringDataType(MySqlParser.StringDataTypeContext ctx)
Visit a parse tree produced by thestringDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNationalVaryingStringDataType
T visitNationalVaryingStringDataType(MySqlParser.NationalVaryingStringDataTypeContext ctx)
Visit a parse tree produced by thenationalVaryingStringDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNationalStringDataType
T visitNationalStringDataType(MySqlParser.NationalStringDataTypeContext ctx)
Visit a parse tree produced by thenationalStringDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDimensionDataType
T visitDimensionDataType(MySqlParser.DimensionDataTypeContext ctx)
Visit a parse tree produced by thedimensionDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleDataType
T visitSimpleDataType(MySqlParser.SimpleDataTypeContext ctx)
Visit a parse tree produced by thesimpleDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollectionDataType
T visitCollectionDataType(MySqlParser.CollectionDataTypeContext ctx)
Visit a parse tree produced by thecollectionDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSpatialDataType
T visitSpatialDataType(MySqlParser.SpatialDataTypeContext ctx)
Visit a parse tree produced by thespatialDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLongVarcharDataType
T visitLongVarcharDataType(MySqlParser.LongVarcharDataTypeContext ctx)
Visit a parse tree produced by thelongVarcharDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLongVarbinaryDataType
T visitLongVarbinaryDataType(MySqlParser.LongVarbinaryDataTypeContext ctx)
Visit a parse tree produced by thelongVarbinaryDataTypelabeled alternative inMySqlParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollectionOptions
T visitCollectionOptions(MySqlParser.CollectionOptionsContext ctx)
Visit a parse tree produced byMySqlParser.collectionOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConvertedDataType
T visitConvertedDataType(MySqlParser.ConvertedDataTypeContext ctx)
Visit a parse tree produced byMySqlParser.convertedDataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLengthOneDimension
T visitLengthOneDimension(MySqlParser.LengthOneDimensionContext ctx)
Visit a parse tree produced byMySqlParser.lengthOneDimension().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLengthTwoDimension
T visitLengthTwoDimension(MySqlParser.LengthTwoDimensionContext ctx)
Visit a parse tree produced byMySqlParser.lengthTwoDimension().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLengthTwoOptionalDimension
T visitLengthTwoOptionalDimension(MySqlParser.LengthTwoOptionalDimensionContext ctx)
Visit a parse tree produced byMySqlParser.lengthTwoOptionalDimension().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUidList
T visitUidList(MySqlParser.UidListContext ctx)
Visit a parse tree produced byMySqlParser.uidList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullColumnNameList
T visitFullColumnNameList(MySqlParser.FullColumnNameListContext ctx)
Visit a parse tree produced byMySqlParser.fullColumnNameList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTables
T visitTables(MySqlParser.TablesContext ctx)
Visit a parse tree produced byMySqlParser.tables().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexColumnNames
T visitIndexColumnNames(MySqlParser.IndexColumnNamesContext ctx)
Visit a parse tree produced byMySqlParser.indexColumnNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressions
T visitExpressions(MySqlParser.ExpressionsContext ctx)
Visit a parse tree produced byMySqlParser.expressions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionsWithDefaults
T visitExpressionsWithDefaults(MySqlParser.ExpressionsWithDefaultsContext ctx)
Visit a parse tree produced byMySqlParser.expressionsWithDefaults().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstants
T visitConstants(MySqlParser.ConstantsContext ctx)
Visit a parse tree produced byMySqlParser.constants().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleStrings
T visitSimpleStrings(MySqlParser.SimpleStringsContext ctx)
Visit a parse tree produced byMySqlParser.simpleStrings().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserVariables
T visitUserVariables(MySqlParser.UserVariablesContext ctx)
Visit a parse tree produced byMySqlParser.userVariables().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDefaultValue
T visitDefaultValue(MySqlParser.DefaultValueContext ctx)
Visit a parse tree produced byMySqlParser.defaultValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentTimestamp
T visitCurrentTimestamp(MySqlParser.CurrentTimestampContext ctx)
Visit a parse tree produced byMySqlParser.currentTimestamp().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionOrDefault
T visitExpressionOrDefault(MySqlParser.ExpressionOrDefaultContext ctx)
Visit a parse tree produced byMySqlParser.expressionOrDefault().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfExists
T visitIfExists(MySqlParser.IfExistsContext ctx)
Visit a parse tree produced byMySqlParser.ifExists().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfNotExists
T visitIfNotExists(MySqlParser.IfNotExistsContext ctx)
Visit a parse tree produced byMySqlParser.ifNotExists().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrReplace
T visitOrReplace(MySqlParser.OrReplaceContext ctx)
Visit a parse tree produced byMySqlParser.orReplace().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWaitNowaitClause
T visitWaitNowaitClause(MySqlParser.WaitNowaitClauseContext ctx)
Visit a parse tree produced byMySqlParser.waitNowaitClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSpecificFunctionCall
T visitSpecificFunctionCall(MySqlParser.SpecificFunctionCallContext ctx)
Visit a parse tree produced by thespecificFunctionCalllabeled alternative inMySqlParser.functionCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateFunctionCall
T visitAggregateFunctionCall(MySqlParser.AggregateFunctionCallContext ctx)
Visit a parse tree produced by theaggregateFunctionCalllabeled alternative inMySqlParser.functionCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonAggregateFunctionCall
T visitNonAggregateFunctionCall(MySqlParser.NonAggregateFunctionCallContext ctx)
Visit a parse tree produced by thenonAggregateFunctionCalllabeled alternative inMySqlParser.functionCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitScalarFunctionCall
T visitScalarFunctionCall(MySqlParser.ScalarFunctionCallContext ctx)
Visit a parse tree produced by thescalarFunctionCalllabeled alternative inMySqlParser.functionCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUdfFunctionCall
T visitUdfFunctionCall(MySqlParser.UdfFunctionCallContext ctx)
Visit a parse tree produced by theudfFunctionCalllabeled alternative inMySqlParser.functionCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordFunctionCall
T visitPasswordFunctionCall(MySqlParser.PasswordFunctionCallContext ctx)
Visit a parse tree produced by thepasswordFunctionCalllabeled alternative inMySqlParser.functionCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleFunctionCall
T visitSimpleFunctionCall(MySqlParser.SimpleFunctionCallContext ctx)
Visit a parse tree produced by thesimpleFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCurrentUser
T visitCurrentUser(MySqlParser.CurrentUserContext ctx)
Visit a parse tree produced by thecurrentUserlabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeFunctionCall
T visitDataTypeFunctionCall(MySqlParser.DataTypeFunctionCallContext ctx)
Visit a parse tree produced by thedataTypeFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValuesFunctionCall
T visitValuesFunctionCall(MySqlParser.ValuesFunctionCallContext ctx)
Visit a parse tree produced by thevaluesFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseExpressionFunctionCall
T visitCaseExpressionFunctionCall(MySqlParser.CaseExpressionFunctionCallContext ctx)
Visit a parse tree produced by thecaseExpressionFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseFunctionCall
T visitCaseFunctionCall(MySqlParser.CaseFunctionCallContext ctx)
Visit a parse tree produced by thecaseFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharFunctionCall
T visitCharFunctionCall(MySqlParser.CharFunctionCallContext ctx)
Visit a parse tree produced by thecharFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPositionFunctionCall
T visitPositionFunctionCall(MySqlParser.PositionFunctionCallContext ctx)
Visit a parse tree produced by thepositionFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstrFunctionCall
T visitSubstrFunctionCall(MySqlParser.SubstrFunctionCallContext ctx)
Visit a parse tree produced by thesubstrFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimFunctionCall
T visitTrimFunctionCall(MySqlParser.TrimFunctionCallContext ctx)
Visit a parse tree produced by thetrimFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWeightFunctionCall
T visitWeightFunctionCall(MySqlParser.WeightFunctionCallContext ctx)
Visit a parse tree produced by theweightFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtractFunctionCall
T visitExtractFunctionCall(MySqlParser.ExtractFunctionCallContext ctx)
Visit a parse tree produced by theextractFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGetFormatFunctionCall
T visitGetFormatFunctionCall(MySqlParser.GetFormatFunctionCallContext ctx)
Visit a parse tree produced by thegetFormatFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonValueFunctionCall
T visitJsonValueFunctionCall(MySqlParser.JsonValueFunctionCallContext ctx)
Visit a parse tree produced by thejsonValueFunctionCalllabeled alternative inMySqlParser.specificFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseFuncAlternative
T visitCaseFuncAlternative(MySqlParser.CaseFuncAlternativeContext ctx)
Visit a parse tree produced byMySqlParser.caseFuncAlternative().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLevelWeightList
T visitLevelWeightList(MySqlParser.LevelWeightListContext ctx)
Visit a parse tree produced by thelevelWeightListlabeled alternative inMySqlParser.levelsInWeightString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLevelWeightRange
T visitLevelWeightRange(MySqlParser.LevelWeightRangeContext ctx)
Visit a parse tree produced by thelevelWeightRangelabeled alternative inMySqlParser.levelsInWeightString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLevelInWeightListElement
T visitLevelInWeightListElement(MySqlParser.LevelInWeightListElementContext ctx)
Visit a parse tree produced byMySqlParser.levelInWeightListElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregateWindowedFunction
T visitAggregateWindowedFunction(MySqlParser.AggregateWindowedFunctionContext ctx)
Visit a parse tree produced byMySqlParser.aggregateWindowedFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNonAggregateWindowedFunction
T visitNonAggregateWindowedFunction(MySqlParser.NonAggregateWindowedFunctionContext ctx)
Visit a parse tree produced byMySqlParser.nonAggregateWindowedFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverClause
T visitOverClause(MySqlParser.OverClauseContext ctx)
Visit a parse tree produced byMySqlParser.overClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowSpec
T visitWindowSpec(MySqlParser.WindowSpecContext ctx)
Visit a parse tree produced byMySqlParser.windowSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowName
T visitWindowName(MySqlParser.WindowNameContext ctx)
Visit a parse tree produced byMySqlParser.windowName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameClause
T visitFrameClause(MySqlParser.FrameClauseContext ctx)
Visit a parse tree produced byMySqlParser.frameClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameUnits
T visitFrameUnits(MySqlParser.FrameUnitsContext ctx)
Visit a parse tree produced byMySqlParser.frameUnits().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameExtent
T visitFrameExtent(MySqlParser.FrameExtentContext ctx)
Visit a parse tree produced byMySqlParser.frameExtent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameBetween
T visitFrameBetween(MySqlParser.FrameBetweenContext ctx)
Visit a parse tree produced byMySqlParser.frameBetween().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFrameRange
T visitFrameRange(MySqlParser.FrameRangeContext ctx)
Visit a parse tree produced byMySqlParser.frameRange().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionClause
T visitPartitionClause(MySqlParser.PartitionClauseContext ctx)
Visit a parse tree produced byMySqlParser.partitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitScalarFunctionName
T visitScalarFunctionName(MySqlParser.ScalarFunctionNameContext ctx)
Visit a parse tree produced byMySqlParser.scalarFunctionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordFunctionClause
T visitPasswordFunctionClause(MySqlParser.PasswordFunctionClauseContext ctx)
Visit a parse tree produced byMySqlParser.passwordFunctionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionArgs
T visitFunctionArgs(MySqlParser.FunctionArgsContext ctx)
Visit a parse tree produced byMySqlParser.functionArgs().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionArg
T visitFunctionArg(MySqlParser.FunctionArgContext ctx)
Visit a parse tree produced byMySqlParser.functionArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsExpression
T visitIsExpression(MySqlParser.IsExpressionContext ctx)
Visit a parse tree produced by theisExpressionlabeled alternative inMySqlParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotExpression
T visitNotExpression(MySqlParser.NotExpressionContext ctx)
Visit a parse tree produced by thenotExpressionlabeled alternative inMySqlParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLogicalExpression
T visitLogicalExpression(MySqlParser.LogicalExpressionContext ctx)
Visit a parse tree produced by thelogicalExpressionlabeled alternative inMySqlParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredicateExpression
T visitPredicateExpression(MySqlParser.PredicateExpressionContext ctx)
Visit a parse tree produced by thepredicateExpressionlabeled alternative inMySqlParser.expression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSoundsLikePredicate
T visitSoundsLikePredicate(MySqlParser.SoundsLikePredicateContext ctx)
Visit a parse tree produced by thesoundsLikePredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpressionAtomPredicate
T visitExpressionAtomPredicate(MySqlParser.ExpressionAtomPredicateContext ctx)
Visit a parse tree produced by theexpressionAtomPredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubqueryComparisonPredicate
T visitSubqueryComparisonPredicate(MySqlParser.SubqueryComparisonPredicateContext ctx)
Visit a parse tree produced by thesubqueryComparisonPredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonMemberOfPredicate
T visitJsonMemberOfPredicate(MySqlParser.JsonMemberOfPredicateContext ctx)
Visit a parse tree produced by thejsonMemberOfPredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryComparisonPredicate
T visitBinaryComparisonPredicate(MySqlParser.BinaryComparisonPredicateContext ctx)
Visit a parse tree produced by thebinaryComparisonPredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInPredicate
T visitInPredicate(MySqlParser.InPredicateContext ctx)
Visit a parse tree produced by theinPredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBetweenPredicate
T visitBetweenPredicate(MySqlParser.BetweenPredicateContext ctx)
Visit a parse tree produced by thebetweenPredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsNullPredicate
T visitIsNullPredicate(MySqlParser.IsNullPredicateContext ctx)
Visit a parse tree produced by theisNullPredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLikePredicate
T visitLikePredicate(MySqlParser.LikePredicateContext ctx)
Visit a parse tree produced by thelikePredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegexpPredicate
T visitRegexpPredicate(MySqlParser.RegexpPredicateContext ctx)
Visit a parse tree produced by theregexpPredicatelabeled alternative inMySqlParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryExpressionAtom
T visitUnaryExpressionAtom(MySqlParser.UnaryExpressionAtomContext ctx)
Visit a parse tree produced by theunaryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollateExpressionAtom
T visitCollateExpressionAtom(MySqlParser.CollateExpressionAtomContext ctx)
Visit a parse tree produced by thecollateExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableAssignExpressionAtom
T visitVariableAssignExpressionAtom(MySqlParser.VariableAssignExpressionAtomContext ctx)
Visit a parse tree produced by thevariableAssignExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMysqlVariableExpressionAtom
T visitMysqlVariableExpressionAtom(MySqlParser.MysqlVariableExpressionAtomContext ctx)
Visit a parse tree produced by themysqlVariableExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedExpressionAtom
T visitNestedExpressionAtom(MySqlParser.NestedExpressionAtomContext ctx)
Visit a parse tree produced by thenestedExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNestedRowExpressionAtom
T visitNestedRowExpressionAtom(MySqlParser.NestedRowExpressionAtomContext ctx)
Visit a parse tree produced by thenestedRowExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMathExpressionAtom
T visitMathExpressionAtom(MySqlParser.MathExpressionAtomContext ctx)
Visit a parse tree produced by themathExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExistsExpressionAtom
T visitExistsExpressionAtom(MySqlParser.ExistsExpressionAtomContext ctx)
Visit a parse tree produced by theexistsExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalExpressionAtom
T visitIntervalExpressionAtom(MySqlParser.IntervalExpressionAtomContext ctx)
Visit a parse tree produced by theintervalExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonExpressionAtom
T visitJsonExpressionAtom(MySqlParser.JsonExpressionAtomContext ctx)
Visit a parse tree produced by thejsonExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubqueryExpressionAtom
T visitSubqueryExpressionAtom(MySqlParser.SubqueryExpressionAtomContext ctx)
Visit a parse tree produced by thesubqueryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstantExpressionAtom
T visitConstantExpressionAtom(MySqlParser.ConstantExpressionAtomContext ctx)
Visit a parse tree produced by theconstantExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionCallExpressionAtom
T visitFunctionCallExpressionAtom(MySqlParser.FunctionCallExpressionAtomContext ctx)
Visit a parse tree produced by thefunctionCallExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBinaryExpressionAtom
T visitBinaryExpressionAtom(MySqlParser.BinaryExpressionAtomContext ctx)
Visit a parse tree produced by thebinaryExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullColumnNameExpressionAtom
T visitFullColumnNameExpressionAtom(MySqlParser.FullColumnNameExpressionAtomContext ctx)
Visit a parse tree produced by thefullColumnNameExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitExpressionAtom
T visitBitExpressionAtom(MySqlParser.BitExpressionAtomContext ctx)
Visit a parse tree produced by thebitExpressionAtomlabeled alternative inMySqlParser.expressionAtom().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnaryOperator
T visitUnaryOperator(MySqlParser.UnaryOperatorContext ctx)
Visit a parse tree produced byMySqlParser.unaryOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
T visitComparisonOperator(MySqlParser.ComparisonOperatorContext ctx)
Visit a parse tree produced byMySqlParser.comparisonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLogicalOperator
T visitLogicalOperator(MySqlParser.LogicalOperatorContext ctx)
Visit a parse tree produced byMySqlParser.logicalOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitOperator
T visitBitOperator(MySqlParser.BitOperatorContext ctx)
Visit a parse tree produced byMySqlParser.bitOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultOperator
T visitMultOperator(MySqlParser.MultOperatorContext ctx)
Visit a parse tree produced byMySqlParser.multOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddOperator
T visitAddOperator(MySqlParser.AddOperatorContext ctx)
Visit a parse tree produced byMySqlParser.addOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJsonOperator
T visitJsonOperator(MySqlParser.JsonOperatorContext ctx)
Visit a parse tree produced byMySqlParser.jsonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharsetNameBase
T visitCharsetNameBase(MySqlParser.CharsetNameBaseContext ctx)
Visit a parse tree produced byMySqlParser.charsetNameBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionLevelBase
T visitTransactionLevelBase(MySqlParser.TransactionLevelBaseContext ctx)
Visit a parse tree produced byMySqlParser.transactionLevelBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegesBase
T visitPrivilegesBase(MySqlParser.PrivilegesBaseContext ctx)
Visit a parse tree produced byMySqlParser.privilegesBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalTypeBase
T visitIntervalTypeBase(MySqlParser.IntervalTypeBaseContext ctx)
Visit a parse tree produced byMySqlParser.intervalTypeBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeBase
T visitDataTypeBase(MySqlParser.DataTypeBaseContext ctx)
Visit a parse tree produced byMySqlParser.dataTypeBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeywordsCanBeId
T visitKeywordsCanBeId(MySqlParser.KeywordsCanBeIdContext ctx)
Visit a parse tree produced byMySqlParser.keywordsCanBeId().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionNameBase
T visitFunctionNameBase(MySqlParser.FunctionNameBaseContext ctx)
Visit a parse tree produced byMySqlParser.functionNameBase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-