Interface SQL92StatementVisitor<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:
SQL92DALStatementVisitor,SQL92DCLStatementVisitor,SQL92DDLStatementVisitor,SQL92DMLStatementVisitor,SQL92StatementBaseVisitor,SQL92StatementVisitor,SQL92TCLStatementVisitor
public interface SQL92StatementVisitor<T> extends org.antlr.v4.runtime.tree.ParseTreeVisitor<T>This interface defines a complete generic visitor for a parse tree produced bySQL92StatementParser.
-
-
Method Summary
-
-
-
Method Detail
-
visitExecute
T visitExecute(SQL92StatementParser.ExecuteContext ctx)
Visit a parse tree produced bySQL92StatementParser.execute().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTable
T visitCreateTable(SQL92StatementParser.CreateTableContext ctx)
Visit a parse tree produced bySQL92StatementParser.createTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterTable
T visitAlterTable(SQL92StatementParser.AlterTableContext ctx)
Visit a parse tree produced bySQL92StatementParser.alterTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropTable
T visitDropTable(SQL92StatementParser.DropTableContext ctx)
Visit a parse tree produced bySQL92StatementParser.dropTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabase
T visitCreateDatabase(SQL92StatementParser.CreateDatabaseContext ctx)
Visit a parse tree produced bySQL92StatementParser.createDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropDatabase
T visitDropDatabase(SQL92StatementParser.DropDatabaseContext ctx)
Visit a parse tree produced bySQL92StatementParser.dropDatabase().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateView
T visitCreateView(SQL92StatementParser.CreateViewContext ctx)
Visit a parse tree produced bySQL92StatementParser.createView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropView
T visitDropView(SQL92StatementParser.DropViewContext ctx)
Visit a parse tree produced bySQL92StatementParser.dropView().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateTableSpecification
T visitCreateTableSpecification(SQL92StatementParser.CreateTableSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.createTableSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinitionClause
T visitCreateDefinitionClause(SQL92StatementParser.CreateDefinitionClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.createDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDatabaseSpecification_
T visitCreateDatabaseSpecification_(SQL92StatementParser.CreateDatabaseSpecification_Context ctx)
Visit a parse tree produced bySQL92StatementParser.createDatabaseSpecification_().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateDefinition
T visitCreateDefinition(SQL92StatementParser.CreateDefinitionContext ctx)
Visit a parse tree produced bySQL92StatementParser.createDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnDefinition
T visitColumnDefinition(SQL92StatementParser.ColumnDefinitionContext ctx)
Visit a parse tree produced bySQL92StatementParser.columnDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeOption
T visitDataTypeOption(SQL92StatementParser.DataTypeOptionContext ctx)
Visit a parse tree produced bySQL92StatementParser.dataTypeOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCheckConstraintDefinition
T visitCheckConstraintDefinition(SQL92StatementParser.CheckConstraintDefinitionContext ctx)
Visit a parse tree produced bySQL92StatementParser.checkConstraintDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceDefinition
T visitReferenceDefinition(SQL92StatementParser.ReferenceDefinitionContext ctx)
Visit a parse tree produced bySQL92StatementParser.referenceDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitReferenceOption
T visitReferenceOption(SQL92StatementParser.ReferenceOptionContext ctx)
Visit a parse tree produced bySQL92StatementParser.referenceOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyParts
T visitKeyParts(SQL92StatementParser.KeyPartsContext ctx)
Visit a parse tree produced bySQL92StatementParser.keyParts().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitKeyPart
T visitKeyPart(SQL92StatementParser.KeyPartContext ctx)
Visit a parse tree produced bySQL92StatementParser.keyPart().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintDefinition
T visitConstraintDefinition(SQL92StatementParser.ConstraintDefinitionContext ctx)
Visit a parse tree produced bySQL92StatementParser.constraintDefinition().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKeyOption
T visitPrimaryKeyOption(SQL92StatementParser.PrimaryKeyOptionContext ctx)
Visit a parse tree produced bySQL92StatementParser.primaryKeyOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrimaryKey
T visitPrimaryKey(SQL92StatementParser.PrimaryKeyContext ctx)
Visit a parse tree produced bySQL92StatementParser.primaryKey().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUniqueOption
T visitUniqueOption(SQL92StatementParser.UniqueOptionContext ctx)
Visit a parse tree produced bySQL92StatementParser.uniqueOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitForeignKeyOption
T visitForeignKeyOption(SQL92StatementParser.ForeignKeyOptionContext ctx)
Visit a parse tree produced bySQL92StatementParser.foreignKeyOption().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCreateLikeClause
T visitCreateLikeClause(SQL92StatementParser.CreateLikeClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.createLikeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlterDefinitionClause
T visitAlterDefinitionClause(SQL92StatementParser.AlterDefinitionClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.alterDefinitionClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddColumnSpecification
T visitAddColumnSpecification(SQL92StatementParser.AddColumnSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.addColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitModifyColumnSpecification
T visitModifyColumnSpecification(SQL92StatementParser.ModifyColumnSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.modifyColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropColumnSpecification
T visitDropColumnSpecification(SQL92StatementParser.DropColumnSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.dropColumnSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAddConstraintSpecification
T visitAddConstraintSpecification(SQL92StatementParser.AddConstraintSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.addConstraintSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropConstraintSpecification
T visitDropConstraintSpecification(SQL92StatementParser.DropConstraintSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.dropConstraintSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsert
T visitInsert(SQL92StatementParser.InsertContext ctx)
Visit a parse tree produced bySQL92StatementParser.insert().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertValuesClause
T visitInsertValuesClause(SQL92StatementParser.InsertValuesClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.insertValuesClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitInsertSelectClause
T visitInsertSelectClause(SQL92StatementParser.InsertSelectClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.insertSelectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUpdate
T visitUpdate(SQL92StatementParser.UpdateContext ctx)
Visit a parse tree produced bySQL92StatementParser.update().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignment
T visitAssignment(SQL92StatementParser.AssignmentContext ctx)
Visit a parse tree produced bySQL92StatementParser.assignment().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetAssignmentsClause
T visitSetAssignmentsClause(SQL92StatementParser.SetAssignmentsClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.setAssignmentsClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentValues
T visitAssignmentValues(SQL92StatementParser.AssignmentValuesContext ctx)
Visit a parse tree produced bySQL92StatementParser.assignmentValues().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAssignmentValue
T visitAssignmentValue(SQL92StatementParser.AssignmentValueContext ctx)
Visit a parse tree produced bySQL92StatementParser.assignmentValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBlobValue
T visitBlobValue(SQL92StatementParser.BlobValueContext ctx)
Visit a parse tree produced bySQL92StatementParser.blobValue().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDelete
T visitDelete(SQL92StatementParser.DeleteContext ctx)
Visit a parse tree produced bySQL92StatementParser.delete().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSingleTableClause
T visitSingleTableClause(SQL92StatementParser.SingleTableClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.singleTableClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelect
T visitSelect(SQL92StatementParser.SelectContext ctx)
Visit a parse tree produced bySQL92StatementParser.select().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCombineClause
T visitCombineClause(SQL92StatementParser.CombineClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.combineClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectClause
T visitSelectClause(SQL92StatementParser.SelectClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.selectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSelectSpecification
T visitSelectSpecification(SQL92StatementParser.SelectSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.selectSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDuplicateSpecification
T visitDuplicateSpecification(SQL92StatementParser.DuplicateSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.duplicateSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProjections
T visitProjections(SQL92StatementParser.ProjectionsContext ctx)
Visit a parse tree produced bySQL92StatementParser.projections().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitProjection
T visitProjection(SQL92StatementParser.ProjectionContext ctx)
Visit a parse tree produced bySQL92StatementParser.projection().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAlias
T visitAlias(SQL92StatementParser.AliasContext ctx)
Visit a parse tree produced bySQL92StatementParser.alias().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnqualifiedShorthand
T visitUnqualifiedShorthand(SQL92StatementParser.UnqualifiedShorthandContext ctx)
Visit a parse tree produced bySQL92StatementParser.unqualifiedShorthand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitQualifiedShorthand
T visitQualifiedShorthand(SQL92StatementParser.QualifiedShorthandContext ctx)
Visit a parse tree produced bySQL92StatementParser.qualifiedShorthand().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFromClause
T visitFromClause(SQL92StatementParser.FromClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.fromClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableReferences
T visitTableReferences(SQL92StatementParser.TableReferencesContext ctx)
Visit a parse tree produced bySQL92StatementParser.tableReferences().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitEscapedTableReference
T visitEscapedTableReference(SQL92StatementParser.EscapedTableReferenceContext ctx)
Visit a parse tree produced bySQL92StatementParser.escapedTableReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableReference
T visitTableReference(SQL92StatementParser.TableReferenceContext ctx)
Visit a parse tree produced bySQL92StatementParser.tableReference().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableFactor
T visitTableFactor(SQL92StatementParser.TableFactorContext ctx)
Visit a parse tree produced bySQL92StatementParser.tableFactor().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinedTable
T visitJoinedTable(SQL92StatementParser.JoinedTableContext ctx)
Visit a parse tree produced bySQL92StatementParser.joinedTable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitJoinSpecification
T visitJoinSpecification(SQL92StatementParser.JoinSpecificationContext ctx)
Visit a parse tree produced bySQL92StatementParser.joinSpecification().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitWhereClause
T visitWhereClause(SQL92StatementParser.WhereClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.whereClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGroupByClause
T visitGroupByClause(SQL92StatementParser.GroupByClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.groupByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHavingClause
T visitHavingClause(SQL92StatementParser.HavingClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.havingClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitClause
T visitLimitClause(SQL92StatementParser.LimitClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.limitClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitRowCount
T visitLimitRowCount(SQL92StatementParser.LimitRowCountContext ctx)
Visit a parse tree produced bySQL92StatementParser.limitRowCount().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLimitOffset
T visitLimitOffset(SQL92StatementParser.LimitOffsetContext ctx)
Visit a parse tree produced bySQL92StatementParser.limitOffset().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubquery
T visitSubquery(SQL92StatementParser.SubqueryContext ctx)
Visit a parse tree produced bySQL92StatementParser.subquery().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitParameterMarker
T visitParameterMarker(SQL92StatementParser.ParameterMarkerContext ctx)
Visit a parse tree produced bySQL92StatementParser.parameterMarker().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLiterals
T visitLiterals(SQL92StatementParser.LiteralsContext ctx)
Visit a parse tree produced bySQL92StatementParser.literals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitStringLiterals
T visitStringLiterals(SQL92StatementParser.StringLiteralsContext ctx)
Visit a parse tree produced bySQL92StatementParser.stringLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNumberLiterals
T visitNumberLiterals(SQL92StatementParser.NumberLiteralsContext ctx)
Visit a parse tree produced bySQL92StatementParser.numberLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDateTimeLiterals
T visitDateTimeLiterals(SQL92StatementParser.DateTimeLiteralsContext ctx)
Visit a parse tree produced bySQL92StatementParser.dateTimeLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitHexadecimalLiterals
T visitHexadecimalLiterals(SQL92StatementParser.HexadecimalLiteralsContext ctx)
Visit a parse tree produced bySQL92StatementParser.hexadecimalLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitValueLiterals
T visitBitValueLiterals(SQL92StatementParser.BitValueLiteralsContext ctx)
Visit a parse tree produced bySQL92StatementParser.bitValueLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanLiterals
T visitBooleanLiterals(SQL92StatementParser.BooleanLiteralsContext ctx)
Visit a parse tree produced bySQL92StatementParser.booleanLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNullValueLiterals
T visitNullValueLiterals(SQL92StatementParser.NullValueLiteralsContext ctx)
Visit a parse tree produced bySQL92StatementParser.nullValueLiterals().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIdentifier
T visitIdentifier(SQL92StatementParser.IdentifierContext ctx)
Visit a parse tree produced bySQL92StatementParser.identifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitUnreservedWord
T visitUnreservedWord(SQL92StatementParser.UnreservedWordContext ctx)
Visit a parse tree produced bySQL92StatementParser.unreservedWord().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitVariable
T visitVariable(SQL92StatementParser.VariableContext ctx)
Visit a parse tree produced bySQL92StatementParser.variable().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSchemaName
T visitSchemaName(SQL92StatementParser.SchemaNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.schemaName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableName
T visitTableName(SQL92StatementParser.TableNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.tableName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnName
T visitColumnName(SQL92StatementParser.ColumnNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.columnName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitViewName
T visitViewName(SQL92StatementParser.ViewNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.viewName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOwner
T visitOwner(SQL92StatementParser.OwnerContext ctx)
Visit a parse tree produced bySQL92StatementParser.owner().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitName
T visitName(SQL92StatementParser.NameContext ctx)
Visit a parse tree produced bySQL92StatementParser.name().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConstraintName
T visitConstraintName(SQL92StatementParser.ConstraintNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.constraintName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitColumnNames
T visitColumnNames(SQL92StatementParser.ColumnNamesContext ctx)
Visit a parse tree produced bySQL92StatementParser.columnNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTableNames
T visitTableNames(SQL92StatementParser.TableNamesContext ctx)
Visit a parse tree produced bySQL92StatementParser.tableNames().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterSetName
T visitCharacterSetName(SQL92StatementParser.CharacterSetNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.characterSetName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExpr
T visitExpr(SQL92StatementParser.ExprContext ctx)
Visit a parse tree produced bySQL92StatementParser.expr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAndOperator
T visitAndOperator(SQL92StatementParser.AndOperatorContext ctx)
Visit a parse tree produced bySQL92StatementParser.andOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrOperator
T visitOrOperator(SQL92StatementParser.OrOperatorContext ctx)
Visit a parse tree produced bySQL92StatementParser.orOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitNotOperator
T visitNotOperator(SQL92StatementParser.NotOperatorContext ctx)
Visit a parse tree produced bySQL92StatementParser.notOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBooleanPrimary
T visitBooleanPrimary(SQL92StatementParser.BooleanPrimaryContext ctx)
Visit a parse tree produced bySQL92StatementParser.booleanPrimary().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitComparisonOperator
T visitComparisonOperator(SQL92StatementParser.ComparisonOperatorContext ctx)
Visit a parse tree produced bySQL92StatementParser.comparisonOperator().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPredicate
T visitPredicate(SQL92StatementParser.PredicateContext ctx)
Visit a parse tree produced bySQL92StatementParser.predicate().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitBitExpr
T visitBitExpr(SQL92StatementParser.BitExprContext ctx)
Visit a parse tree produced bySQL92StatementParser.bitExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSimpleExpr
T visitSimpleExpr(SQL92StatementParser.SimpleExprContext ctx)
Visit a parse tree produced bySQL92StatementParser.simpleExpr().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitFunctionCall
T visitFunctionCall(SQL92StatementParser.FunctionCallContext ctx)
Visit a parse tree produced bySQL92StatementParser.functionCall().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregationFunction
T visitAggregationFunction(SQL92StatementParser.AggregationFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.aggregationFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitAggregationFunctionName
T visitAggregationFunctionName(SQL92StatementParser.AggregationFunctionNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.aggregationFunctionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDistinct
T visitDistinct(SQL92StatementParser.DistinctContext ctx)
Visit a parse tree produced bySQL92StatementParser.distinct().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSpecialFunction
T visitSpecialFunction(SQL92StatementParser.SpecialFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.specialFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCastFunction
T visitCastFunction(SQL92StatementParser.CastFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.castFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitConvertFunction
T visitConvertFunction(SQL92StatementParser.ConvertFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.convertFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPositionFunction
T visitPositionFunction(SQL92StatementParser.PositionFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.positionFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSubstringFunction
T visitSubstringFunction(SQL92StatementParser.SubstringFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.substringFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitExtractFunction
T visitExtractFunction(SQL92StatementParser.ExtractFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.extractFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitTrimFunction
T visitTrimFunction(SQL92StatementParser.TrimFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.trimFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularFunction
T visitRegularFunction(SQL92StatementParser.RegularFunctionContext ctx)
Visit a parse tree produced bySQL92StatementParser.regularFunction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRegularFunctionName
T visitRegularFunctionName(SQL92StatementParser.RegularFunctionNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.regularFunctionName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitMatchExpression
T visitMatchExpression(SQL92StatementParser.MatchExpressionContext ctx)
Visit a parse tree produced bySQL92StatementParser.matchExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseExpression
T visitCaseExpression(SQL92StatementParser.CaseExpressionContext ctx)
Visit a parse tree produced bySQL92StatementParser.caseExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseWhen
T visitCaseWhen(SQL92StatementParser.CaseWhenContext ctx)
Visit a parse tree produced bySQL92StatementParser.caseWhen().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCaseElse
T visitCaseElse(SQL92StatementParser.CaseElseContext ctx)
Visit a parse tree produced bySQL92StatementParser.caseElse().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalExpression
T visitIntervalExpression(SQL92StatementParser.IntervalExpressionContext ctx)
Visit a parse tree produced bySQL92StatementParser.intervalExpression().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIntervalUnit
T visitIntervalUnit(SQL92StatementParser.IntervalUnitContext ctx)
Visit a parse tree produced bySQL92StatementParser.intervalUnit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByClause
T visitOrderByClause(SQL92StatementParser.OrderByClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.orderByClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOrderByItem
T visitOrderByItem(SQL92StatementParser.OrderByItemContext ctx)
Visit a parse tree produced bySQL92StatementParser.orderByItem().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataType
T visitDataType(SQL92StatementParser.DataTypeContext ctx)
Visit a parse tree produced bySQL92StatementParser.dataType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeName
T visitDataTypeName(SQL92StatementParser.DataTypeNameContext ctx)
Visit a parse tree produced bySQL92StatementParser.dataTypeName().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDataTypeLength
T visitDataTypeLength(SQL92StatementParser.DataTypeLengthContext ctx)
Visit a parse tree produced bySQL92StatementParser.dataTypeLength().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCharacterSet
T visitCharacterSet(SQL92StatementParser.CharacterSetContext ctx)
Visit a parse tree produced bySQL92StatementParser.characterSet().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCollateClause
T visitCollateClause(SQL92StatementParser.CollateClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.collateClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitIgnoredIdentifier
T visitIgnoredIdentifier(SQL92StatementParser.IgnoredIdentifierContext ctx)
Visit a parse tree produced bySQL92StatementParser.ignoredIdentifier().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitDropBehaviour
T visitDropBehaviour(SQL92StatementParser.DropBehaviourContext ctx)
Visit a parse tree produced bySQL92StatementParser.dropBehaviour().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitSetTransaction
T visitSetTransaction(SQL92StatementParser.SetTransactionContext ctx)
Visit a parse tree produced bySQL92StatementParser.setTransaction().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitCommit
T visitCommit(SQL92StatementParser.CommitContext ctx)
Visit a parse tree produced bySQL92StatementParser.commit().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRollback
T visitRollback(SQL92StatementParser.RollbackContext ctx)
Visit a parse tree produced bySQL92StatementParser.rollback().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitLevelOfIsolation
T visitLevelOfIsolation(SQL92StatementParser.LevelOfIsolationContext ctx)
Visit a parse tree produced bySQL92StatementParser.levelOfIsolation().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrant
T visitGrant(SQL92StatementParser.GrantContext ctx)
Visit a parse tree produced bySQL92StatementParser.grant().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitRevoke
T visitRevoke(SQL92StatementParser.RevokeContext ctx)
Visit a parse tree produced bySQL92StatementParser.revoke().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeClause
T visitPrivilegeClause(SQL92StatementParser.PrivilegeClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.privilegeClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivileges
T visitPrivileges(SQL92StatementParser.PrivilegesContext ctx)
Visit a parse tree produced bySQL92StatementParser.privileges().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeType
T visitPrivilegeType(SQL92StatementParser.PrivilegeTypeContext ctx)
Visit a parse tree produced bySQL92StatementParser.privilegeType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitGrantee
T visitGrantee(SQL92StatementParser.GranteeContext ctx)
Visit a parse tree produced bySQL92StatementParser.grantee().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitOnObjectClause
T visitOnObjectClause(SQL92StatementParser.OnObjectClauseContext ctx)
Visit a parse tree produced bySQL92StatementParser.onObjectClause().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitObjectType
T visitObjectType(SQL92StatementParser.ObjectTypeContext ctx)
Visit a parse tree produced bySQL92StatementParser.objectType().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
visitPrivilegeLevel
T visitPrivilegeLevel(SQL92StatementParser.PrivilegeLevelContext ctx)
Visit a parse tree produced bySQL92StatementParser.privilegeLevel().- Parameters:
ctx- the parse tree- Returns:
- the visitor result
-
-