Interface SQLServerStatementVisitor<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:
SQLServerDALStatementVisitor,SQLServerDCLStatementVisitor,SQLServerDDLStatementVisitor,SQLServerDMLStatementVisitor,SQLServerStatementBaseVisitor,SQLServerStatementVisitor,SQLServerTCLStatementVisitor
public interface SQLServerStatementVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced bySQLServerStatementParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitExecute
T visitExecute(SQLServerStatementParser.ExecuteContext ctx)
Visit a parse tree produced bySQLServerStatementParser.execute().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTransaction
T visitSetTransaction(SQLServerStatementParser.SetTransactionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIsolationLevel
T visitIsolationLevel(SQLServerStatementParser.IsolationLevelContext ctx)
Visit a parse tree produced bySQLServerStatementParser.isolationLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetImplicitTransactions
T visitSetImplicitTransactions(SQLServerStatementParser.SetImplicitTransactionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setImplicitTransactions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitImplicitTransactionsValue
T visitImplicitTransactionsValue(SQLServerStatementParser.ImplicitTransactionsValueContext ctx)
Visit a parse tree produced bySQLServerStatementParser.implicitTransactionsValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBeginTransaction
T visitBeginTransaction(SQLServerStatementParser.BeginTransactionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.beginTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBeginDistributedTransaction
T visitBeginDistributedTransaction(SQLServerStatementParser.BeginDistributedTransactionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.beginDistributedTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommit
T visitCommit(SQLServerStatementParser.CommitContext ctx)
Visit a parse tree produced bySQLServerStatementParser.commit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommitWork
T visitCommitWork(SQLServerStatementParser.CommitWorkContext ctx)
Visit a parse tree produced bySQLServerStatementParser.commitWork().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollback
T visitRollback(SQLServerStatementParser.RollbackContext ctx)
Visit a parse tree produced bySQLServerStatementParser.rollback().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollbackWork
T visitRollbackWork(SQLServerStatementParser.RollbackWorkContext ctx)
Visit a parse tree produced bySQLServerStatementParser.rollbackWork().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSavepoint
T visitSavepoint(SQLServerStatementParser.SavepointContext ctx)
Visit a parse tree produced bySQLServerStatementParser.savepoint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParameterMarker
T visitParameterMarker(SQLServerStatementParser.ParameterMarkerContext ctx)
Visit a parse tree produced bySQLServerStatementParser.parameterMarker().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiterals
T visitLiterals(SQLServerStatementParser.LiteralsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.literals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringLiterals
T visitStringLiterals(SQLServerStatementParser.StringLiteralsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.stringLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberLiterals
T visitNumberLiterals(SQLServerStatementParser.NumberLiteralsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.numberLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateTimeLiterals
T visitDateTimeLiterals(SQLServerStatementParser.DateTimeLiteralsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dateTimeLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHexadecimalLiterals
T visitHexadecimalLiterals(SQLServerStatementParser.HexadecimalLiteralsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.hexadecimalLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitValueLiterals
T visitBitValueLiterals(SQLServerStatementParser.BitValueLiteralsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.bitValueLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanLiterals
T visitBooleanLiterals(SQLServerStatementParser.BooleanLiteralsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.booleanLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullValueLiterals
T visitNullValueLiterals(SQLServerStatementParser.NullValueLiteralsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.nullValueLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
T visitIdentifier(SQLServerStatementParser.IdentifierContext ctx)
Visit a parse tree produced bySQLServerStatementParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularIdentifier
T visitRegularIdentifier(SQLServerStatementParser.RegularIdentifierContext ctx)
Visit a parse tree produced bySQLServerStatementParser.regularIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDelimitedIdentifier
T visitDelimitedIdentifier(SQLServerStatementParser.DelimitedIdentifierContext ctx)
Visit a parse tree produced bySQLServerStatementParser.delimitedIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnreservedWord
T visitUnreservedWord(SQLServerStatementParser.UnreservedWordContext ctx)
Visit a parse tree produced bySQLServerStatementParser.unreservedWord().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseName
T visitDatabaseName(SQLServerStatementParser.DatabaseNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaName
T visitSchemaName(SQLServerStatementParser.SchemaNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.schemaName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionName
T visitFunctionName(SQLServerStatementParser.FunctionNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.functionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcedureName
T visitProcedureName(SQLServerStatementParser.ProcedureNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.procedureName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitViewName
T visitViewName(SQLServerStatementParser.ViewNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.viewName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerName
T visitTriggerName(SQLServerStatementParser.TriggerNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.triggerName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSequenceName
T visitSequenceName(SQLServerStatementParser.SequenceNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.sequenceName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableName
T visitTableName(SQLServerStatementParser.TableNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueueName
T visitQueueName(SQLServerStatementParser.QueueNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.queueName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitContractName
T visitContractName(SQLServerStatementParser.ContractNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.contractName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceName
T visitServiceName(SQLServerStatementParser.ServiceNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnName
T visitColumnName(SQLServerStatementParser.ColumnNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOwner
T visitOwner(SQLServerStatementParser.OwnerContext ctx)
Visit a parse tree produced bySQLServerStatementParser.owner().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitName
T visitName(SQLServerStatementParser.NameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnNames
T visitColumnNames(SQLServerStatementParser.ColumnNamesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnNamesWithSort
T visitColumnNamesWithSort(SQLServerStatementParser.ColumnNamesWithSortContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnNamesWithSort().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableNames
T visitTableNames(SQLServerStatementParser.TableNamesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexName
T visitIndexName(SQLServerStatementParser.IndexNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.indexName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintName
T visitConstraintName(SQLServerStatementParser.ConstraintNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.constraintName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollationName
T visitCollationName(SQLServerStatementParser.CollationNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.collationName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlias
T visitAlias(SQLServerStatementParser.AliasContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeLength
T visitDataTypeLength(SQLServerStatementParser.DataTypeLengthContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dataTypeLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKey
T visitPrimaryKey(SQLServerStatementParser.PrimaryKeyContext ctx)
Visit a parse tree produced bySQLServerStatementParser.primaryKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpr
T visitExpr(SQLServerStatementParser.ExprContext ctx)
Visit a parse tree produced bySQLServerStatementParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndOperator
T visitAndOperator(SQLServerStatementParser.AndOperatorContext ctx)
Visit a parse tree produced bySQLServerStatementParser.andOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrOperator
T visitOrOperator(SQLServerStatementParser.OrOperatorContext ctx)
Visit a parse tree produced bySQLServerStatementParser.orOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotOperator
T visitNotOperator(SQLServerStatementParser.NotOperatorContext ctx)
Visit a parse tree produced bySQLServerStatementParser.notOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanPrimary
T visitBooleanPrimary(SQLServerStatementParser.BooleanPrimaryContext ctx)
Visit a parse tree produced bySQLServerStatementParser.booleanPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
T visitComparisonOperator(SQLServerStatementParser.ComparisonOperatorContext ctx)
Visit a parse tree produced bySQLServerStatementParser.comparisonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredicate
T visitPredicate(SQLServerStatementParser.PredicateContext ctx)
Visit a parse tree produced bySQLServerStatementParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitExpr
T visitBitExpr(SQLServerStatementParser.BitExprContext ctx)
Visit a parse tree produced bySQLServerStatementParser.bitExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleExpr
T visitSimpleExpr(SQLServerStatementParser.SimpleExprContext ctx)
Visit a parse tree produced bySQLServerStatementParser.simpleExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionCall
T visitFunctionCall(SQLServerStatementParser.FunctionCallContext ctx)
Visit a parse tree produced bySQLServerStatementParser.functionCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregationFunction
T visitAggregationFunction(SQLServerStatementParser.AggregationFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.aggregationFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregationFunctionName
T visitAggregationFunctionName(SQLServerStatementParser.AggregationFunctionNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.aggregationFunctionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDistinct
T visitDistinct(SQLServerStatementParser.DistinctContext ctx)
Visit a parse tree produced bySQLServerStatementParser.distinct().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSpecialFunction
T visitSpecialFunction(SQLServerStatementParser.SpecialFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.specialFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastFunction
T visitCastFunction(SQLServerStatementParser.CastFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.castFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharFunction
T visitCharFunction(SQLServerStatementParser.CharFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.charFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularFunction
T visitRegularFunction(SQLServerStatementParser.RegularFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.regularFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularFunctionName
T visitRegularFunctionName(SQLServerStatementParser.RegularFunctionNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.regularFunctionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseExpression
T visitCaseExpression(SQLServerStatementParser.CaseExpressionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.caseExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseWhen
T visitCaseWhen(SQLServerStatementParser.CaseWhenContext ctx)
Visit a parse tree produced bySQLServerStatementParser.caseWhen().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseElse
T visitCaseElse(SQLServerStatementParser.CaseElseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.caseElse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivateExprOfDb
T visitPrivateExprOfDb(SQLServerStatementParser.PrivateExprOfDbContext ctx)
Visit a parse tree produced bySQLServerStatementParser.privateExprOfDb().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByClause
T visitOrderByClause(SQLServerStatementParser.OrderByClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.orderByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByItem
T visitOrderByItem(SQLServerStatementParser.OrderByItemContext ctx)
Visit a parse tree produced bySQLServerStatementParser.orderByItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataType
T visitDataType(SQLServerStatementParser.DataTypeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeName
T visitDataTypeName(SQLServerStatementParser.DataTypeNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dataTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAtTimeZoneExpr
T visitAtTimeZoneExpr(SQLServerStatementParser.AtTimeZoneExprContext ctx)
Visit a parse tree produced bySQLServerStatementParser.atTimeZoneExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastExpr
T visitCastExpr(SQLServerStatementParser.CastExprContext ctx)
Visit a parse tree produced bySQLServerStatementParser.castExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConvertExpr
T visitConvertExpr(SQLServerStatementParser.ConvertExprContext ctx)
Visit a parse tree produced bySQLServerStatementParser.convertExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowedFunction
T visitWindowedFunction(SQLServerStatementParser.WindowedFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.windowedFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOverClause
T visitOverClause(SQLServerStatementParser.OverClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.overClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionByClause
T visitPartitionByClause(SQLServerStatementParser.PartitionByClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.partitionByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRowRangeClause
T visitRowRangeClause(SQLServerStatementParser.RowRangeClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.rowRangeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowFrameExtent
T visitWindowFrameExtent(SQLServerStatementParser.WindowFrameExtentContext ctx)
Visit a parse tree produced bySQLServerStatementParser.windowFrameExtent().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowFrameBetween
T visitWindowFrameBetween(SQLServerStatementParser.WindowFrameBetweenContext ctx)
Visit a parse tree produced bySQLServerStatementParser.windowFrameBetween().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowFrameBound
T visitWindowFrameBound(SQLServerStatementParser.WindowFrameBoundContext ctx)
Visit a parse tree produced bySQLServerStatementParser.windowFrameBound().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowFramePreceding
T visitWindowFramePreceding(SQLServerStatementParser.WindowFramePrecedingContext ctx)
Visit a parse tree produced bySQLServerStatementParser.windowFramePreceding().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowFrameFollowing
T visitWindowFrameFollowing(SQLServerStatementParser.WindowFrameFollowingContext ctx)
Visit a parse tree produced bySQLServerStatementParser.windowFrameFollowing().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnNameWithSort
T visitColumnNameWithSort(SQLServerStatementParser.ColumnNameWithSortContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnNameWithSort().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexOption
T visitIndexOption(SQLServerStatementParser.IndexOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.indexOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompressionOption
T visitCompressionOption(SQLServerStatementParser.CompressionOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.compressionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEqTime
T visitEqTime(SQLServerStatementParser.EqTimeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.eqTime().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEqOnOffOption
T visitEqOnOffOption(SQLServerStatementParser.EqOnOffOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.eqOnOffOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEqKey
T visitEqKey(SQLServerStatementParser.EqKeyContext ctx)
Visit a parse tree produced bySQLServerStatementParser.eqKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEqOnOff
T visitEqOnOff(SQLServerStatementParser.EqOnOffContext ctx)
Visit a parse tree produced bySQLServerStatementParser.eqOnOff().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnPartitionClause
T visitOnPartitionClause(SQLServerStatementParser.OnPartitionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onPartitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionExpressions
T visitPartitionExpressions(SQLServerStatementParser.PartitionExpressionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.partitionExpressions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionExpression
T visitPartitionExpression(SQLServerStatementParser.PartitionExpressionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.partitionExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberRange
T visitNumberRange(SQLServerStatementParser.NumberRangeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.numberRange().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLowPriorityLockWait
T visitLowPriorityLockWait(SQLServerStatementParser.LowPriorityLockWaitContext ctx)
Visit a parse tree produced bySQLServerStatementParser.lowPriorityLockWait().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnLowPriorLockWait
T visitOnLowPriorLockWait(SQLServerStatementParser.OnLowPriorLockWaitContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onLowPriorLockWait().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoredIdentifier
T visitIgnoredIdentifier(SQLServerStatementParser.IgnoredIdentifierContext ctx)
Visit a parse tree produced bySQLServerStatementParser.ignoredIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoredIdentifiers
T visitIgnoredIdentifiers(SQLServerStatementParser.IgnoredIdentifiersContext ctx)
Visit a parse tree produced bySQLServerStatementParser.ignoredIdentifiers().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatchNone
T visitMatchNone(SQLServerStatementParser.MatchNoneContext ctx)
Visit a parse tree produced bySQLServerStatementParser.matchNone().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableName
T visitVariableName(SQLServerStatementParser.VariableNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.variableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExecuteAsClause
T visitExecuteAsClause(SQLServerStatementParser.ExecuteAsClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.executeAsClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionName
T visitTransactionName(SQLServerStatementParser.TransactionNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.transactionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTransactionVariableName
T visitTransactionVariableName(SQLServerStatementParser.TransactionVariableNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.transactionVariableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSavepointName
T visitSavepointName(SQLServerStatementParser.SavepointNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.savepointName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSavepointVariableName
T visitSavepointVariableName(SQLServerStatementParser.SavepointVariableNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.savepointVariableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEntityType
T visitEntityType(SQLServerStatementParser.EntityTypeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.entityType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIfExists
T visitIfExists(SQLServerStatementParser.IfExistsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.ifExists().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCall
T visitCall(SQLServerStatementParser.CallContext ctx)
Visit a parse tree produced bySQLServerStatementParser.call().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplain
T visitExplain(SQLServerStatementParser.ExplainContext ctx)
Visit a parse tree produced bySQLServerStatementParser.explain().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExplainableStatement
T visitExplainableStatement(SQLServerStatementParser.ExplainableStatementContext ctx)
Visit a parse tree produced bySQLServerStatementParser.explainableStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTable
T visitCreateTable(SQLServerStatementParser.CreateTableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTableClause
T visitCreateTableClause(SQLServerStatementParser.CreateTableClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createTableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndex
T visitCreateIndex(SQLServerStatementParser.CreateIndexContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabase
T visitCreateDatabase(SQLServerStatementParser.CreateDatabaseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateFunction
T visitCreateFunction(SQLServerStatementParser.CreateFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateProcedure
T visitCreateProcedure(SQLServerStatementParser.CreateProcedureContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateView
T visitCreateView(SQLServerStatementParser.CreateViewContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTrigger
T visitCreateTrigger(SQLServerStatementParser.CreateTriggerContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSequence
T visitCreateSequence(SQLServerStatementParser.CreateSequenceContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createSequence().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateService
T visitCreateService(SQLServerStatementParser.CreateServiceContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createService().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateSchema
T visitCreateSchema(SQLServerStatementParser.CreateSchemaContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createSchema().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTable
T visitAlterTable(SQLServerStatementParser.AlterTableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndex
T visitAlterIndex(SQLServerStatementParser.AlterIndexContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDatabase
T visitAlterDatabase(SQLServerStatementParser.AlterDatabaseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterProcedure
T visitAlterProcedure(SQLServerStatementParser.AlterProcedureContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterFunction
T visitAlterFunction(SQLServerStatementParser.AlterFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterView
T visitAlterView(SQLServerStatementParser.AlterViewContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTrigger
T visitAlterTrigger(SQLServerStatementParser.AlterTriggerContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSequence
T visitAlterSequence(SQLServerStatementParser.AlterSequenceContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterSequence().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterService
T visitAlterService(SQLServerStatementParser.AlterServiceContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterService().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSchema
T visitAlterSchema(SQLServerStatementParser.AlterSchemaContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterSchema().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTable
T visitDropTable(SQLServerStatementParser.DropTableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropIndex
T visitDropIndex(SQLServerStatementParser.DropIndexContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDatabase
T visitDropDatabase(SQLServerStatementParser.DropDatabaseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropFunction
T visitDropFunction(SQLServerStatementParser.DropFunctionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropProcedure
T visitDropProcedure(SQLServerStatementParser.DropProcedureContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropProcedure().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropView
T visitDropView(SQLServerStatementParser.DropViewContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTrigger
T visitDropTrigger(SQLServerStatementParser.DropTriggerContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSequence
T visitDropSequence(SQLServerStatementParser.DropSequenceContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropSequence().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropService
T visitDropService(SQLServerStatementParser.DropServiceContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropService().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropSchema
T visitDropSchema(SQLServerStatementParser.DropSchemaContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropSchema().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTruncateTable
T visitTruncateTable(SQLServerStatementParser.TruncateTableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.truncateTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileTableClause
T visitFileTableClause(SQLServerStatementParser.FileTableClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fileTableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinitionClause
T visitCreateDefinitionClause(SQLServerStatementParser.CreateDefinitionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTableDefinitions
T visitCreateTableDefinitions(SQLServerStatementParser.CreateTableDefinitionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createTableDefinitions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTableDefinition
T visitCreateTableDefinition(SQLServerStatementParser.CreateTableDefinitionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createTableDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefinition
T visitColumnDefinition(SQLServerStatementParser.ColumnDefinitionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefinitionOption
T visitColumnDefinitionOption(SQLServerStatementParser.ColumnDefinitionOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnDefinitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEncryptedOptions
T visitEncryptedOptions(SQLServerStatementParser.EncryptedOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.encryptedOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnConstraint
T visitColumnConstraint(SQLServerStatementParser.ColumnConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComputedColumnConstraint
T visitComputedColumnConstraint(SQLServerStatementParser.ComputedColumnConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.computedColumnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComputedColumnForeignKeyConstraint
T visitComputedColumnForeignKeyConstraint(SQLServerStatementParser.ComputedColumnForeignKeyConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.computedColumnForeignKeyConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComputedColumnForeignKeyOnAction
T visitComputedColumnForeignKeyOnAction(SQLServerStatementParser.ComputedColumnForeignKeyOnActionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.computedColumnForeignKeyOnAction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyConstraint
T visitPrimaryKeyConstraint(SQLServerStatementParser.PrimaryKeyConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.primaryKeyConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDiskTablePrimaryKeyConstraintOption
T visitDiskTablePrimaryKeyConstraintOption(SQLServerStatementParser.DiskTablePrimaryKeyConstraintOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.diskTablePrimaryKeyConstraintOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClusterOption
T visitClusterOption(SQLServerStatementParser.ClusterOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.clusterOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyWithClause
T visitPrimaryKeyWithClause(SQLServerStatementParser.PrimaryKeyWithClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.primaryKeyWithClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyOnClause
T visitPrimaryKeyOnClause(SQLServerStatementParser.PrimaryKeyOnClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.primaryKeyOnClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnSchemaColumn
T visitOnSchemaColumn(SQLServerStatementParser.OnSchemaColumnContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onSchemaColumn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnFileGroup
T visitOnFileGroup(SQLServerStatementParser.OnFileGroupContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onFileGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnString
T visitOnString(SQLServerStatementParser.OnStringContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onString().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMemoryTablePrimaryKeyConstraintOption
T visitMemoryTablePrimaryKeyConstraintOption(SQLServerStatementParser.MemoryTablePrimaryKeyConstraintOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.memoryTablePrimaryKeyConstraintOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithBucket
T visitWithBucket(SQLServerStatementParser.WithBucketContext ctx)
Visit a parse tree produced bySQLServerStatementParser.withBucket().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnForeignKeyConstraint
T visitColumnForeignKeyConstraint(SQLServerStatementParser.ColumnForeignKeyConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnForeignKeyConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForeignKeyOnAction
T visitForeignKeyOnAction(SQLServerStatementParser.ForeignKeyOnActionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.foreignKeyOnAction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForeignKeyOn
T visitForeignKeyOn(SQLServerStatementParser.ForeignKeyOnContext ctx)
Visit a parse tree produced bySQLServerStatementParser.foreignKeyOn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckConstraint
T visitCheckConstraint(SQLServerStatementParser.CheckConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.checkConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnIndex
T visitColumnIndex(SQLServerStatementParser.ColumnIndexContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithIndexOption
T visitWithIndexOption(SQLServerStatementParser.WithIndexOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.withIndexOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexOnClause
T visitIndexOnClause(SQLServerStatementParser.IndexOnClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.indexOnClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnDefault
T visitOnDefault(SQLServerStatementParser.OnDefaultContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onDefault().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileStreamOn
T visitFileStreamOn(SQLServerStatementParser.FileStreamOnContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fileStreamOn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnConstraints
T visitColumnConstraints(SQLServerStatementParser.ColumnConstraintsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnConstraints().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComputedColumnDefinition
T visitComputedColumnDefinition(SQLServerStatementParser.ComputedColumnDefinitionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.computedColumnDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnSetDefinition
T visitColumnSetDefinition(SQLServerStatementParser.ColumnSetDefinitionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.columnSetDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableConstraint
T visitTableConstraint(SQLServerStatementParser.TableConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTablePrimaryConstraint
T visitTablePrimaryConstraint(SQLServerStatementParser.TablePrimaryConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tablePrimaryConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyUnique
T visitPrimaryKeyUnique(SQLServerStatementParser.PrimaryKeyUniqueContext ctx)
Visit a parse tree produced bySQLServerStatementParser.primaryKeyUnique().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDiskTablePrimaryConstraintOption
T visitDiskTablePrimaryConstraintOption(SQLServerStatementParser.DiskTablePrimaryConstraintOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.diskTablePrimaryConstraintOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMemoryTablePrimaryConstraintOption
T visitMemoryTablePrimaryConstraintOption(SQLServerStatementParser.MemoryTablePrimaryConstraintOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.memoryTablePrimaryConstraintOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHashWithBucket
T visitHashWithBucket(SQLServerStatementParser.HashWithBucketContext ctx)
Visit a parse tree produced bySQLServerStatementParser.hashWithBucket().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableForeignKeyConstraint
T visitTableForeignKeyConstraint(SQLServerStatementParser.TableForeignKeyConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableForeignKeyConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableIndex
T visitTableIndex(SQLServerStatementParser.TableIndexContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexNameOption
T visitIndexNameOption(SQLServerStatementParser.IndexNameOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.indexNameOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexOptions
T visitIndexOptions(SQLServerStatementParser.IndexOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.indexOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPeriodClause
T visitPeriodClause(SQLServerStatementParser.PeriodClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.periodClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionScheme
T visitPartitionScheme(SQLServerStatementParser.PartitionSchemeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.partitionScheme().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileGroup
T visitFileGroup(SQLServerStatementParser.FileGroupContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fileGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOptions
T visitTableOptions(SQLServerStatementParser.TableOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOption
T visitTableOption(SQLServerStatementParser.TableOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataDelectionOption
T visitDataDelectionOption(SQLServerStatementParser.DataDelectionOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dataDelectionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableStretchOptions
T visitTableStretchOptions(SQLServerStatementParser.TableStretchOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableStretchOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableStretchOption
T visitTableStretchOption(SQLServerStatementParser.TableStretchOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableStretchOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMigrationState_
T visitMigrationState_(SQLServerStatementParser.MigrationState_Context ctx)
Visit a parse tree produced bySQLServerStatementParser.migrationState_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableOperationOption
T visitTableOperationOption(SQLServerStatementParser.TableOperationOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableOperationOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDistributionOption
T visitDistributionOption(SQLServerStatementParser.DistributionOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.distributionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataWareHouseTableOption
T visitDataWareHouseTableOption(SQLServerStatementParser.DataWareHouseTableOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dataWareHouseTableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataWareHousePartitionOption
T visitDataWareHousePartitionOption(SQLServerStatementParser.DataWareHousePartitionOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dataWareHousePartitionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndexSpecification
T visitCreateIndexSpecification(SQLServerStatementParser.CreateIndexSpecificationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createIndexSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDefinitionClause
T visitAlterDefinitionClause(SQLServerStatementParser.AlterDefinitionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddColumnSpecification
T visitAddColumnSpecification(SQLServerStatementParser.AddColumnSpecificationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.addColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifyColumnSpecification
T visitModifyColumnSpecification(SQLServerStatementParser.ModifyColumnSpecificationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.modifyColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterColumnOperation
T visitAlterColumnOperation(SQLServerStatementParser.AlterColumnOperationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterColumnOperation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterColumnAddOptions
T visitAlterColumnAddOptions(SQLServerStatementParser.AlterColumnAddOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterColumnAddOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterColumnAddOption
T visitAlterColumnAddOption(SQLServerStatementParser.AlterColumnAddOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterColumnAddOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintForColumn
T visitConstraintForColumn(SQLServerStatementParser.ConstraintForColumnContext ctx)
Visit a parse tree produced bySQLServerStatementParser.constraintForColumn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneratedColumnNamesClause
T visitGeneratedColumnNamesClause(SQLServerStatementParser.GeneratedColumnNamesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.generatedColumnNamesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneratedColumnNameClause
T visitGeneratedColumnNameClause(SQLServerStatementParser.GeneratedColumnNameClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.generatedColumnNameClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGeneratedColumnName
T visitGeneratedColumnName(SQLServerStatementParser.GeneratedColumnNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.generatedColumnName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDrop
T visitAlterDrop(SQLServerStatementParser.AlterDropContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterDrop().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableDropConstraint
T visitAlterTableDropConstraint(SQLServerStatementParser.AlterTableDropConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterTableDropConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropConstraintName
T visitDropConstraintName(SQLServerStatementParser.DropConstraintNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropConstraintName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropConstraintWithClause
T visitDropConstraintWithClause(SQLServerStatementParser.DropConstraintWithClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropConstraintWithClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropConstraintOption
T visitDropConstraintOption(SQLServerStatementParser.DropConstraintOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropConstraintOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnOffOption
T visitOnOffOption(SQLServerStatementParser.OnOffOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onOffOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropColumnSpecification
T visitDropColumnSpecification(SQLServerStatementParser.DropColumnSpecificationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropIndexSpecification
T visitDropIndexSpecification(SQLServerStatementParser.DropIndexSpecificationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropIndexSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterCheckConstraint
T visitAlterCheckConstraint(SQLServerStatementParser.AlterCheckConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterCheckConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableTrigger
T visitAlterTableTrigger(SQLServerStatementParser.AlterTableTriggerContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterTableTrigger().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSwitch
T visitAlterSwitch(SQLServerStatementParser.AlterSwitchContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterSwitch().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSet
T visitAlterSet(SQLServerStatementParser.AlterSetContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetFileStreamClause
T visitSetFileStreamClause(SQLServerStatementParser.SetFileStreamClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setFileStreamClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetSystemVersionClause
T visitSetSystemVersionClause(SQLServerStatementParser.SetSystemVersionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setSystemVersionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterSetOnClause
T visitAlterSetOnClause(SQLServerStatementParser.AlterSetOnClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterSetOnClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataConsistencyCheckClause
T visitDataConsistencyCheckClause(SQLServerStatementParser.DataConsistencyCheckClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dataConsistencyCheckClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHistoryRetentionPeriodClause
T visitHistoryRetentionPeriodClause(SQLServerStatementParser.HistoryRetentionPeriodClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.historyRetentionPeriodClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHistoryRetentionPeriod
T visitHistoryRetentionPeriod(SQLServerStatementParser.HistoryRetentionPeriodContext ctx)
Visit a parse tree produced bySQLServerStatementParser.historyRetentionPeriod().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableTableIndex
T visitAlterTableTableIndex(SQLServerStatementParser.AlterTableTableIndexContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterTableTableIndex().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexWithName
T visitIndexWithName(SQLServerStatementParser.IndexWithNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.indexWithName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexNonClusterClause
T visitIndexNonClusterClause(SQLServerStatementParser.IndexNonClusterClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.indexNonClusterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableIndexOnClause
T visitAlterTableIndexOnClause(SQLServerStatementParser.AlterTableIndexOnClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterTableIndexOnClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIndexClusterClause
T visitIndexClusterClause(SQLServerStatementParser.IndexClusterClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.indexClusterClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTableOption
T visitAlterTableOption(SQLServerStatementParser.AlterTableOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterTableOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnHistoryTableClause
T visitOnHistoryTableClause(SQLServerStatementParser.OnHistoryTableClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onHistoryTableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabaseClause
T visitCreateDatabaseClause(SQLServerStatementParser.CreateDatabaseClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createDatabaseClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileDefinitionClause
T visitFileDefinitionClause(SQLServerStatementParser.FileDefinitionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fileDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseOption
T visitDatabaseOption(SQLServerStatementParser.DatabaseOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileStreamOption
T visitFileStreamOption(SQLServerStatementParser.FileStreamOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fileStreamOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileSpec
T visitFileSpec(SQLServerStatementParser.FileSpecContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fileSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseFileSpecOption
T visitDatabaseFileSpecOption(SQLServerStatementParser.DatabaseFileSpecOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseFileSpecOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseFileGroup
T visitDatabaseFileGroup(SQLServerStatementParser.DatabaseFileGroupContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseFileGroup().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseFileGroupContains
T visitDatabaseFileGroupContains(SQLServerStatementParser.DatabaseFileGroupContainsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseFileGroupContains().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseLogOns
T visitDatabaseLogOns(SQLServerStatementParser.DatabaseLogOnsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseLogOns().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeclareVariable
T visitDeclareVariable(SQLServerStatementParser.DeclareVariableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.declareVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariable
T visitVariable(SQLServerStatementParser.VariableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.variable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableVariable
T visitTableVariable(SQLServerStatementParser.TableVariableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariTableTypeDefinition
T visitVariTableTypeDefinition(SQLServerStatementParser.VariTableTypeDefinitionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.variTableTypeDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableVariableClause
T visitTableVariableClause(SQLServerStatementParser.TableVariableClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableVariableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableTableColumnDefinition
T visitVariableTableColumnDefinition(SQLServerStatementParser.VariableTableColumnDefinitionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.variableTableColumnDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableTableColumnConstraint
T visitVariableTableColumnConstraint(SQLServerStatementParser.VariableTableColumnConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.variableTableColumnConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariableTableConstraint
T visitVariableTableConstraint(SQLServerStatementParser.VariableTableConstraintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.variableTableConstraint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetVariable
T visitSetVariable(SQLServerStatementParser.SetVariableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetVariableClause
T visitSetVariableClause(SQLServerStatementParser.SetVariableClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setVariableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorVariable
T visitCursorVariable(SQLServerStatementParser.CursorVariableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.cursorVariable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorClause
T visitCursorClause(SQLServerStatementParser.CursorClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.cursorClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompoundOperation
T visitCompoundOperation(SQLServerStatementParser.CompoundOperationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.compoundOperation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncParameters
T visitFuncParameters(SQLServerStatementParser.FuncParametersContext ctx)
Visit a parse tree produced bySQLServerStatementParser.funcParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncReturns
T visitFuncReturns(SQLServerStatementParser.FuncReturnsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.funcReturns().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncMutiReturn
T visitFuncMutiReturn(SQLServerStatementParser.FuncMutiReturnContext ctx)
Visit a parse tree produced bySQLServerStatementParser.funcMutiReturn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncInlineReturn
T visitFuncInlineReturn(SQLServerStatementParser.FuncInlineReturnContext ctx)
Visit a parse tree produced bySQLServerStatementParser.funcInlineReturn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFuncScalarReturn
T visitFuncScalarReturn(SQLServerStatementParser.FuncScalarReturnContext ctx)
Visit a parse tree produced bySQLServerStatementParser.funcScalarReturn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableTypeDefinition
T visitTableTypeDefinition(SQLServerStatementParser.TableTypeDefinitionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableTypeDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCompoundStatement
T visitCompoundStatement(SQLServerStatementParser.CompoundStatementContext ctx)
Visit a parse tree produced bySQLServerStatementParser.compoundStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionOption
T visitFunctionOption(SQLServerStatementParser.FunctionOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.functionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitValidStatement
T visitValidStatement(SQLServerStatementParser.ValidStatementContext ctx)
Visit a parse tree produced bySQLServerStatementParser.validStatement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcParameters
T visitProcParameters(SQLServerStatementParser.ProcParametersContext ctx)
Visit a parse tree produced bySQLServerStatementParser.procParameters().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcParameter
T visitProcParameter(SQLServerStatementParser.ProcParameterContext ctx)
Visit a parse tree produced bySQLServerStatementParser.procParameter().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOrAlterProcClause
T visitCreateOrAlterProcClause(SQLServerStatementParser.CreateOrAlterProcClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createOrAlterProcClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithCreateProcOption
T visitWithCreateProcOption(SQLServerStatementParser.WithCreateProcOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.withCreateProcOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcOption
T visitProcOption(SQLServerStatementParser.ProcOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.procOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcAsClause
T visitProcAsClause(SQLServerStatementParser.ProcAsClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.procAsClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProcSetOption
T visitProcSetOption(SQLServerStatementParser.ProcSetOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.procSetOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOrAlterViewClause
T visitCreateOrAlterViewClause(SQLServerStatementParser.CreateOrAlterViewClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createOrAlterViewClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitViewAttribute
T visitViewAttribute(SQLServerStatementParser.ViewAttributeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.viewAttribute().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithCommonTableExpr
T visitWithCommonTableExpr(SQLServerStatementParser.WithCommonTableExprContext ctx)
Visit a parse tree produced bySQLServerStatementParser.withCommonTableExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonTableExpr
T visitCommonTableExpr(SQLServerStatementParser.CommonTableExprContext ctx)
Visit a parse tree produced bySQLServerStatementParser.commonTableExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTriggerClause
T visitCreateTriggerClause(SQLServerStatementParser.CreateTriggerClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createTriggerClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDmlTriggerOption
T visitDmlTriggerOption(SQLServerStatementParser.DmlTriggerOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dmlTriggerOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMethodSpecifier
T visitMethodSpecifier(SQLServerStatementParser.MethodSpecifierContext ctx)
Visit a parse tree produced bySQLServerStatementParser.methodSpecifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTriggerTarget
T visitTriggerTarget(SQLServerStatementParser.TriggerTargetContext ctx)
Visit a parse tree produced bySQLServerStatementParser.triggerTarget().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateOrAlterSequenceClause
T visitCreateOrAlterSequenceClause(SQLServerStatementParser.CreateOrAlterSequenceClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createOrAlterSequenceClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateIndexClause
T visitCreateIndexClause(SQLServerStatementParser.CreateIndexClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createIndexClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFilterPredicate
T visitFilterPredicate(SQLServerStatementParser.FilterPredicateContext ctx)
Visit a parse tree produced bySQLServerStatementParser.filterPredicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConjunct
T visitConjunct(SQLServerStatementParser.ConjunctContext ctx)
Visit a parse tree produced bySQLServerStatementParser.conjunct().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterIndexClause
T visitAlterIndexClause(SQLServerStatementParser.AlterIndexClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterIndexClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRelationalIndexOption
T visitRelationalIndexOption(SQLServerStatementParser.RelationalIndexOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.relationalIndexOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPartitionNumberRange
T visitPartitionNumberRange(SQLServerStatementParser.PartitionNumberRangeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.partitionNumberRange().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReorganizeOption
T visitReorganizeOption(SQLServerStatementParser.ReorganizeOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.reorganizeOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetIndexOption
T visitSetIndexOption(SQLServerStatementParser.SetIndexOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setIndexOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitResumableIndexOptions
T visitResumableIndexOptions(SQLServerStatementParser.ResumableIndexOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.resumableIndexOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDatabaseClause
T visitAlterDatabaseClause(SQLServerStatementParser.AlterDatabaseClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterDatabaseClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddSecondaryOption
T visitAddSecondaryOption(SQLServerStatementParser.AddSecondaryOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.addSecondaryOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEditionOptions
T visitEditionOptions(SQLServerStatementParser.EditionOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.editionOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceObjective
T visitServiceObjective(SQLServerStatementParser.ServiceObjectiveContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceObjective().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDatabaseOptionSpec
T visitAlterDatabaseOptionSpec(SQLServerStatementParser.AlterDatabaseOptionSpecContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterDatabaseOptionSpec().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFileAndFilegroupOptions
T visitFileAndFilegroupOptions(SQLServerStatementParser.FileAndFilegroupOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fileAndFilegroupOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddOrModifyFilegroups
T visitAddOrModifyFilegroups(SQLServerStatementParser.AddOrModifyFilegroupsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.addOrModifyFilegroups().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFilegroupUpdatabilityOption
T visitFilegroupUpdatabilityOption(SQLServerStatementParser.FilegroupUpdatabilityOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.filegroupUpdatabilityOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddOrModifyFiles
T visitAddOrModifyFiles(SQLServerStatementParser.AddOrModifyFilesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.addOrModifyFiles().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAcceleratedDatabaseRecovery
T visitAcceleratedDatabaseRecovery(SQLServerStatementParser.AcceleratedDatabaseRecoveryContext ctx)
Visit a parse tree produced bySQLServerStatementParser.acceleratedDatabaseRecovery().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAutoOption
T visitAutoOption(SQLServerStatementParser.AutoOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.autoOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAutomaticTuningOption
T visitAutomaticTuningOption(SQLServerStatementParser.AutomaticTuningOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.automaticTuningOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChangeTrackingOption
T visitChangeTrackingOption(SQLServerStatementParser.ChangeTrackingOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.changeTrackingOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitChangeTrackingOptionList
T visitChangeTrackingOptionList(SQLServerStatementParser.ChangeTrackingOptionListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.changeTrackingOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCursorOption
T visitCursorOption(SQLServerStatementParser.CursorOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.cursorOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExternalAccessOption
T visitExternalAccessOption(SQLServerStatementParser.ExternalAccessOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.externalAccessOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryStoreOptions
T visitQueryStoreOptions(SQLServerStatementParser.QueryStoreOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.queryStoreOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryStoreOptionList
T visitQueryStoreOptionList(SQLServerStatementParser.QueryStoreOptionListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.queryStoreOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryCapturePolicyOptionList
T visitQueryCapturePolicyOptionList(SQLServerStatementParser.QueryCapturePolicyOptionListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.queryCapturePolicyOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRecoveryOption
T visitRecoveryOption(SQLServerStatementParser.RecoveryOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.recoveryOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSqlOption
T visitSqlOption(SQLServerStatementParser.SqlOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.sqlOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSnapshotOption
T visitSnapshotOption(SQLServerStatementParser.SnapshotOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.snapshotOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceBrokerOption
T visitServiceBrokerOption(SQLServerStatementParser.ServiceBrokerOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceBrokerOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTargetRecoveryTimeOption
T visitTargetRecoveryTimeOption(SQLServerStatementParser.TargetRecoveryTimeOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.targetRecoveryTimeOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTermination
T visitTermination(SQLServerStatementParser.TerminationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.termination().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateServiceClause
T visitCreateServiceClause(SQLServerStatementParser.CreateServiceClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createServiceClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterServiceClause
T visitAlterServiceClause(SQLServerStatementParser.AlterServiceClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterServiceClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterServiceOptArg
T visitAlterServiceOptArg(SQLServerStatementParser.AlterServiceOptArgContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterServiceOptArg().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaNameClause
T visitSchemaNameClause(SQLServerStatementParser.SchemaNameClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.schemaNameClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaElement
T visitSchemaElement(SQLServerStatementParser.SchemaElementContext ctx)
Visit a parse tree produced bySQLServerStatementParser.schemaElement().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTableAsSelectClause
T visitCreateTableAsSelectClause(SQLServerStatementParser.CreateTableAsSelectClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createTableAsSelectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTableAsSelect
T visitCreateTableAsSelect(SQLServerStatementParser.CreateTableAsSelectContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createTableAsSelect().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateRemoteTableAsSelect
T visitCreateRemoteTableAsSelect(SQLServerStatementParser.CreateRemoteTableAsSelectContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createRemoteTableAsSelect().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithDistributionOption
T visitWithDistributionOption(SQLServerStatementParser.WithDistributionOptionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.withDistributionOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionQueryHintClause
T visitOptionQueryHintClause(SQLServerStatementParser.OptionQueryHintClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.optionQueryHintClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsert
T visitInsert(SQLServerStatementParser.InsertContext ctx)
Visit a parse tree produced bySQLServerStatementParser.insert().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertDefaultValue
T visitInsertDefaultValue(SQLServerStatementParser.InsertDefaultValueContext ctx)
Visit a parse tree produced bySQLServerStatementParser.insertDefaultValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertValuesClause
T visitInsertValuesClause(SQLServerStatementParser.InsertValuesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.insertValuesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertSelectClause
T visitInsertSelectClause(SQLServerStatementParser.InsertSelectClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.insertSelectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpdate
T visitUpdate(SQLServerStatementParser.UpdateContext ctx)
Visit a parse tree produced bySQLServerStatementParser.update().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment
T visitAssignment(SQLServerStatementParser.AssignmentContext ctx)
Visit a parse tree produced bySQLServerStatementParser.assignment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetAssignmentsClause
T visitSetAssignmentsClause(SQLServerStatementParser.SetAssignmentsClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setAssignmentsClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentValues
T visitAssignmentValues(SQLServerStatementParser.AssignmentValuesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.assignmentValues().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentValue
T visitAssignmentValue(SQLServerStatementParser.AssignmentValueContext ctx)
Visit a parse tree produced bySQLServerStatementParser.assignmentValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDelete
T visitDelete(SQLServerStatementParser.DeleteContext ctx)
Visit a parse tree produced bySQLServerStatementParser.delete().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleTableClause
T visitSingleTableClause(SQLServerStatementParser.SingleTableClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.singleTableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultipleTablesClause
T visitMultipleTablesClause(SQLServerStatementParser.MultipleTablesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.multipleTablesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMultipleTableNames
T visitMultipleTableNames(SQLServerStatementParser.MultipleTableNamesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.multipleTableNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelect
T visitSelect(SQLServerStatementParser.SelectContext ctx)
Visit a parse tree produced bySQLServerStatementParser.select().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregationClause
T visitAggregationClause(SQLServerStatementParser.AggregationClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.aggregationClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectClause
T visitSelectClause(SQLServerStatementParser.SelectClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.selectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDuplicateSpecification
T visitDuplicateSpecification(SQLServerStatementParser.DuplicateSpecificationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.duplicateSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProjections
T visitProjections(SQLServerStatementParser.ProjectionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.projections().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProjection
T visitProjection(SQLServerStatementParser.ProjectionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.projection().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTop
T visitTop(SQLServerStatementParser.TopContext ctx)
Visit a parse tree produced bySQLServerStatementParser.top().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTopNum
T visitTopNum(SQLServerStatementParser.TopNumContext ctx)
Visit a parse tree produced bySQLServerStatementParser.topNum().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnqualifiedShorthand
T visitUnqualifiedShorthand(SQLServerStatementParser.UnqualifiedShorthandContext ctx)
Visit a parse tree produced bySQLServerStatementParser.unqualifiedShorthand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedShorthand
T visitQualifiedShorthand(SQLServerStatementParser.QualifiedShorthandContext ctx)
Visit a parse tree produced bySQLServerStatementParser.qualifiedShorthand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromClause
T visitFromClause(SQLServerStatementParser.FromClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fromClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableReferences
T visitTableReferences(SQLServerStatementParser.TableReferencesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableReferences().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableReference
T visitTableReference(SQLServerStatementParser.TableReferenceContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFactor
T visitTableFactor(SQLServerStatementParser.TableFactorContext ctx)
Visit a parse tree produced bySQLServerStatementParser.tableFactor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinedTable
T visitJoinedTable(SQLServerStatementParser.JoinedTableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.joinedTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinSpecification
T visitJoinSpecification(SQLServerStatementParser.JoinSpecificationContext ctx)
Visit a parse tree produced bySQLServerStatementParser.joinSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereClause
T visitWhereClause(SQLServerStatementParser.WhereClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.whereClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByClause
T visitGroupByClause(SQLServerStatementParser.GroupByClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.groupByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHavingClause
T visitHavingClause(SQLServerStatementParser.HavingClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.havingClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubquery
T visitSubquery(SQLServerStatementParser.SubqueryContext ctx)
Visit a parse tree produced bySQLServerStatementParser.subquery().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWithClause
T visitWithClause(SQLServerStatementParser.WithClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.withClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCteClauseSet
T visitCteClauseSet(SQLServerStatementParser.CteClauseSetContext ctx)
Visit a parse tree produced bySQLServerStatementParser.cteClauseSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCteClause
T visitCteClause(SQLServerStatementParser.CteClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.cteClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOutputClause
T visitOutputClause(SQLServerStatementParser.OutputClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.outputClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOutputWithColumns
T visitOutputWithColumns(SQLServerStatementParser.OutputWithColumnsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.outputWithColumns().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOutputWithColumn
T visitOutputWithColumn(SQLServerStatementParser.OutputWithColumnContext ctx)
Visit a parse tree produced bySQLServerStatementParser.outputWithColumn().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOutputWithAaterisk
T visitOutputWithAaterisk(SQLServerStatementParser.OutputWithAateriskContext ctx)
Visit a parse tree produced bySQLServerStatementParser.outputWithAaterisk().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOutputTableName
T visitOutputTableName(SQLServerStatementParser.OutputTableNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.outputTableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQueryHint
T visitQueryHint(SQLServerStatementParser.QueryHintContext ctx)
Visit a parse tree produced bySQLServerStatementParser.queryHint().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUseHitName
T visitUseHitName(SQLServerStatementParser.UseHitNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.useHitName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForClause
T visitForClause(SQLServerStatementParser.ForClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.forClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForXmlClause
T visitForXmlClause(SQLServerStatementParser.ForXmlClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.forXmlClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommonDirectivesForXml
T visitCommonDirectivesForXml(SQLServerStatementParser.CommonDirectivesForXmlContext ctx)
Visit a parse tree produced bySQLServerStatementParser.commonDirectivesForXml().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForJsonClause
T visitForJsonClause(SQLServerStatementParser.ForJsonClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.forJsonClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectWithClause
T visitSelectWithClause(SQLServerStatementParser.SelectWithClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.selectWithClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlNamespacesClause
T visitXmlNamespacesClause(SQLServerStatementParser.XmlNamespacesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.xmlNamespacesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlNamespaceDeclarationItem
T visitXmlNamespaceDeclarationItem(SQLServerStatementParser.XmlNamespaceDeclarationItemContext ctx)
Visit a parse tree produced bySQLServerStatementParser.xmlNamespaceDeclarationItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlNamespaceUri
T visitXmlNamespaceUri(SQLServerStatementParser.XmlNamespaceUriContext ctx)
Visit a parse tree produced bySQLServerStatementParser.xmlNamespaceUri().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlNamespacePrefix
T visitXmlNamespacePrefix(SQLServerStatementParser.XmlNamespacePrefixContext ctx)
Visit a parse tree produced bySQLServerStatementParser.xmlNamespacePrefix().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlDefaultNamespaceDeclarationItem
T visitXmlDefaultNamespaceDeclarationItem(SQLServerStatementParser.XmlDefaultNamespaceDeclarationItemContext ctx)
Visit a parse tree produced bySQLServerStatementParser.xmlDefaultNamespaceDeclarationItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrant
T visitGrant(SQLServerStatementParser.GrantContext ctx)
Visit a parse tree produced bySQLServerStatementParser.grant().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantClassPrivilegesClause
T visitGrantClassPrivilegesClause(SQLServerStatementParser.GrantClassPrivilegesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.grantClassPrivilegesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantClassTypePrivilegesClause
T visitGrantClassTypePrivilegesClause(SQLServerStatementParser.GrantClassTypePrivilegesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.grantClassTypePrivilegesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassPrivileges
T visitClassPrivileges(SQLServerStatementParser.ClassPrivilegesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.classPrivileges().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnClassClause
T visitOnClassClause(SQLServerStatementParser.OnClassClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onClassClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassTypePrivileges
T visitClassTypePrivileges(SQLServerStatementParser.ClassTypePrivilegesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.classTypePrivileges().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnClassTypeClause
T visitOnClassTypeClause(SQLServerStatementParser.OnClassTypeClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.onClassTypeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSecurable
T visitSecurable(SQLServerStatementParser.SecurableContext ctx)
Visit a parse tree produced bySQLServerStatementParser.securable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrincipal
T visitPrincipal(SQLServerStatementParser.PrincipalContext ctx)
Visit a parse tree produced bySQLServerStatementParser.principal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevoke
T visitRevoke(SQLServerStatementParser.RevokeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.revoke().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevokeClassPrivilegesClause
T visitRevokeClassPrivilegesClause(SQLServerStatementParser.RevokeClassPrivilegesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.revokeClassPrivilegesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevokeClassTypePrivilegesClause
T visitRevokeClassTypePrivilegesClause(SQLServerStatementParser.RevokeClassTypePrivilegesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.revokeClassTypePrivilegesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDeny
T visitDeny(SQLServerStatementParser.DenyContext ctx)
Visit a parse tree produced bySQLServerStatementParser.deny().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDenyClassPrivilegesClause
T visitDenyClassPrivilegesClause(SQLServerStatementParser.DenyClassPrivilegesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.denyClassPrivilegesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDenyClassTypePrivilegesClause
T visitDenyClassTypePrivilegesClause(SQLServerStatementParser.DenyClassTypePrivilegesClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.denyClassTypePrivilegesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionForClause
T visitOptionForClause(SQLServerStatementParser.OptionForClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.optionForClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeType
T visitPrivilegeType(SQLServerStatementParser.PrivilegeTypeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.privilegeType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectPermission
T visitObjectPermission(SQLServerStatementParser.ObjectPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.objectPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServerPermission
T visitServerPermission(SQLServerStatementParser.ServerPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serverPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServerPrincipalPermission
T visitServerPrincipalPermission(SQLServerStatementParser.ServerPrincipalPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serverPrincipalPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabasePermission
T visitDatabasePermission(SQLServerStatementParser.DatabasePermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databasePermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabasePrincipalPermission
T visitDatabasePrincipalPermission(SQLServerStatementParser.DatabasePrincipalPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databasePrincipalPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseUserPermission
T visitDatabaseUserPermission(SQLServerStatementParser.DatabaseUserPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseUserPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseRolePermission
T visitDatabaseRolePermission(SQLServerStatementParser.DatabaseRolePermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseRolePermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitApplicationRolePermission
T visitApplicationRolePermission(SQLServerStatementParser.ApplicationRolePermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.applicationRolePermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDatabaseScopedCredentialPermission
T visitDatabaseScopedCredentialPermission(SQLServerStatementParser.DatabaseScopedCredentialPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.databaseScopedCredentialPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaPermission
T visitSchemaPermission(SQLServerStatementParser.SchemaPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.schemaPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSearchPropertyListPermission
T visitSearchPropertyListPermission(SQLServerStatementParser.SearchPropertyListPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.searchPropertyListPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceBrokerPermission
T visitServiceBrokerPermission(SQLServerStatementParser.ServiceBrokerPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceBrokerPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceBrokerContractsPermission
T visitServiceBrokerContractsPermission(SQLServerStatementParser.ServiceBrokerContractsPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceBrokerContractsPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceBrokerMessageTypesPermission
T visitServiceBrokerMessageTypesPermission(SQLServerStatementParser.ServiceBrokerMessageTypesPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceBrokerMessageTypesPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceBrokerRemoteServiceBindingsPermission
T visitServiceBrokerRemoteServiceBindingsPermission(SQLServerStatementParser.ServiceBrokerRemoteServiceBindingsPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceBrokerRemoteServiceBindingsPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceBrokerRoutesPermission
T visitServiceBrokerRoutesPermission(SQLServerStatementParser.ServiceBrokerRoutesPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceBrokerRoutesPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitServiceBrokerServicesPermission
T visitServiceBrokerServicesPermission(SQLServerStatementParser.ServiceBrokerServicesPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.serviceBrokerServicesPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEndpointPermission
T visitEndpointPermission(SQLServerStatementParser.EndpointPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.endpointPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCertificatePermission
T visitCertificatePermission(SQLServerStatementParser.CertificatePermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.certificatePermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSymmetricKeyPermission
T visitSymmetricKeyPermission(SQLServerStatementParser.SymmetricKeyPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.symmetricKeyPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAsymmetricKeyPermission
T visitAsymmetricKeyPermission(SQLServerStatementParser.AsymmetricKeyPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.asymmetricKeyPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssemblyPermission
T visitAssemblyPermission(SQLServerStatementParser.AssemblyPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.assemblyPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAvailabilityGroupPermission
T visitAvailabilityGroupPermission(SQLServerStatementParser.AvailabilityGroupPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.availabilityGroupPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullTextPermission
T visitFullTextPermission(SQLServerStatementParser.FullTextPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fullTextPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullTextCatalogPermission
T visitFullTextCatalogPermission(SQLServerStatementParser.FullTextCatalogPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fullTextCatalogPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFullTextStoplistPermission
T visitFullTextStoplistPermission(SQLServerStatementParser.FullTextStoplistPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.fullTextStoplistPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTypePermission
T visitTypePermission(SQLServerStatementParser.TypePermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.typePermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitXmlSchemaCollectionPermission
T visitXmlSchemaCollectionPermission(SQLServerStatementParser.XmlSchemaCollectionPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.xmlSchemaCollectionPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSystemObjectPermission
T visitSystemObjectPermission(SQLServerStatementParser.SystemObjectPermissionContext ctx)
Visit a parse tree produced bySQLServerStatementParser.systemObjectPermission().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClass_
T visitClass_(SQLServerStatementParser.Class_Context ctx)
Visit a parse tree produced bySQLServerStatementParser.class_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassItem
T visitClassItem(SQLServerStatementParser.ClassItemContext ctx)
Visit a parse tree produced bySQLServerStatementParser.classItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitClassType
T visitClassType(SQLServerStatementParser.ClassTypeContext ctx)
Visit a parse tree produced bySQLServerStatementParser.classType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRoleClause
T visitRoleClause(SQLServerStatementParser.RoleClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.roleClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetUser
T visitSetUser(SQLServerStatementParser.SetUserContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUser
T visitCreateUser(SQLServerStatementParser.CreateUserContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserLoginClause
T visitCreateUserLoginClause(SQLServerStatementParser.CreateUserLoginClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createUserLoginClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserWindowsPrincipalClause
T visitCreateUserWindowsPrincipalClause(SQLServerStatementParser.CreateUserWindowsPrincipalClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createUserWindowsPrincipalClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserLoginWindowsPrincipalClause
T visitCreateUserLoginWindowsPrincipalClause(SQLServerStatementParser.CreateUserLoginWindowsPrincipalClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createUserLoginWindowsPrincipalClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserWithoutLoginClause
T visitCreateUserWithoutLoginClause(SQLServerStatementParser.CreateUserWithoutLoginClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createUserWithoutLoginClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOptionsList
T visitOptionsList(SQLServerStatementParser.OptionsListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.optionsList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitedOptionsList
T visitLimitedOptionsList(SQLServerStatementParser.LimitedOptionsListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.limitedOptionsList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserFromExternalProviderClause
T visitCreateUserFromExternalProviderClause(SQLServerStatementParser.CreateUserFromExternalProviderClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createUserFromExternalProviderClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserWithDefaultSchema
T visitCreateUserWithDefaultSchema(SQLServerStatementParser.CreateUserWithDefaultSchemaContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createUserWithDefaultSchema().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateUserWithAzureActiveDirectoryPrincipalClause
T visitCreateUserWithAzureActiveDirectoryPrincipalClause(SQLServerStatementParser.CreateUserWithAzureActiveDirectoryPrincipalClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createUserWithAzureActiveDirectoryPrincipalClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowsPrincipal
T visitWindowsPrincipal(SQLServerStatementParser.WindowsPrincipalContext ctx)
Visit a parse tree produced bySQLServerStatementParser.windowsPrincipal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAzureActiveDirectoryPrincipal
T visitAzureActiveDirectoryPrincipal(SQLServerStatementParser.AzureActiveDirectoryPrincipalContext ctx)
Visit a parse tree produced bySQLServerStatementParser.azureActiveDirectoryPrincipal().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUserName
T visitUserName(SQLServerStatementParser.UserNameContext ctx)
Visit a parse tree produced bySQLServerStatementParser.userName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoredNameIdentifier
T visitIgnoredNameIdentifier(SQLServerStatementParser.IgnoredNameIdentifierContext ctx)
Visit a parse tree produced bySQLServerStatementParser.ignoredNameIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropUser
T visitDropUser(SQLServerStatementParser.DropUserContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterUser
T visitAlterUser(SQLServerStatementParser.AlterUserContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterUser().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetItem
T visitSetItem(SQLServerStatementParser.SetItemContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateRole
T visitCreateRole(SQLServerStatementParser.CreateRoleContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropRole
T visitDropRole(SQLServerStatementParser.DropRoleContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterRole
T visitAlterRole(SQLServerStatementParser.AlterRoleContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterRole().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLogin
T visitCreateLogin(SQLServerStatementParser.CreateLoginContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLogin().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForSQLServerClause
T visitCreateLoginForSQLServerClause(SQLServerStatementParser.CreateLoginForSQLServerClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForSQLServerClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForSQLServerOptionList
T visitCreateLoginForSQLServerOptionList(SQLServerStatementParser.CreateLoginForSQLServerOptionListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForSQLServerOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForSQLServerOptionListClause
T visitCreateLoginForSQLServerOptionListClause(SQLServerStatementParser.CreateLoginForSQLServerOptionListClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForSQLServerOptionListClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHashedPassword
T visitHashedPassword(SQLServerStatementParser.HashedPasswordContext ctx)
Visit a parse tree produced bySQLServerStatementParser.hashedPassword().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSid
T visitSid(SQLServerStatementParser.SidContext ctx)
Visit a parse tree produced bySQLServerStatementParser.sid().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSources
T visitSources(SQLServerStatementParser.SourcesContext ctx)
Visit a parse tree produced bySQLServerStatementParser.sources().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWindowsOptions
T visitWindowsOptions(SQLServerStatementParser.WindowsOptionsContext ctx)
Visit a parse tree produced bySQLServerStatementParser.windowsOptions().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForAzureSQLDatabaseClause
T visitCreateLoginForAzureSQLDatabaseClause(SQLServerStatementParser.CreateLoginForAzureSQLDatabaseClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForAzureSQLDatabaseClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForAzureSQLDatabaseOptionList
T visitCreateLoginForAzureSQLDatabaseOptionList(SQLServerStatementParser.CreateLoginForAzureSQLDatabaseOptionListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForAzureSQLDatabaseOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForAzureManagedInstanceClause
T visitCreateLoginForAzureManagedInstanceClause(SQLServerStatementParser.CreateLoginForAzureManagedInstanceClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForAzureManagedInstanceClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAzureManagedInstanceOptionList
T visitAzureManagedInstanceOptionList(SQLServerStatementParser.AzureManagedInstanceOptionListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.azureManagedInstanceOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForAzureSynapseAnalyticsClause
T visitCreateLoginForAzureSynapseAnalyticsClause(SQLServerStatementParser.CreateLoginForAzureSynapseAnalyticsClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForAzureSynapseAnalyticsClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForAzureSynapseAnalyticsOptionList
T visitCreateLoginForAzureSynapseAnalyticsOptionList(SQLServerStatementParser.CreateLoginForAzureSynapseAnalyticsOptionListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForAzureSynapseAnalyticsOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForAnalyticsPlatformSystemClause
T visitCreateLoginForAnalyticsPlatformSystemClause(SQLServerStatementParser.CreateLoginForAnalyticsPlatformSystemClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForAnalyticsPlatformSystemClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForAnalyticsPlatformSystemOptionList
T visitCreateLoginForAnalyticsPlatformSystemOptionList(SQLServerStatementParser.CreateLoginForAnalyticsPlatformSystemOptionListContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForAnalyticsPlatformSystemOptionList().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLoginForAnalyticsPlatformSystemOptionListClause
T visitCreateLoginForAnalyticsPlatformSystemOptionListClause(SQLServerStatementParser.CreateLoginForAnalyticsPlatformSystemOptionListClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.createLoginForAnalyticsPlatformSystemOptionListClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropLogin
T visitDropLogin(SQLServerStatementParser.DropLoginContext ctx)
Visit a parse tree produced bySQLServerStatementParser.dropLogin().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterLogin
T visitAlterLogin(SQLServerStatementParser.AlterLoginContext ctx)
Visit a parse tree produced bySQLServerStatementParser.alterLogin().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStatusOptionClause
T visitStatusOptionClause(SQLServerStatementParser.StatusOptionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.statusOptionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetOptionClause
T visitSetOptionClause(SQLServerStatementParser.SetOptionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.setOptionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPasswordOptionClause
T visitPasswordOptionClause(SQLServerStatementParser.PasswordOptionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.passwordOptionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCryptographicCredentialsOptionClause
T visitCryptographicCredentialsOptionClause(SQLServerStatementParser.CryptographicCredentialsOptionClauseContext ctx)
Visit a parse tree produced bySQLServerStatementParser.cryptographicCredentialsOptionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevert
T visitRevert(SQLServerStatementParser.RevertContext ctx)
Visit a parse tree produced bySQLServerStatementParser.revert().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-