T - The return type of the visit operation. Use Void for
operations with no return type.public class SQL92StatementBaseVisitor<T> extends org.antlr.v4.runtime.tree.AbstractParseTreeVisitor<T> implements SQL92StatementVisitor<T>
SQL92StatementVisitor,
which can be extended to create a visitor which only needs to handle a subset
of the available methods.| Constructor and Description |
|---|
SQL92StatementBaseVisitor() |
aggregateResult, defaultResult, shouldVisitNextChild, visit, visitChildren, visitErrorNode, visitTerminalpublic T visitExecute(SQL92StatementParser.ExecuteContext ctx)
SQL92StatementParser.execute().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitExecute in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitInsert(SQL92StatementParser.InsertContext ctx)
SQL92StatementParser.insert().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitInsert in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitInsertValuesClause(SQL92StatementParser.InsertValuesClauseContext ctx)
SQL92StatementParser.insertValuesClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitInsertValuesClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitInsertSelectClause(SQL92StatementParser.InsertSelectClauseContext ctx)
SQL92StatementParser.insertSelectClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitInsertSelectClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitUpdate(SQL92StatementParser.UpdateContext ctx)
SQL92StatementParser.update().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitUpdate in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAssignment(SQL92StatementParser.AssignmentContext ctx)
SQL92StatementParser.assignment().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAssignment in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSetAssignmentsClause(SQL92StatementParser.SetAssignmentsClauseContext ctx)
SQL92StatementParser.setAssignmentsClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSetAssignmentsClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAssignmentValues(SQL92StatementParser.AssignmentValuesContext ctx)
SQL92StatementParser.assignmentValues().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAssignmentValues in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAssignmentValue(SQL92StatementParser.AssignmentValueContext ctx)
SQL92StatementParser.assignmentValue().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAssignmentValue in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitBlobValue(SQL92StatementParser.BlobValueContext ctx)
SQL92StatementParser.blobValue().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitBlobValue in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDelete(SQL92StatementParser.DeleteContext ctx)
SQL92StatementParser.delete().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDelete in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSingleTableClause(SQL92StatementParser.SingleTableClauseContext ctx)
SQL92StatementParser.singleTableClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSingleTableClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSelect(SQL92StatementParser.SelectContext ctx)
SQL92StatementParser.select().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSelect in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitUnionClause(SQL92StatementParser.UnionClauseContext ctx)
SQL92StatementParser.unionClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitUnionClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSelectClause(SQL92StatementParser.SelectClauseContext ctx)
SQL92StatementParser.selectClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSelectClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSelectSpecification(SQL92StatementParser.SelectSpecificationContext ctx)
SQL92StatementParser.selectSpecification().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSelectSpecification in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDuplicateSpecification(SQL92StatementParser.DuplicateSpecificationContext ctx)
SQL92StatementParser.duplicateSpecification().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDuplicateSpecification in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitProjections(SQL92StatementParser.ProjectionsContext ctx)
SQL92StatementParser.projections().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitProjections in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitProjection(SQL92StatementParser.ProjectionContext ctx)
SQL92StatementParser.projection().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitProjection in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAlias(SQL92StatementParser.AliasContext ctx)
SQL92StatementParser.alias().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAlias in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitUnqualifiedShorthand(SQL92StatementParser.UnqualifiedShorthandContext ctx)
SQL92StatementParser.unqualifiedShorthand().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitUnqualifiedShorthand in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitQualifiedShorthand(SQL92StatementParser.QualifiedShorthandContext ctx)
SQL92StatementParser.qualifiedShorthand().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitQualifiedShorthand in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitFromClause(SQL92StatementParser.FromClauseContext ctx)
SQL92StatementParser.fromClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFromClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitTableReferences(SQL92StatementParser.TableReferencesContext ctx)
SQL92StatementParser.tableReferences().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTableReferences in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitEscapedTableReference(SQL92StatementParser.EscapedTableReferenceContext ctx)
SQL92StatementParser.escapedTableReference().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitEscapedTableReference in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitTableReference(SQL92StatementParser.TableReferenceContext ctx)
SQL92StatementParser.tableReference().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTableReference in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitTableFactor(SQL92StatementParser.TableFactorContext ctx)
SQL92StatementParser.tableFactor().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTableFactor in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitJoinedTable(SQL92StatementParser.JoinedTableContext ctx)
SQL92StatementParser.joinedTable().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitJoinedTable in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitJoinSpecification(SQL92StatementParser.JoinSpecificationContext ctx)
SQL92StatementParser.joinSpecification().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitJoinSpecification in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitWhereClause(SQL92StatementParser.WhereClauseContext ctx)
SQL92StatementParser.whereClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitWhereClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitGroupByClause(SQL92StatementParser.GroupByClauseContext ctx)
SQL92StatementParser.groupByClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitGroupByClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitHavingClause(SQL92StatementParser.HavingClauseContext ctx)
SQL92StatementParser.havingClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitHavingClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitLimitClause(SQL92StatementParser.LimitClauseContext ctx)
SQL92StatementParser.limitClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLimitClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitLimitRowCount(SQL92StatementParser.LimitRowCountContext ctx)
SQL92StatementParser.limitRowCount().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLimitRowCount in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitLimitOffset(SQL92StatementParser.LimitOffsetContext ctx)
SQL92StatementParser.limitOffset().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLimitOffset in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSubquery(SQL92StatementParser.SubqueryContext ctx)
SQL92StatementParser.subquery().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSubquery in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitParameterMarker(SQL92StatementParser.ParameterMarkerContext ctx)
SQL92StatementParser.parameterMarker().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitParameterMarker in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitLiterals(SQL92StatementParser.LiteralsContext ctx)
SQL92StatementParser.literals().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLiterals in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitStringLiterals(SQL92StatementParser.StringLiteralsContext ctx)
SQL92StatementParser.stringLiterals().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitStringLiterals in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitNumberLiterals(SQL92StatementParser.NumberLiteralsContext ctx)
SQL92StatementParser.numberLiterals().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitNumberLiterals in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDateTimeLiterals(SQL92StatementParser.DateTimeLiteralsContext ctx)
SQL92StatementParser.dateTimeLiterals().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDateTimeLiterals in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitHexadecimalLiterals(SQL92StatementParser.HexadecimalLiteralsContext ctx)
SQL92StatementParser.hexadecimalLiterals().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitHexadecimalLiterals in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitBitValueLiterals(SQL92StatementParser.BitValueLiteralsContext ctx)
SQL92StatementParser.bitValueLiterals().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitBitValueLiterals in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitBooleanLiterals(SQL92StatementParser.BooleanLiteralsContext ctx)
SQL92StatementParser.booleanLiterals().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitBooleanLiterals in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitNullValueLiterals(SQL92StatementParser.NullValueLiteralsContext ctx)
SQL92StatementParser.nullValueLiterals().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitNullValueLiterals in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitIdentifier(SQL92StatementParser.IdentifierContext ctx)
SQL92StatementParser.identifier().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIdentifier in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitUnreservedWord(SQL92StatementParser.UnreservedWordContext ctx)
SQL92StatementParser.unreservedWord().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitUnreservedWord in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitVariable(SQL92StatementParser.VariableContext ctx)
SQL92StatementParser.variable().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitVariable in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSchemaName(SQL92StatementParser.SchemaNameContext ctx)
SQL92StatementParser.schemaName().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSchemaName in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitTableName(SQL92StatementParser.TableNameContext ctx)
SQL92StatementParser.tableName().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTableName in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitColumnName(SQL92StatementParser.ColumnNameContext ctx)
SQL92StatementParser.columnName().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitColumnName in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitViewName(SQL92StatementParser.ViewNameContext ctx)
SQL92StatementParser.viewName().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitViewName in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitOwner(SQL92StatementParser.OwnerContext ctx)
SQL92StatementParser.owner().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitOwner in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitName(SQL92StatementParser.NameContext ctx)
SQL92StatementParser.name().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitName in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitColumnNames(SQL92StatementParser.ColumnNamesContext ctx)
SQL92StatementParser.columnNames().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitColumnNames in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitTableNames(SQL92StatementParser.TableNamesContext ctx)
SQL92StatementParser.tableNames().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTableNames in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCharacterSetName_(SQL92StatementParser.CharacterSetName_Context ctx)
SQL92StatementParser.characterSetName_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCharacterSetName_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitExpr(SQL92StatementParser.ExprContext ctx)
SQL92StatementParser.expr().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitExpr in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitLogicalOperator(SQL92StatementParser.LogicalOperatorContext ctx)
SQL92StatementParser.logicalOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLogicalOperator in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitNotOperator_(SQL92StatementParser.NotOperator_Context ctx)
SQL92StatementParser.notOperator_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitNotOperator_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitBooleanPrimary(SQL92StatementParser.BooleanPrimaryContext ctx)
SQL92StatementParser.booleanPrimary().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitBooleanPrimary in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitComparisonOperator(SQL92StatementParser.ComparisonOperatorContext ctx)
SQL92StatementParser.comparisonOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitComparisonOperator in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitPredicate(SQL92StatementParser.PredicateContext ctx)
SQL92StatementParser.predicate().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPredicate in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitBitExpr(SQL92StatementParser.BitExprContext ctx)
SQL92StatementParser.bitExpr().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitBitExpr in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSimpleExpr(SQL92StatementParser.SimpleExprContext ctx)
SQL92StatementParser.simpleExpr().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSimpleExpr in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitFunctionCall(SQL92StatementParser.FunctionCallContext ctx)
SQL92StatementParser.functionCall().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitFunctionCall in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAggregationFunction(SQL92StatementParser.AggregationFunctionContext ctx)
SQL92StatementParser.aggregationFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAggregationFunction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAggregationFunctionName(SQL92StatementParser.AggregationFunctionNameContext ctx)
SQL92StatementParser.aggregationFunctionName().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAggregationFunctionName in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDistinct(SQL92StatementParser.DistinctContext ctx)
SQL92StatementParser.distinct().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDistinct in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSpecialFunction(SQL92StatementParser.SpecialFunctionContext ctx)
SQL92StatementParser.specialFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSpecialFunction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCastFunction(SQL92StatementParser.CastFunctionContext ctx)
SQL92StatementParser.castFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCastFunction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitConvertFunction(SQL92StatementParser.ConvertFunctionContext ctx)
SQL92StatementParser.convertFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitConvertFunction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitPositionFunction(SQL92StatementParser.PositionFunctionContext ctx)
SQL92StatementParser.positionFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPositionFunction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSubstringFunction(SQL92StatementParser.SubstringFunctionContext ctx)
SQL92StatementParser.substringFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSubstringFunction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitExtractFunction(SQL92StatementParser.ExtractFunctionContext ctx)
SQL92StatementParser.extractFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitExtractFunction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitTrimFunction_(SQL92StatementParser.TrimFunction_Context ctx)
SQL92StatementParser.trimFunction_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitTrimFunction_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitRegularFunction(SQL92StatementParser.RegularFunctionContext ctx)
SQL92StatementParser.regularFunction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitRegularFunction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitRegularFunctionName_(SQL92StatementParser.RegularFunctionName_Context ctx)
SQL92StatementParser.regularFunctionName_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitRegularFunctionName_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitMatchExpression_(SQL92StatementParser.MatchExpression_Context ctx)
SQL92StatementParser.matchExpression_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitMatchExpression_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCaseExpression(SQL92StatementParser.CaseExpressionContext ctx)
SQL92StatementParser.caseExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCaseExpression in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCaseWhen_(SQL92StatementParser.CaseWhen_Context ctx)
SQL92StatementParser.caseWhen_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCaseWhen_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCaseElse_(SQL92StatementParser.CaseElse_Context ctx)
SQL92StatementParser.caseElse_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCaseElse_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitIntervalExpression(SQL92StatementParser.IntervalExpressionContext ctx)
SQL92StatementParser.intervalExpression().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIntervalExpression in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitIntervalUnit_(SQL92StatementParser.IntervalUnit_Context ctx)
SQL92StatementParser.intervalUnit_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIntervalUnit_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitOrderByClause(SQL92StatementParser.OrderByClauseContext ctx)
SQL92StatementParser.orderByClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitOrderByClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitOrderByItem(SQL92StatementParser.OrderByItemContext ctx)
SQL92StatementParser.orderByItem().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitOrderByItem in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDataType(SQL92StatementParser.DataTypeContext ctx)
SQL92StatementParser.dataType().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDataType in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDataTypeName(SQL92StatementParser.DataTypeNameContext ctx)
SQL92StatementParser.dataTypeName().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDataTypeName in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDataTypeLength(SQL92StatementParser.DataTypeLengthContext ctx)
SQL92StatementParser.dataTypeLength().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDataTypeLength in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCharacterSet_(SQL92StatementParser.CharacterSet_Context ctx)
SQL92StatementParser.characterSet_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCharacterSet_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCollateClause_(SQL92StatementParser.CollateClause_Context ctx)
SQL92StatementParser.collateClause_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCollateClause_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitIgnoredIdentifier_(SQL92StatementParser.IgnoredIdentifier_Context ctx)
SQL92StatementParser.ignoredIdentifier_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitIgnoredIdentifier_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDropBehaviour_(SQL92StatementParser.DropBehaviour_Context ctx)
SQL92StatementParser.dropBehaviour_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDropBehaviour_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCreateTable(SQL92StatementParser.CreateTableContext ctx)
SQL92StatementParser.createTable().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCreateTable in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAlterTable(SQL92StatementParser.AlterTableContext ctx)
SQL92StatementParser.alterTable().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAlterTable in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDropTable(SQL92StatementParser.DropTableContext ctx)
SQL92StatementParser.dropTable().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDropTable in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCreateDatabase(SQL92StatementParser.CreateDatabaseContext ctx)
SQL92StatementParser.createDatabase().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCreateDatabase in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDropDatabase(SQL92StatementParser.DropDatabaseContext ctx)
SQL92StatementParser.dropDatabase().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDropDatabase in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCreateView(SQL92StatementParser.CreateViewContext ctx)
SQL92StatementParser.createView().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCreateView in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDropView(SQL92StatementParser.DropViewContext ctx)
SQL92StatementParser.dropView().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDropView in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCreateTableSpecification_(SQL92StatementParser.CreateTableSpecification_Context ctx)
SQL92StatementParser.createTableSpecification_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCreateTableSpecification_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCreateDefinitionClause(SQL92StatementParser.CreateDefinitionClauseContext ctx)
SQL92StatementParser.createDefinitionClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCreateDefinitionClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCreateDatabaseSpecification_(SQL92StatementParser.CreateDatabaseSpecification_Context ctx)
SQL92StatementParser.createDatabaseSpecification_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCreateDatabaseSpecification_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCreateDefinition(SQL92StatementParser.CreateDefinitionContext ctx)
SQL92StatementParser.createDefinition().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCreateDefinition in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitColumnDefinition(SQL92StatementParser.ColumnDefinitionContext ctx)
SQL92StatementParser.columnDefinition().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitColumnDefinition in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDataTypeOption(SQL92StatementParser.DataTypeOptionContext ctx)
SQL92StatementParser.dataTypeOption().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDataTypeOption in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCheckConstraintDefinition_(SQL92StatementParser.CheckConstraintDefinition_Context ctx)
SQL92StatementParser.checkConstraintDefinition_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCheckConstraintDefinition_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitReferenceDefinition(SQL92StatementParser.ReferenceDefinitionContext ctx)
SQL92StatementParser.referenceDefinition().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitReferenceDefinition in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitReferenceOption_(SQL92StatementParser.ReferenceOption_Context ctx)
SQL92StatementParser.referenceOption_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitReferenceOption_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitKeyParts_(SQL92StatementParser.KeyParts_Context ctx)
SQL92StatementParser.keyParts_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitKeyParts_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitKeyPart_(SQL92StatementParser.KeyPart_Context ctx)
SQL92StatementParser.keyPart_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitKeyPart_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitConstraintDefinition(SQL92StatementParser.ConstraintDefinitionContext ctx)
SQL92StatementParser.constraintDefinition().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitConstraintDefinition in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitPrimaryKeyOption(SQL92StatementParser.PrimaryKeyOptionContext ctx)
SQL92StatementParser.primaryKeyOption().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrimaryKeyOption in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitPrimaryKey(SQL92StatementParser.PrimaryKeyContext ctx)
SQL92StatementParser.primaryKey().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrimaryKey in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitUniqueOption_(SQL92StatementParser.UniqueOption_Context ctx)
SQL92StatementParser.uniqueOption_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitUniqueOption_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitForeignKeyOption(SQL92StatementParser.ForeignKeyOptionContext ctx)
SQL92StatementParser.foreignKeyOption().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitForeignKeyOption in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCreateLikeClause_(SQL92StatementParser.CreateLikeClause_Context ctx)
SQL92StatementParser.createLikeClause_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCreateLikeClause_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAlterDefinitionClause(SQL92StatementParser.AlterDefinitionClauseContext ctx)
SQL92StatementParser.alterDefinitionClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAlterDefinitionClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAddColumnSpecification(SQL92StatementParser.AddColumnSpecificationContext ctx)
SQL92StatementParser.addColumnSpecification().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAddColumnSpecification in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitModifyColumnSpecification(SQL92StatementParser.ModifyColumnSpecificationContext ctx)
SQL92StatementParser.modifyColumnSpecification().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitModifyColumnSpecification in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDropColumnSpecification(SQL92StatementParser.DropColumnSpecificationContext ctx)
SQL92StatementParser.dropColumnSpecification().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDropColumnSpecification in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitAddConstraintSpecification(SQL92StatementParser.AddConstraintSpecificationContext ctx)
SQL92StatementParser.addConstraintSpecification().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAddConstraintSpecification in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitDropConstraintSpecification(SQL92StatementParser.DropConstraintSpecificationContext ctx)
SQL92StatementParser.dropConstraintSpecification().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitDropConstraintSpecification in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitSetTransaction(SQL92StatementParser.SetTransactionContext ctx)
SQL92StatementParser.setTransaction().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitSetTransaction in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitCommit(SQL92StatementParser.CommitContext ctx)
SQL92StatementParser.commit().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCommit in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitRollback(SQL92StatementParser.RollbackContext ctx)
SQL92StatementParser.rollback().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitRollback in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitLevelOfIsolation_(SQL92StatementParser.LevelOfIsolation_Context ctx)
SQL92StatementParser.levelOfIsolation_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitLevelOfIsolation_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitGrant(SQL92StatementParser.GrantContext ctx)
SQL92StatementParser.grant().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitGrant in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitRevoke(SQL92StatementParser.RevokeContext ctx)
SQL92StatementParser.revoke().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitRevoke in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitPrivilegeClause(SQL92StatementParser.PrivilegeClauseContext ctx)
SQL92StatementParser.privilegeClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrivilegeClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitPrivileges_(SQL92StatementParser.Privileges_Context ctx)
SQL92StatementParser.privileges_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrivileges_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitPrivilegeType_(SQL92StatementParser.PrivilegeType_Context ctx)
SQL92StatementParser.privilegeType_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrivilegeType_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitGrantee_(SQL92StatementParser.Grantee_Context ctx)
SQL92StatementParser.grantee_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitGrantee_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitOnObjectClause(SQL92StatementParser.OnObjectClauseContext ctx)
SQL92StatementParser.onObjectClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitOnObjectClause in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitObjectType_(SQL92StatementParser.ObjectType_Context ctx)
SQL92StatementParser.objectType_().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitObjectType_ in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitPrivilegeLevel(SQL92StatementParser.PrivilegeLevelContext ctx)
SQL92StatementParser.privilegeLevel().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitPrivilegeLevel in interface SQL92StatementVisitor<T>ctx - the parse treeCopyright © 2020 The Apache Software Foundation. All rights reserved.