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 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.CreateTableSpecificationContext 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.CheckConstraintDefinitionContext 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.ReferenceOptionContext 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.KeyPartsContext 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.KeyPartContext 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.UniqueOptionContext 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.CreateLikeClauseContext 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 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 visitCombineClause(SQL92StatementParser.CombineClauseContext ctx)
SQL92StatementParser.combineClause().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitCombineClause 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 visitConstraintName(SQL92StatementParser.ConstraintNameContext ctx)
SQL92StatementParser.constraintName().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitConstraintName 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.CharacterSetNameContext 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 visitAndOperator(SQL92StatementParser.AndOperatorContext ctx)
SQL92StatementParser.andOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitAndOperator in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitOrOperator(SQL92StatementParser.OrOperatorContext ctx)
SQL92StatementParser.orOperator().
The default implementation returns the result of calling
AbstractParseTreeVisitor.visitChildren(org.antlr.v4.runtime.tree.RuleNode) on ctx.
visitOrOperator in interface SQL92StatementVisitor<T>ctx - the parse treepublic T visitNotOperator(SQL92StatementParser.NotOperatorContext 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.TrimFunctionContext 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.RegularFunctionNameContext 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.MatchExpressionContext 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.CaseWhenContext 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.CaseElseContext 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.IntervalUnitContext 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.CharacterSetContext 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.CollateClauseContext 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.IgnoredIdentifierContext 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.DropBehaviourContext 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 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.LevelOfIsolationContext 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.PrivilegesContext 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.PrivilegeTypeContext 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.GranteeContext 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.ObjectTypeContext 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 © 2023 The Apache Software Foundation. All rights reserved.