Packages

c

org.apache.spark.sql.catalyst.parser

DataTypeAstBuilder

class DataTypeAstBuilder extends SqlBaseParserBaseVisitor[AnyRef] with DataTypeErrorsBase

AST builder for parsing data type definitions and table schemas.

This is a client-side parser designed specifically for parsing data type strings (e.g., "INT", "STRUCT<name:STRING, age:INT>") and table schemas. It assumes that the input does not contain parameter markers (:name or ?), as parameter substitution should occur before data types are parsed.

Key characteristics:

  • **Client-side parser**: Used for parsing data type strings provided by users or stored in catalogs, not for parsing full SQL statements.
  • **No parameter markers**: This parser explicitly rejects parameter markers in data type contexts by throwing UNEXPECTED_USE_OF_PARAMETER_MARKER errors.
  • **No string literal coalescing**: This base class does not coalesce consecutive string literals. Coalescing is handled by AstBuilder where SQL configuration is available to determine the correct escape processing mode.

Examples of valid inputs:

  • Simple types: INT, STRING, DOUBLE
  • Parameterized types: DECIMAL(10,2), VARCHAR(100), CHAR(5)
  • Complex types: ARRAY<INT>, MAP<STRING, INT>, STRUCT<name:STRING, age:INT>
  • Table schemas: id INT, name STRING, created_at TIMESTAMP

This class extends SqlBaseParserBaseVisitor and provides visitor methods for the grammar rules related to data types.

See also

org.apache.spark.sql.catalyst.parser.AstBuilder for the full SQL statement parser

CRITICAL: Extracting Identifier Names

When extracting identifier names from parser contexts, you MUST use the helper methods provided by this class instead of calling ctx.getText() directly:

  • getIdentifierText(ctx): For single identifiers (column names, aliases, window names)
  • getIdentifierParts(ctx): For qualified identifiers (table names, schema.table) DO NOT use ctx.getText() or ctx.identifier.getText() directly! These methods do not handle the IDENTIFIER('literal') syntax and will cause incorrect behavior. The IDENTIFIER('literal') syntax allows string literals to be used as identifiers at parse time (e.g., IDENTIFIER('my_col') resolves to the identifier my_col). If you use getText(), you'll get the raw text "IDENTIFIER('my_col')" instead of "my_col", breaking the feature. Example:
// WRONG - does not handle IDENTIFIER('literal'):
val name = ctx.identifier.getText
SubqueryAlias(ctx.name.getText, plan)

// CORRECT - handles both regular identifiers and IDENTIFIER('literal'):
val name = getIdentifierText(ctx.identifier)
SubqueryAlias(getIdentifierText(ctx.name), plan)
Linear Supertypes
DataTypeErrorsBase, SqlBaseParserBaseVisitor[AnyRef], SqlBaseParserVisitor[AnyRef], AbstractParseTreeVisitor[AnyRef], ParseTreeVisitor[AnyRef], AnyRef, Any
Ordering
  1. Alphabetic
  2. By Inheritance
Inherited
  1. DataTypeAstBuilder
  2. DataTypeErrorsBase
  3. SqlBaseParserBaseVisitor
  4. SqlBaseParserVisitor
  5. AbstractParseTreeVisitor
  6. ParseTreeVisitor
  7. AnyRef
  8. Any
  1. Hide All
  2. Show All
Visibility
  1. Public
  2. Protected

Instance Constructors

  1. new DataTypeAstBuilder()

Value Members

  1. final def !=(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  2. final def ##: Int
    Definition Classes
    AnyRef → Any
  3. final def ==(arg0: Any): Boolean
    Definition Classes
    AnyRef → Any
  4. def aggregateResult(arg0: AnyRef, arg1: AnyRef): AnyRef
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  5. final def asInstanceOf[T0]: T0
    Definition Classes
    Any
  6. def clone(): AnyRef
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
  7. def createSchema(ctx: ColTypeListContext): StructType

    Create top level table schema.

    Create top level table schema.

    Attributes
    protected
  8. def createStructType(ctx: ComplexColTypeListContext): StructType

    Create a StructType from a sequence of StructFields.

    Create a StructType from a sequence of StructFields.

    Attributes
    protected
  9. def defaultResult(): AnyRef
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  10. final def eq(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  11. def equals(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef → Any
  12. def extractIdentifierParts(ctx: ParserRuleContext): Seq[String]

    Public helper to extract identifier parts from a context.

    Public helper to extract identifier parts from a context. This is exposed as public to allow utility classes like ParserUtils to reuse the identifier resolution logic without duplicating code.

    ctx

    The parser context containing the identifier.

    returns

    Sequence of identifier parts.

  13. final def getClass(): Class[_ <: AnyRef]
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  14. def getIdentifierParts(ctx: ParserRuleContext): Seq[String]

    Get the identifier parts from a context, handling both regular identifiers and IDENTIFIER('literal').

    Get the identifier parts from a context, handling both regular identifiers and IDENTIFIER('literal'). This method is used to support identifier-lite syntax where IDENTIFIER('string') is folded at parse time. For qualified identifiers like IDENTIFIER('catalog.schema'), this will parse the string and return multiple parts.

    Subclasses should override this method to provide actual parsing logic.

    Attributes
    protected
  15. def getIdentifierText(ctx: ParserRuleContext): String

    Get the text of a SINGLE identifier, handling both regular identifiers and IDENTIFIER('literal').

    Get the text of a SINGLE identifier, handling both regular identifiers and IDENTIFIER('literal'). This method REQUIRES that the identifier be unqualified (single part only). If IDENTIFIER('qualified.name') is used where a single identifier is required, this will error.

    Attributes
    protected
  16. def getIntegerValue(ctx: IntegerValueContext): Int

    Gets the integer value from an IntegerValueContext after parameter replacement.

    Gets the integer value from an IntegerValueContext after parameter replacement. Asserts that parameter markers have been substituted before reaching DataTypeAstBuilder.

    ctx

    The IntegerValueContext to extract the integer from

    returns

    The integer value

    Attributes
    protected
  17. def getQueryContext(context: QueryContext): Array[QueryContext]
    Definition Classes
    DataTypeErrorsBase
  18. def getSummary(sqlContext: QueryContext): String
    Definition Classes
    DataTypeErrorsBase
  19. def hashCode(): Int
    Definition Classes
    AnyRef → Any
    Annotations
    @IntrinsicCandidate() @native()
  20. final def isInstanceOf[T0]: Boolean
    Definition Classes
    Any
  21. final def ne(arg0: AnyRef): Boolean
    Definition Classes
    AnyRef
  22. final def notify(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  23. final def notifyAll(): Unit
    Definition Classes
    AnyRef
    Annotations
    @IntrinsicCandidate() @native()
  24. def parseMultipartIdentifier(identifier: String): Seq[String]

    Parse a string into a multi-part identifier.

    Parse a string into a multi-part identifier. Subclasses should override this method to provide proper multi-part identifier parsing with access to a full SQL parser.

    For example, in AstBuilder, this would parse "catalog.schema.table" into Seq("catalog", "schema", "table").

    This method is only called when parsing IDENTIFIER('literal') where the literal contains a qualified identifier (e.g., IDENTIFIER('schema.table')). Since DataTypeAstBuilder only parses data types (not full SQL with qualified table names), this should never be called in practice. The base implementation throws an error to catch unexpected usage.

    identifier

    The identifier string to parse, potentially containing dots and backticks.

    returns

    Sequence of identifier parts.

    Attributes
    protected
  25. def quoteByDefault(elem: String): String
    Attributes
    protected[sql]
    Definition Classes
    DataTypeErrorsBase
  26. def shouldVisitNextChild(arg0: RuleNode, arg1: AnyRef): Boolean
    Attributes
    protected[tree]
    Definition Classes
    AbstractParseTreeVisitor
  27. final def synchronized[T0](arg0: => T0): T0
    Definition Classes
    AnyRef
  28. def toDSOption(option: String): String
    Definition Classes
    DataTypeErrorsBase
  29. def toSQLConf(conf: String): String
    Definition Classes
    DataTypeErrorsBase
  30. def toSQLId(parts: Seq[String]): String
    Definition Classes
    DataTypeErrorsBase
  31. def toSQLId(parts: String): String
    Definition Classes
    DataTypeErrorsBase
  32. def toSQLStmt(text: String): String
    Definition Classes
    DataTypeErrorsBase
  33. def toSQLType(t: AbstractDataType): String
    Definition Classes
    DataTypeErrorsBase
  34. def toSQLType(text: String): String
    Definition Classes
    DataTypeErrorsBase
  35. def toSQLValue(value: Double): String
    Definition Classes
    DataTypeErrorsBase
  36. def toSQLValue(value: Float): String
    Definition Classes
    DataTypeErrorsBase
  37. def toSQLValue(value: Long): String
    Definition Classes
    DataTypeErrorsBase
  38. def toSQLValue(value: Int): String
    Definition Classes
    DataTypeErrorsBase
  39. def toSQLValue(value: Short): String
    Definition Classes
    DataTypeErrorsBase
  40. def toSQLValue(value: UTF8String): String
    Definition Classes
    DataTypeErrorsBase
  41. def toSQLValue(value: String): String
    Definition Classes
    DataTypeErrorsBase
  42. def toString(): String
    Definition Classes
    AnyRef → Any
  43. def typedVisit[T](ctx: ParseTree): T
    Attributes
    protected
  44. def visit(arg0: ParseTree): AnyRef
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  45. def visitAddTableColumns(ctx: AddTableColumnsContext): AnyRef

    Visit a parse tree produced by the addTableColumns labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the addTableColumns labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  46. def visitAddTableConstraint(ctx: AddTableConstraintContext): AnyRef

    Visit a parse tree produced by the addTableConstraint labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the addTableConstraint labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  47. def visitAddTablePartition(ctx: AddTablePartitionContext): AnyRef

    Visit a parse tree produced by the addTablePartition labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the addTablePartition labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  48. def visitAggregationClause(ctx: AggregationClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#aggregationClause.

    Visit a parse tree produced by SqlBaseParser#aggregationClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  49. def visitAliasedQuery(ctx: AliasedQueryContext): AnyRef

    Visit a parse tree produced by the aliasedQuery labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the aliasedQuery labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  50. def visitAliasedRelation(ctx: AliasedRelationContext): AnyRef

    Visit a parse tree produced by the aliasedRelation labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the aliasedRelation labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  51. def visitAlterClusterBy(ctx: AlterClusterByContext): AnyRef

    Visit a parse tree produced by the alterClusterBy labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the alterClusterBy labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  52. def visitAlterColumnAction(ctx: AlterColumnActionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#alterColumnAction.

    Visit a parse tree produced by SqlBaseParser#alterColumnAction.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  53. def visitAlterColumnSpec(ctx: AlterColumnSpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#alterColumnSpec.

    Visit a parse tree produced by SqlBaseParser#alterColumnSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  54. def visitAlterColumnSpecList(ctx: AlterColumnSpecListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#alterColumnSpecList.

    Visit a parse tree produced by SqlBaseParser#alterColumnSpecList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  55. def visitAlterTableAlterColumn(ctx: AlterTableAlterColumnContext): AnyRef

    Visit a parse tree produced by the alterTableAlterColumn labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the alterTableAlterColumn labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  56. def visitAlterTableCollation(ctx: AlterTableCollationContext): AnyRef

    Visit a parse tree produced by the alterTableCollation labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the alterTableCollation labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  57. def visitAlterViewQuery(ctx: AlterViewQueryContext): AnyRef

    Visit a parse tree produced by the alterViewQuery labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the alterViewQuery labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  58. def visitAlterViewSchemaBinding(ctx: AlterViewSchemaBindingContext): AnyRef

    Visit a parse tree produced by the alterViewSchemaBinding labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the alterViewSchemaBinding labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  59. def visitAnalyze(ctx: AnalyzeContext): AnyRef

    Visit a parse tree produced by the analyze labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the analyze labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  60. def visitAnalyzeTables(ctx: AnalyzeTablesContext): AnyRef

    Visit a parse tree produced by the analyzeTables labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the analyzeTables labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  61. def visitAnsiNonReserved(ctx: AnsiNonReservedContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#ansiNonReserved.

    Visit a parse tree produced by SqlBaseParser#ansiNonReserved.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  62. def visitAny_value(ctx: Any_valueContext): AnyRef

    Visit a parse tree produced by the any_value labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the any_value labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  63. def visitApplyTransform(ctx: ApplyTransformContext): AnyRef

    Visit a parse tree produced by the applyTransform labeled alternative in SqlBaseParser#transform.

    Visit a parse tree produced by the applyTransform labeled alternative in SqlBaseParser#transform.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  64. def visitArithmeticBinary(ctx: ArithmeticBinaryContext): AnyRef

    Visit a parse tree produced by the arithmeticBinary labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the arithmeticBinary labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  65. def visitArithmeticOperator(ctx: ArithmeticOperatorContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#arithmeticOperator.

    Visit a parse tree produced by SqlBaseParser#arithmeticOperator.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  66. def visitArithmeticUnary(ctx: ArithmeticUnaryContext): AnyRef

    Visit a parse tree produced by the arithmeticUnary labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the arithmeticUnary labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  67. def visitAssignment(ctx: AssignmentContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#assignment.

    Visit a parse tree produced by SqlBaseParser#assignment.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  68. def visitAssignmentList(ctx: AssignmentListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#assignmentList.

    Visit a parse tree produced by SqlBaseParser#assignmentList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  69. def visitBackQuotedIdentifier(ctx: BackQuotedIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#backQuotedIdentifier.

    Visit a parse tree produced by SqlBaseParser#backQuotedIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  70. def visitBeginEndCompoundBlock(ctx: BeginEndCompoundBlockContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#beginEndCompoundBlock.

    Visit a parse tree produced by SqlBaseParser#beginEndCompoundBlock.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  71. def visitBeginLabel(ctx: BeginLabelContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#beginLabel.

    Visit a parse tree produced by SqlBaseParser#beginLabel.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  72. def visitBigDecimalLiteral(ctx: BigDecimalLiteralContext): AnyRef

    Visit a parse tree produced by the bigDecimalLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the bigDecimalLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  73. def visitBigIntLiteral(ctx: BigIntLiteralContext): AnyRef

    Visit a parse tree produced by the bigIntLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the bigIntLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  74. def visitBooleanLiteral(ctx: BooleanLiteralContext): AnyRef

    Visit a parse tree produced by the booleanLiteral labeled alternative in SqlBaseParser#constant.

    Visit a parse tree produced by the booleanLiteral labeled alternative in SqlBaseParser#constant.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  75. def visitBooleanValue(ctx: BooleanValueContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#booleanValue.

    Visit a parse tree produced by SqlBaseParser#booleanValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  76. def visitBucketSpec(ctx: BucketSpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#bucketSpec.

    Visit a parse tree produced by SqlBaseParser#bucketSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  77. def visitCacheTable(ctx: CacheTableContext): AnyRef

    Visit a parse tree produced by the cacheTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the cacheTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  78. def visitCall(ctx: CallContext): AnyRef

    Visit a parse tree produced by the call labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the call labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  79. def visitCast(ctx: CastContext): AnyRef

    Visit a parse tree produced by the cast labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the cast labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  80. def visitCastByColon(ctx: CastByColonContext): AnyRef

    Visit a parse tree produced by the castByColon labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the castByColon labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  81. def visitCatalogIdentifierReference(ctx: CatalogIdentifierReferenceContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#catalogIdentifierReference.

    Visit a parse tree produced by SqlBaseParser#catalogIdentifierReference.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  82. def visitCheckConstraint(ctx: CheckConstraintContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#checkConstraint.

    Visit a parse tree produced by SqlBaseParser#checkConstraint.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  83. def visitChildren(arg0: RuleNode): AnyRef
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  84. def visitClearCache(ctx: ClearCacheContext): AnyRef

    Visit a parse tree produced by the clearCache labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the clearCache labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  85. def visitClusterBySpec(ctx: ClusterBySpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#clusterBySpec.

    Visit a parse tree produced by SqlBaseParser#clusterBySpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  86. def visitColDefinition(ctx: ColDefinitionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#colDefinition.

    Visit a parse tree produced by SqlBaseParser#colDefinition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  87. def visitColDefinitionDescriptorWithPosition(ctx: ColDefinitionDescriptorWithPositionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#colDefinitionDescriptorWithPosition.

    Visit a parse tree produced by SqlBaseParser#colDefinitionDescriptorWithPosition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  88. def visitColDefinitionList(ctx: ColDefinitionListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#colDefinitionList.

    Visit a parse tree produced by SqlBaseParser#colDefinitionList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  89. def visitColDefinitionOption(ctx: ColDefinitionOptionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#colDefinitionOption.

    Visit a parse tree produced by SqlBaseParser#colDefinitionOption.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  90. def visitColPosition(ctx: ColPositionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#colPosition.

    Visit a parse tree produced by SqlBaseParser#colPosition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  91. def visitColType(ctx: ColTypeContext): StructField

    Create a top level StructField from a column definition.

    Create a top level StructField from a column definition.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  92. def visitColTypeList(ctx: ColTypeListContext): Seq[StructField]

    Create a StructType from a number of column definitions.

    Create a StructType from a number of column definitions.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  93. def visitCollate(ctx: CollateContext): AnyRef

    Visit a parse tree produced by the collate labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the collate labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  94. def visitCollateClause(ctx: CollateClauseContext): Seq[String]

    Returns a collation name.

    Returns a collation name.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  95. def visitCollationSpec(ctx: CollationSpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#collationSpec.

    Visit a parse tree produced by SqlBaseParser#collationSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  96. def visitColumnConstraint(ctx: ColumnConstraintContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#columnConstraint.

    Visit a parse tree produced by SqlBaseParser#columnConstraint.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  97. def visitColumnConstraintDefinition(ctx: ColumnConstraintDefinitionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#columnConstraintDefinition.

    Visit a parse tree produced by SqlBaseParser#columnConstraintDefinition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  98. def visitColumnReference(ctx: ColumnReferenceContext): AnyRef

    Visit a parse tree produced by the columnReference labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the columnReference labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  99. def visitComment(ctx: CommentContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#comment.

    Visit a parse tree produced by SqlBaseParser#comment.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  100. def visitCommentNamespace(ctx: CommentNamespaceContext): AnyRef

    Visit a parse tree produced by the commentNamespace labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the commentNamespace labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  101. def visitCommentSpec(ctx: CommentSpecContext): String

    Create a comment string.

    Create a comment string.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  102. def visitCommentTable(ctx: CommentTableContext): AnyRef

    Visit a parse tree produced by the commentTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the commentTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  103. def visitComparison(ctx: ComparisonContext): AnyRef

    Visit a parse tree produced by the comparison labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the comparison labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  104. def visitComparisonOperator(ctx: ComparisonOperatorContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#comparisonOperator.

    Visit a parse tree produced by SqlBaseParser#comparisonOperator.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  105. def visitComplexColType(ctx: ComplexColTypeContext): StructField

    Create a StructField from a column definition.

    Create a StructField from a column definition.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  106. def visitComplexColTypeList(ctx: ComplexColTypeListContext): Seq[StructField]

    Create a StructType from a number of column definitions.

    Create a StructType from a number of column definitions.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  107. def visitComplexDataType(ctx: ComplexDataTypeContext): DataType

    Create a complex DataType.

    Create a complex DataType. Arrays, Maps and Structures are supported.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  108. def visitCompoundBody(ctx: CompoundBodyContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#compoundBody.

    Visit a parse tree produced by SqlBaseParser#compoundBody.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  109. def visitCompoundOrSingleStatement(ctx: CompoundOrSingleStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#compoundOrSingleStatement.

    Visit a parse tree produced by SqlBaseParser#compoundOrSingleStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  110. def visitCompoundStatement(ctx: CompoundStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#compoundStatement.

    Visit a parse tree produced by SqlBaseParser#compoundStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  111. def visitConditionValue(ctx: ConditionValueContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#conditionValue.

    Visit a parse tree produced by SqlBaseParser#conditionValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  112. def visitConditionValues(ctx: ConditionValuesContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#conditionValues.

    Visit a parse tree produced by SqlBaseParser#conditionValues.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  113. def visitConfigKey(ctx: ConfigKeyContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#configKey.

    Visit a parse tree produced by SqlBaseParser#configKey.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  114. def visitConfigValue(ctx: ConfigValueContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#configValue.

    Visit a parse tree produced by SqlBaseParser#configValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  115. def visitConstantDefault(ctx: ConstantDefaultContext): AnyRef

    Visit a parse tree produced by the constantDefault labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the constantDefault labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  116. def visitConstantList(ctx: ConstantListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#constantList.

    Visit a parse tree produced by SqlBaseParser#constantList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  117. def visitConstraintCharacteristic(ctx: ConstraintCharacteristicContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#constraintCharacteristic.

    Visit a parse tree produced by SqlBaseParser#constraintCharacteristic.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  118. def visitCreateFileFormat(ctx: CreateFileFormatContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#createFileFormat.

    Visit a parse tree produced by SqlBaseParser#createFileFormat.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  119. def visitCreateFunction(ctx: CreateFunctionContext): AnyRef

    Visit a parse tree produced by the createFunction labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createFunction labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  120. def visitCreateIndex(ctx: CreateIndexContext): AnyRef

    Visit a parse tree produced by the createIndex labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createIndex labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  121. def visitCreateNamespace(ctx: CreateNamespaceContext): AnyRef

    Visit a parse tree produced by the createNamespace labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createNamespace labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  122. def visitCreatePipelineDataset(ctx: CreatePipelineDatasetContext): AnyRef

    Visit a parse tree produced by the createPipelineDataset labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createPipelineDataset labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  123. def visitCreatePipelineDatasetHeader(ctx: CreatePipelineDatasetHeaderContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#createPipelineDatasetHeader.

    Visit a parse tree produced by SqlBaseParser#createPipelineDatasetHeader.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  124. def visitCreatePipelineFlowHeader(ctx: CreatePipelineFlowHeaderContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#createPipelineFlowHeader.

    Visit a parse tree produced by SqlBaseParser#createPipelineFlowHeader.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  125. def visitCreatePipelineInsertIntoFlow(ctx: CreatePipelineInsertIntoFlowContext): AnyRef

    Visit a parse tree produced by the createPipelineInsertIntoFlow labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createPipelineInsertIntoFlow labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  126. def visitCreateTable(ctx: CreateTableContext): AnyRef

    Visit a parse tree produced by the createTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  127. def visitCreateTableClauses(ctx: CreateTableClausesContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#createTableClauses.

    Visit a parse tree produced by SqlBaseParser#createTableClauses.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  128. def visitCreateTableHeader(ctx: CreateTableHeaderContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#createTableHeader.

    Visit a parse tree produced by SqlBaseParser#createTableHeader.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  129. def visitCreateTableLike(ctx: CreateTableLikeContext): AnyRef

    Visit a parse tree produced by the createTableLike labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createTableLike labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  130. def visitCreateTempViewUsing(ctx: CreateTempViewUsingContext): AnyRef

    Visit a parse tree produced by the createTempViewUsing labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createTempViewUsing labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  131. def visitCreateUserDefinedFunction(ctx: CreateUserDefinedFunctionContext): AnyRef

    Visit a parse tree produced by the createUserDefinedFunction labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createUserDefinedFunction labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  132. def visitCreateVariable(ctx: CreateVariableContext): AnyRef

    Visit a parse tree produced by the createVariable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createVariable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  133. def visitCreateView(ctx: CreateViewContext): AnyRef

    Visit a parse tree produced by the createView labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the createView labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  134. def visitCtes(ctx: CtesContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#ctes.

    Visit a parse tree produced by SqlBaseParser#ctes.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  135. def visitCurrentLike(ctx: CurrentLikeContext): AnyRef

    Visit a parse tree produced by the currentLike labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the currentLike labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  136. def visitDatetimeUnit(ctx: DatetimeUnitContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#datetimeUnit.

    Visit a parse tree produced by SqlBaseParser#datetimeUnit.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  137. def visitDecimalLiteral(ctx: DecimalLiteralContext): AnyRef

    Visit a parse tree produced by the decimalLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the decimalLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  138. def visitDeclareConditionStatement(ctx: DeclareConditionStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#declareConditionStatement.

    Visit a parse tree produced by SqlBaseParser#declareConditionStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  139. def visitDeclareHandlerStatement(ctx: DeclareHandlerStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#declareHandlerStatement.

    Visit a parse tree produced by SqlBaseParser#declareHandlerStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  140. def visitDefaultExpression(ctx: DefaultExpressionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#defaultExpression.

    Visit a parse tree produced by SqlBaseParser#defaultExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  141. def visitDeleteFromTable(ctx: DeleteFromTableContext): AnyRef

    Visit a parse tree produced by the deleteFromTable labeled alternative in SqlBaseParser#dmlStatementNoWith.

    Visit a parse tree produced by the deleteFromTable labeled alternative in SqlBaseParser#dmlStatementNoWith.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  142. def visitDereference(ctx: DereferenceContext): AnyRef

    Visit a parse tree produced by the dereference labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the dereference labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  143. def visitDescribeColName(ctx: DescribeColNameContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#describeColName.

    Visit a parse tree produced by SqlBaseParser#describeColName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  144. def visitDescribeFuncName(ctx: DescribeFuncNameContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#describeFuncName.

    Visit a parse tree produced by SqlBaseParser#describeFuncName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  145. def visitDescribeFunction(ctx: DescribeFunctionContext): AnyRef

    Visit a parse tree produced by the describeFunction labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the describeFunction labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  146. def visitDescribeNamespace(ctx: DescribeNamespaceContext): AnyRef

    Visit a parse tree produced by the describeNamespace labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the describeNamespace labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  147. def visitDescribeProcedure(ctx: DescribeProcedureContext): AnyRef

    Visit a parse tree produced by the describeProcedure labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the describeProcedure labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  148. def visitDescribeQuery(ctx: DescribeQueryContext): AnyRef

    Visit a parse tree produced by the describeQuery labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the describeQuery labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  149. def visitDescribeRelation(ctx: DescribeRelationContext): AnyRef

    Visit a parse tree produced by the describeRelation labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the describeRelation labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  150. def visitDeterministic(ctx: DeterministicContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#deterministic.

    Visit a parse tree produced by SqlBaseParser#deterministic.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  151. def visitDmlStatement(ctx: DmlStatementContext): AnyRef

    Visit a parse tree produced by the dmlStatement labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dmlStatement labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  152. def visitDoubleLiteral(ctx: DoubleLiteralContext): AnyRef

    Visit a parse tree produced by the doubleLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the doubleLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  153. def visitDropFunction(ctx: DropFunctionContext): AnyRef

    Visit a parse tree produced by the dropFunction labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropFunction labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  154. def visitDropIndex(ctx: DropIndexContext): AnyRef

    Visit a parse tree produced by the dropIndex labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropIndex labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  155. def visitDropNamespace(ctx: DropNamespaceContext): AnyRef

    Visit a parse tree produced by the dropNamespace labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropNamespace labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  156. def visitDropTable(ctx: DropTableContext): AnyRef

    Visit a parse tree produced by the dropTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  157. def visitDropTableColumns(ctx: DropTableColumnsContext): AnyRef

    Visit a parse tree produced by the dropTableColumns labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropTableColumns labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  158. def visitDropTableConstraint(ctx: DropTableConstraintContext): AnyRef

    Visit a parse tree produced by the dropTableConstraint labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropTableConstraint labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  159. def visitDropTablePartitions(ctx: DropTablePartitionsContext): AnyRef

    Visit a parse tree produced by the dropTablePartitions labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropTablePartitions labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  160. def visitDropVariable(ctx: DropVariableContext): AnyRef

    Visit a parse tree produced by the dropVariable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropVariable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  161. def visitDropView(ctx: DropViewContext): AnyRef

    Visit a parse tree produced by the dropView labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the dropView labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  162. def visitEndLabel(ctx: EndLabelContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#endLabel.

    Visit a parse tree produced by SqlBaseParser#endLabel.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  163. def visitEnforcedCharacteristic(ctx: EnforcedCharacteristicContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#enforcedCharacteristic.

    Visit a parse tree produced by SqlBaseParser#enforcedCharacteristic.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  164. def visitErrorCapturingIdentifier(ctx: ErrorCapturingIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#errorCapturingIdentifier.

    Visit a parse tree produced by SqlBaseParser#errorCapturingIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  165. def visitErrorCapturingMultiUnitsInterval(ctx: ErrorCapturingMultiUnitsIntervalContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#errorCapturingMultiUnitsInterval.

    Visit a parse tree produced by SqlBaseParser#errorCapturingMultiUnitsInterval.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  166. def visitErrorCapturingNot(ctx: ErrorCapturingNotContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#errorCapturingNot.

    Visit a parse tree produced by SqlBaseParser#errorCapturingNot.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  167. def visitErrorCapturingUnitToUnitInterval(ctx: ErrorCapturingUnitToUnitIntervalContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#errorCapturingUnitToUnitInterval.

    Visit a parse tree produced by SqlBaseParser#errorCapturingUnitToUnitInterval.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  168. def visitErrorIdent(ctx: ErrorIdentContext): AnyRef

    Visit a parse tree produced by the errorIdent labeled alternative in SqlBaseParser#errorCapturingIdentifierExtra.

    Visit a parse tree produced by the errorIdent labeled alternative in SqlBaseParser#errorCapturingIdentifierExtra.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  169. def visitErrorNode(arg0: ErrorNode): AnyRef
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  170. def visitExceptClause(ctx: ExceptClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#exceptClause.

    Visit a parse tree produced by SqlBaseParser#exceptClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  171. def visitExecuteImmediate(ctx: ExecuteImmediateContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#executeImmediate.

    Visit a parse tree produced by SqlBaseParser#executeImmediate.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  172. def visitExecuteImmediateUsing(ctx: ExecuteImmediateUsingContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#executeImmediateUsing.

    Visit a parse tree produced by SqlBaseParser#executeImmediateUsing.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  173. def visitExists(ctx: ExistsContext): AnyRef

    Visit a parse tree produced by the exists labeled alternative in SqlBaseParser#booleanExpression.

    Visit a parse tree produced by the exists labeled alternative in SqlBaseParser#booleanExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  174. def visitExplain(ctx: ExplainContext): AnyRef

    Visit a parse tree produced by the explain labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the explain labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  175. def visitExponentLiteral(ctx: ExponentLiteralContext): AnyRef

    Visit a parse tree produced by the exponentLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the exponentLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  176. def visitExpression(ctx: ExpressionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#expression.

    Visit a parse tree produced by SqlBaseParser#expression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  177. def visitExpressionPropertyList(ctx: ExpressionPropertyListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#expressionPropertyList.

    Visit a parse tree produced by SqlBaseParser#expressionPropertyList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  178. def visitExpressionPropertyWithKeyAndEquals(ctx: ExpressionPropertyWithKeyAndEqualsContext): AnyRef

    Visit a parse tree produced by the expressionPropertyWithKeyAndEquals labeled alternative in SqlBaseParser#expressionProperty.

    Visit a parse tree produced by the expressionPropertyWithKeyAndEquals labeled alternative in SqlBaseParser#expressionProperty.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  179. def visitExpressionPropertyWithKeyNoEquals(ctx: ExpressionPropertyWithKeyNoEqualsContext): AnyRef

    Visit a parse tree produced by the expressionPropertyWithKeyNoEquals labeled alternative in SqlBaseParser#expressionProperty.

    Visit a parse tree produced by the expressionPropertyWithKeyNoEquals labeled alternative in SqlBaseParser#expressionProperty.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  180. def visitExpressionSeq(ctx: ExpressionSeqContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#expressionSeq.

    Visit a parse tree produced by SqlBaseParser#expressionSeq.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  181. def visitExtract(ctx: ExtractContext): AnyRef

    Visit a parse tree produced by the extract labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the extract labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  182. def visitFailNativeCommand(ctx: FailNativeCommandContext): AnyRef

    Visit a parse tree produced by the failNativeCommand labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the failNativeCommand labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  183. def visitFailSetRole(ctx: FailSetRoleContext): AnyRef

    Visit a parse tree produced by the failSetRole labeled alternative in SqlBaseParser#setResetStatement.

    Visit a parse tree produced by the failSetRole labeled alternative in SqlBaseParser#setResetStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  184. def visitFirst(ctx: FirstContext): AnyRef

    Visit a parse tree produced by the first labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the first labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  185. def visitFloatLiteral(ctx: FloatLiteralContext): AnyRef

    Visit a parse tree produced by the floatLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the floatLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  186. def visitForStatement(ctx: ForStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#forStatement.

    Visit a parse tree produced by SqlBaseParser#forStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  187. def visitForeignKeyConstraint(ctx: ForeignKeyConstraintContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#foreignKeyConstraint.

    Visit a parse tree produced by SqlBaseParser#foreignKeyConstraint.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  188. def visitFrameBound(ctx: FrameBoundContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#frameBound.

    Visit a parse tree produced by SqlBaseParser#frameBound.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  189. def visitFromClause(ctx: FromClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#fromClause.

    Visit a parse tree produced by SqlBaseParser#fromClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  190. def visitFromStatement(ctx: FromStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#fromStatement.

    Visit a parse tree produced by SqlBaseParser#fromStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  191. def visitFromStatementBody(ctx: FromStatementBodyContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#fromStatementBody.

    Visit a parse tree produced by SqlBaseParser#fromStatementBody.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  192. def visitFromStmt(ctx: FromStmtContext): AnyRef

    Visit a parse tree produced by the fromStmt labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the fromStmt labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  193. def visitFunctionArgument(ctx: FunctionArgumentContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#functionArgument.

    Visit a parse tree produced by SqlBaseParser#functionArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  194. def visitFunctionCall(ctx: FunctionCallContext): AnyRef

    Visit a parse tree produced by the functionCall labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the functionCall labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  195. def visitFunctionIdentifier(ctx: FunctionIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#functionIdentifier.

    Visit a parse tree produced by SqlBaseParser#functionIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  196. def visitFunctionName(ctx: FunctionNameContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#functionName.

    Visit a parse tree produced by SqlBaseParser#functionName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  197. def visitFunctionTable(ctx: FunctionTableContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#functionTable.

    Visit a parse tree produced by SqlBaseParser#functionTable.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  198. def visitFunctionTableArgument(ctx: FunctionTableArgumentContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#functionTableArgument.

    Visit a parse tree produced by SqlBaseParser#functionTableArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  199. def visitFunctionTableNamedArgumentExpression(ctx: FunctionTableNamedArgumentExpressionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#functionTableNamedArgumentExpression.

    Visit a parse tree produced by SqlBaseParser#functionTableNamedArgumentExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  200. def visitFunctionTableReferenceArgument(ctx: FunctionTableReferenceArgumentContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#functionTableReferenceArgument.

    Visit a parse tree produced by SqlBaseParser#functionTableReferenceArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  201. def visitFunctionTableSubqueryArgument(ctx: FunctionTableSubqueryArgumentContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#functionTableSubqueryArgument.

    Visit a parse tree produced by SqlBaseParser#functionTableSubqueryArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  202. def visitGeneratedColumn(ctx: GeneratedColumnContext): AnyRef

    Visit a parse tree produced by the generatedColumn labeled alternative in SqlBaseParser#generationExpression.

    Visit a parse tree produced by the generatedColumn labeled alternative in SqlBaseParser#generationExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  203. def visitGenericFileFormat(ctx: GenericFileFormatContext): AnyRef

    Visit a parse tree produced by the genericFileFormat labeled alternative in SqlBaseParser#fileFormat.

    Visit a parse tree produced by the genericFileFormat labeled alternative in SqlBaseParser#fileFormat.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  204. def visitGroupByClause(ctx: GroupByClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#groupByClause.

    Visit a parse tree produced by SqlBaseParser#groupByClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  205. def visitGroupingAnalytics(ctx: GroupingAnalyticsContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#groupingAnalytics.

    Visit a parse tree produced by SqlBaseParser#groupingAnalytics.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  206. def visitGroupingElement(ctx: GroupingElementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#groupingElement.

    Visit a parse tree produced by SqlBaseParser#groupingElement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  207. def visitGroupingSet(ctx: GroupingSetContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#groupingSet.

    Visit a parse tree produced by SqlBaseParser#groupingSet.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  208. def visitHavingClause(ctx: HavingClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#havingClause.

    Visit a parse tree produced by SqlBaseParser#havingClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  209. def visitHint(ctx: HintContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#hint.

    Visit a parse tree produced by SqlBaseParser#hint.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  210. def visitHintStatement(ctx: HintStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#hintStatement.

    Visit a parse tree produced by SqlBaseParser#hintStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  211. def visitHiveChangeColumn(ctx: HiveChangeColumnContext): AnyRef

    Visit a parse tree produced by the hiveChangeColumn labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the hiveChangeColumn labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  212. def visitHiveReplaceColumns(ctx: HiveReplaceColumnsContext): AnyRef

    Visit a parse tree produced by the hiveReplaceColumns labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the hiveReplaceColumns labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  213. def visitIdentifier(ctx: IdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#identifier.

    Visit a parse tree produced by SqlBaseParser#identifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  214. def visitIdentifierComment(ctx: IdentifierCommentContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#identifierComment.

    Visit a parse tree produced by SqlBaseParser#identifierComment.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  215. def visitIdentifierCommentList(ctx: IdentifierCommentListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#identifierCommentList.

    Visit a parse tree produced by SqlBaseParser#identifierCommentList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  216. def visitIdentifierList(ctx: IdentifierListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#identifierList.

    Visit a parse tree produced by SqlBaseParser#identifierList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  217. def visitIdentifierLiteral(ctx: IdentifierLiteralContext): AnyRef

    Visit a parse tree produced by the identifierLiteral labeled alternative in SqlBaseParser#strictIdentifier.

    Visit a parse tree produced by the identifierLiteral labeled alternative in SqlBaseParser#strictIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  218. def visitIdentifierReference(ctx: IdentifierReferenceContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#identifierReference.

    Visit a parse tree produced by SqlBaseParser#identifierReference.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  219. def visitIdentifierSeq(ctx: IdentifierSeqContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#identifierSeq.

    Visit a parse tree produced by SqlBaseParser#identifierSeq.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  220. def visitIdentityColSpec(ctx: IdentityColSpecContext): (Long, Long)

    Visit a parse tree produced by SqlBaseParser#identityColSpec.

    Visit a parse tree produced by SqlBaseParser#identityColSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  221. def visitIdentityColumn(ctx: IdentityColumnContext, dataType: DataType): IdentityColumnSpec

    Parse and verify IDENTITY column definition.

    Parse and verify IDENTITY column definition.

    ctx

    The parser context.

    dataType

    The data type of column defined as IDENTITY column. Used for verification.

    returns

    Tuple containing start, step and allowExplicitInsert.

    Attributes
    protected
  222. def visitIdentityColumn(ctx: IdentityColumnContext): AnyRef

    Visit a parse tree produced by the identityColumn labeled alternative in SqlBaseParser#generationExpression.

    Visit a parse tree produced by the identityColumn labeled alternative in SqlBaseParser#generationExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  223. def visitIdentityTransform(ctx: IdentityTransformContext): AnyRef

    Visit a parse tree produced by the identityTransform labeled alternative in SqlBaseParser#transform.

    Visit a parse tree produced by the identityTransform labeled alternative in SqlBaseParser#transform.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  224. def visitIfElseStatement(ctx: IfElseStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#ifElseStatement.

    Visit a parse tree produced by SqlBaseParser#ifElseStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  225. def visitInlineTable(ctx: InlineTableContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#inlineTable.

    Visit a parse tree produced by SqlBaseParser#inlineTable.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  226. def visitInlineTableDefault1(ctx: InlineTableDefault1Context): AnyRef

    Visit a parse tree produced by the inlineTableDefault1 labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the inlineTableDefault1 labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  227. def visitInlineTableDefault2(ctx: InlineTableDefault2Context): AnyRef

    Visit a parse tree produced by the inlineTableDefault2 labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the inlineTableDefault2 labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  228. def visitInsertIntoReplaceWhere(ctx: InsertIntoReplaceWhereContext): AnyRef

    Visit a parse tree produced by the insertIntoReplaceWhere labeled alternative in SqlBaseParser#insertInto.

    Visit a parse tree produced by the insertIntoReplaceWhere labeled alternative in SqlBaseParser#insertInto.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  229. def visitInsertIntoTable(ctx: InsertIntoTableContext): AnyRef

    Visit a parse tree produced by the insertIntoTable labeled alternative in SqlBaseParser#insertInto.

    Visit a parse tree produced by the insertIntoTable labeled alternative in SqlBaseParser#insertInto.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  230. def visitInsertOverwriteDir(ctx: InsertOverwriteDirContext): AnyRef

    Visit a parse tree produced by the insertOverwriteDir labeled alternative in SqlBaseParser#insertInto.

    Visit a parse tree produced by the insertOverwriteDir labeled alternative in SqlBaseParser#insertInto.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  231. def visitInsertOverwriteHiveDir(ctx: InsertOverwriteHiveDirContext): AnyRef

    Visit a parse tree produced by the insertOverwriteHiveDir labeled alternative in SqlBaseParser#insertInto.

    Visit a parse tree produced by the insertOverwriteHiveDir labeled alternative in SqlBaseParser#insertInto.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  232. def visitInsertOverwriteTable(ctx: InsertOverwriteTableContext): AnyRef

    Visit a parse tree produced by the insertOverwriteTable labeled alternative in SqlBaseParser#insertInto.

    Visit a parse tree produced by the insertOverwriteTable labeled alternative in SqlBaseParser#insertInto.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  233. def visitIntegerLiteral(ctx: IntegerLiteralContext): AnyRef

    Visit a parse tree produced by the integerLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the integerLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  234. def visitIntegerVal(ctx: IntegerValContext): Token

    Visits an integerVal alternative and returns the INTEGER_VALUE token.

    Visits an integerVal alternative and returns the INTEGER_VALUE token.

    ctx

    The integerVal context to process.

    returns

    The INTEGER_VALUE token, or null if context is null.

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  235. def visitInterval(ctx: IntervalContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#interval.

    Visit a parse tree produced by SqlBaseParser#interval.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  236. def visitIntervalLiteral(ctx: IntervalLiteralContext): AnyRef

    Visit a parse tree produced by the intervalLiteral labeled alternative in SqlBaseParser#constant.

    Visit a parse tree produced by the intervalLiteral labeled alternative in SqlBaseParser#constant.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  237. def visitIntervalValue(ctx: IntervalValueContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#intervalValue.

    Visit a parse tree produced by SqlBaseParser#intervalValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  238. def visitIterateStatement(ctx: IterateStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#iterateStatement.

    Visit a parse tree produced by SqlBaseParser#iterateStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  239. def visitJoinCriteria(ctx: JoinCriteriaContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#joinCriteria.

    Visit a parse tree produced by SqlBaseParser#joinCriteria.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  240. def visitJoinRelation(ctx: JoinRelationContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#joinRelation.

    Visit a parse tree produced by SqlBaseParser#joinRelation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  241. def visitJoinType(ctx: JoinTypeContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#joinType.

    Visit a parse tree produced by SqlBaseParser#joinType.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  242. def visitJsonPathBracketedIdentifier(ctx: JsonPathBracketedIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#jsonPathBracketedIdentifier.

    Visit a parse tree produced by SqlBaseParser#jsonPathBracketedIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  243. def visitJsonPathFirstPart(ctx: JsonPathFirstPartContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#jsonPathFirstPart.

    Visit a parse tree produced by SqlBaseParser#jsonPathFirstPart.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  244. def visitJsonPathIdentifier(ctx: JsonPathIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#jsonPathIdentifier.

    Visit a parse tree produced by SqlBaseParser#jsonPathIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  245. def visitJsonPathParts(ctx: JsonPathPartsContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#jsonPathParts.

    Visit a parse tree produced by SqlBaseParser#jsonPathParts.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  246. def visitLambda(ctx: LambdaContext): AnyRef

    Visit a parse tree produced by the lambda labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the lambda labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  247. def visitLast(ctx: LastContext): AnyRef

    Visit a parse tree produced by the last labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the last labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  248. def visitLateralView(ctx: LateralViewContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#lateralView.

    Visit a parse tree produced by SqlBaseParser#lateralView.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  249. def visitLeaveStatement(ctx: LeaveStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#leaveStatement.

    Visit a parse tree produced by SqlBaseParser#leaveStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  250. def visitLegacyDecimalLiteral(ctx: LegacyDecimalLiteralContext): AnyRef

    Visit a parse tree produced by the legacyDecimalLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the legacyDecimalLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  251. def visitLiteralType(ctx: LiteralTypeContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#literalType.

    Visit a parse tree produced by SqlBaseParser#literalType.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  252. def visitLoadData(ctx: LoadDataContext): AnyRef

    Visit a parse tree produced by the loadData labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the loadData labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  253. def visitLocationSpec(ctx: LocationSpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#locationSpec.

    Visit a parse tree produced by SqlBaseParser#locationSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  254. def visitLogicalBinary(ctx: LogicalBinaryContext): AnyRef

    Visit a parse tree produced by the logicalBinary labeled alternative in SqlBaseParser#booleanExpression.

    Visit a parse tree produced by the logicalBinary labeled alternative in SqlBaseParser#booleanExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  255. def visitLogicalNot(ctx: LogicalNotContext): AnyRef

    Visit a parse tree produced by the logicalNot labeled alternative in SqlBaseParser#booleanExpression.

    Visit a parse tree produced by the logicalNot labeled alternative in SqlBaseParser#booleanExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  256. def visitLoopStatement(ctx: LoopStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#loopStatement.

    Visit a parse tree produced by SqlBaseParser#loopStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  257. def visitManageResource(ctx: ManageResourceContext): AnyRef

    Visit a parse tree produced by the manageResource labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the manageResource labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  258. def visitMatchedAction(ctx: MatchedActionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#matchedAction.

    Visit a parse tree produced by SqlBaseParser#matchedAction.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  259. def visitMatchedClause(ctx: MatchedClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#matchedClause.

    Visit a parse tree produced by SqlBaseParser#matchedClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  260. def visitMaterializedView(ctx: MaterializedViewContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#materializedView.

    Visit a parse tree produced by SqlBaseParser#materializedView.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  261. def visitMergeIntoTable(ctx: MergeIntoTableContext): AnyRef

    Visit a parse tree produced by the mergeIntoTable labeled alternative in SqlBaseParser#dmlStatementNoWith.

    Visit a parse tree produced by the mergeIntoTable labeled alternative in SqlBaseParser#dmlStatementNoWith.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  262. def visitMultiInsertQuery(ctx: MultiInsertQueryContext): AnyRef

    Visit a parse tree produced by the multiInsertQuery labeled alternative in SqlBaseParser#dmlStatementNoWith.

    Visit a parse tree produced by the multiInsertQuery labeled alternative in SqlBaseParser#dmlStatementNoWith.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  263. def visitMultiInsertQueryBody(ctx: MultiInsertQueryBodyContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#multiInsertQueryBody.

    Visit a parse tree produced by SqlBaseParser#multiInsertQueryBody.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  264. def visitMultiUnitsInterval(ctx: MultiUnitsIntervalContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#multiUnitsInterval.

    Visit a parse tree produced by SqlBaseParser#multiUnitsInterval.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  265. def visitMultipartIdentifier(ctx: MultipartIdentifierContext): Seq[String]

    Create a multi-part identifier.

    Create a multi-part identifier. Handles identifier-lite with qualified identifiers like IDENTIFIER('cat.schema').table

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  266. def visitMultipartIdentifierList(ctx: MultipartIdentifierListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#multipartIdentifierList.

    Visit a parse tree produced by SqlBaseParser#multipartIdentifierList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  267. def visitMultipartIdentifierProperty(ctx: MultipartIdentifierPropertyContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#multipartIdentifierProperty.

    Visit a parse tree produced by SqlBaseParser#multipartIdentifierProperty.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  268. def visitMultipartIdentifierPropertyList(ctx: MultipartIdentifierPropertyListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#multipartIdentifierPropertyList.

    Visit a parse tree produced by SqlBaseParser#multipartIdentifierPropertyList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  269. def visitNamedArgumentExpression(ctx: NamedArgumentExpressionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#namedArgumentExpression.

    Visit a parse tree produced by SqlBaseParser#namedArgumentExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  270. def visitNamedExpression(ctx: NamedExpressionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#namedExpression.

    Visit a parse tree produced by SqlBaseParser#namedExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  271. def visitNamedExpressionSeq(ctx: NamedExpressionSeqContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#namedExpressionSeq.

    Visit a parse tree produced by SqlBaseParser#namedExpressionSeq.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  272. def visitNamedParameterLiteral(ctx: NamedParameterLiteralContext): AnyRef

    Visit a parse tree produced by the namedParameterLiteral labeled alternative in SqlBaseParser#constant.

    Visit a parse tree produced by the namedParameterLiteral labeled alternative in SqlBaseParser#constant.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  273. def visitNamedParameterMarker(ctx: NamedParameterMarkerContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#namedParameterMarker.

    Visit a parse tree produced by SqlBaseParser#namedParameterMarker.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  274. def visitNamedParameterMarkerRule(ctx: NamedParameterMarkerRuleContext): Token

    Visit a parse tree produced by the namedParameterMarkerRule labeled alternative in SqlBaseParser#parameterMarker.

    Visit a parse tree produced by the namedParameterMarkerRule labeled alternative in SqlBaseParser#parameterMarker.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  275. def visitNamedQuery(ctx: NamedQueryContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#namedQuery.

    Visit a parse tree produced by SqlBaseParser#namedQuery.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  276. def visitNamedWindow(ctx: NamedWindowContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#namedWindow.

    Visit a parse tree produced by SqlBaseParser#namedWindow.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  277. def visitNamespace(ctx: NamespaceContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#namespace.

    Visit a parse tree produced by SqlBaseParser#namespace.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  278. def visitNamespaces(ctx: NamespacesContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#namespaces.

    Visit a parse tree produced by SqlBaseParser#namespaces.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  279. def visitNestedConstantList(ctx: NestedConstantListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#nestedConstantList.

    Visit a parse tree produced by SqlBaseParser#nestedConstantList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  280. def visitNonReserved(ctx: NonReservedContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#nonReserved.

    Visit a parse tree produced by SqlBaseParser#nonReserved.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  281. def visitNonTrivialPrimitiveType(ctx: NonTrivialPrimitiveTypeContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#nonTrivialPrimitiveType.

    Visit a parse tree produced by SqlBaseParser#nonTrivialPrimitiveType.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  282. def visitNotMatchedAction(ctx: NotMatchedActionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#notMatchedAction.

    Visit a parse tree produced by SqlBaseParser#notMatchedAction.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  283. def visitNotMatchedBySourceAction(ctx: NotMatchedBySourceActionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#notMatchedBySourceAction.

    Visit a parse tree produced by SqlBaseParser#notMatchedBySourceAction.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  284. def visitNotMatchedBySourceClause(ctx: NotMatchedBySourceClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#notMatchedBySourceClause.

    Visit a parse tree produced by SqlBaseParser#notMatchedBySourceClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  285. def visitNotMatchedClause(ctx: NotMatchedClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#notMatchedClause.

    Visit a parse tree produced by SqlBaseParser#notMatchedClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  286. def visitNullCall(ctx: NullCallContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#nullCall.

    Visit a parse tree produced by SqlBaseParser#nullCall.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  287. def visitNullLiteral(ctx: NullLiteralContext): AnyRef

    Visit a parse tree produced by the nullLiteral labeled alternative in SqlBaseParser#constant.

    Visit a parse tree produced by the nullLiteral labeled alternative in SqlBaseParser#constant.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  288. def visitNumericLiteral(ctx: NumericLiteralContext): AnyRef

    Visit a parse tree produced by the numericLiteral labeled alternative in SqlBaseParser#constant.

    Visit a parse tree produced by the numericLiteral labeled alternative in SqlBaseParser#constant.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  289. def visitOperatorPipeRightSide(ctx: OperatorPipeRightSideContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#operatorPipeRightSide.

    Visit a parse tree produced by SqlBaseParser#operatorPipeRightSide.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  290. def visitOperatorPipeSetAssignmentSeq(ctx: OperatorPipeSetAssignmentSeqContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#operatorPipeSetAssignmentSeq.

    Visit a parse tree produced by SqlBaseParser#operatorPipeSetAssignmentSeq.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  291. def visitOperatorPipeStatement(ctx: OperatorPipeStatementContext): AnyRef

    Visit a parse tree produced by the operatorPipeStatement labeled alternative in SqlBaseParser#queryTerm.

    Visit a parse tree produced by the operatorPipeStatement labeled alternative in SqlBaseParser#queryTerm.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  292. def visitOptionsClause(ctx: OptionsClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#optionsClause.

    Visit a parse tree produced by SqlBaseParser#optionsClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  293. def visitOrderedIdentifier(ctx: OrderedIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#orderedIdentifier.

    Visit a parse tree produced by SqlBaseParser#orderedIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  294. def visitOrderedIdentifierList(ctx: OrderedIdentifierListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#orderedIdentifierList.

    Visit a parse tree produced by SqlBaseParser#orderedIdentifierList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  295. def visitOverlay(ctx: OverlayContext): AnyRef

    Visit a parse tree produced by the overlay labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the overlay labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  296. def visitParameterIntegerValue(ctx: ParameterIntegerValueContext): AnyRef

    Visit a parse tree produced by the parameterIntegerValue labeled alternative in SqlBaseParser#integerValue.

    Visit a parse tree produced by the parameterIntegerValue labeled alternative in SqlBaseParser#integerValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  297. def visitParenthesizedExpression(ctx: ParenthesizedExpressionContext): AnyRef

    Visit a parse tree produced by the parenthesizedExpression labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the parenthesizedExpression labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  298. def visitPartitionColumn(ctx: PartitionColumnContext): AnyRef

    Visit a parse tree produced by the partitionColumn labeled alternative in SqlBaseParser#partitionField.

    Visit a parse tree produced by the partitionColumn labeled alternative in SqlBaseParser#partitionField.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  299. def visitPartitionFieldList(ctx: PartitionFieldListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#partitionFieldList.

    Visit a parse tree produced by SqlBaseParser#partitionFieldList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  300. def visitPartitionSpec(ctx: PartitionSpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#partitionSpec.

    Visit a parse tree produced by SqlBaseParser#partitionSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  301. def visitPartitionSpecLocation(ctx: PartitionSpecLocationContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#partitionSpecLocation.

    Visit a parse tree produced by SqlBaseParser#partitionSpecLocation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  302. def visitPartitionTransform(ctx: PartitionTransformContext): AnyRef

    Visit a parse tree produced by the partitionTransform labeled alternative in SqlBaseParser#partitionField.

    Visit a parse tree produced by the partitionTransform labeled alternative in SqlBaseParser#partitionField.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  303. def visitPartitionVal(ctx: PartitionValContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#partitionVal.

    Visit a parse tree produced by SqlBaseParser#partitionVal.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  304. def visitPivotClause(ctx: PivotClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#pivotClause.

    Visit a parse tree produced by SqlBaseParser#pivotClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  305. def visitPivotColumn(ctx: PivotColumnContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#pivotColumn.

    Visit a parse tree produced by SqlBaseParser#pivotColumn.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  306. def visitPivotValue(ctx: PivotValueContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#pivotValue.

    Visit a parse tree produced by SqlBaseParser#pivotValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  307. def visitPosParameterLiteral(ctx: PosParameterLiteralContext): AnyRef

    Visit a parse tree produced by the posParameterLiteral labeled alternative in SqlBaseParser#constant.

    Visit a parse tree produced by the posParameterLiteral labeled alternative in SqlBaseParser#constant.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  308. def visitPosition(ctx: PositionContext): AnyRef

    Visit a parse tree produced by the position labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the position labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  309. def visitPositionalParameterMarkerRule(ctx: PositionalParameterMarkerRuleContext): Token

    Visit a parse tree produced by the positionalParameterMarkerRule labeled alternative in SqlBaseParser#parameterMarker.

    Visit a parse tree produced by the positionalParameterMarkerRule labeled alternative in SqlBaseParser#parameterMarker.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  310. def visitPredicate(ctx: PredicateContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#predicate.

    Visit a parse tree produced by SqlBaseParser#predicate.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  311. def visitPredicateOperator(ctx: PredicateOperatorContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#predicateOperator.

    Visit a parse tree produced by SqlBaseParser#predicateOperator.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  312. def visitPredicated(ctx: PredicatedContext): AnyRef

    Visit a parse tree produced by the predicated labeled alternative in SqlBaseParser#booleanExpression.

    Visit a parse tree produced by the predicated labeled alternative in SqlBaseParser#booleanExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  313. def visitPrimitiveDataType(ctx: PrimitiveDataTypeContext): DataType

    Resolve/create a primitive type.

    Resolve/create a primitive type.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  314. def visitPrimitiveType(ctx: PrimitiveTypeContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#primitiveType.

    Visit a parse tree produced by SqlBaseParser#primitiveType.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  315. def visitPropertyKey(ctx: PropertyKeyContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#propertyKey.

    Visit a parse tree produced by SqlBaseParser#propertyKey.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  316. def visitPropertyKeyOrStringLit(ctx: PropertyKeyOrStringLitContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#propertyKeyOrStringLit.

    Visit a parse tree produced by SqlBaseParser#propertyKeyOrStringLit.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  317. def visitPropertyKeyOrStringLitNoCoalesce(ctx: PropertyKeyOrStringLitNoCoalesceContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#propertyKeyOrStringLitNoCoalesce.

    Visit a parse tree produced by SqlBaseParser#propertyKeyOrStringLitNoCoalesce.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  318. def visitPropertyList(ctx: PropertyListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#propertyList.

    Visit a parse tree produced by SqlBaseParser#propertyList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  319. def visitPropertyValue(ctx: PropertyValueContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#propertyValue.

    Visit a parse tree produced by SqlBaseParser#propertyValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  320. def visitPropertyWithKeyAndEquals(ctx: PropertyWithKeyAndEqualsContext): AnyRef

    Visit a parse tree produced by the propertyWithKeyAndEquals labeled alternative in SqlBaseParser#property.

    Visit a parse tree produced by the propertyWithKeyAndEquals labeled alternative in SqlBaseParser#property.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  321. def visitPropertyWithKeyNoEquals(ctx: PropertyWithKeyNoEqualsContext): AnyRef

    Visit a parse tree produced by the propertyWithKeyNoEquals labeled alternative in SqlBaseParser#property.

    Visit a parse tree produced by the propertyWithKeyNoEquals labeled alternative in SqlBaseParser#property.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  322. def visitQualifiedColTypeWithPosition(ctx: QualifiedColTypeWithPositionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPosition.

    Visit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPosition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  323. def visitQualifiedColTypeWithPositionList(ctx: QualifiedColTypeWithPositionListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPositionList.

    Visit a parse tree produced by SqlBaseParser#qualifiedColTypeWithPositionList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  324. def visitQualifiedName(ctx: QualifiedNameContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#qualifiedName.

    Visit a parse tree produced by SqlBaseParser#qualifiedName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  325. def visitQualifiedNameList(ctx: QualifiedNameListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#qualifiedNameList.

    Visit a parse tree produced by SqlBaseParser#qualifiedNameList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  326. def visitQuery(ctx: SqlBaseParser.QueryContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#query.

    Visit a parse tree produced by SqlBaseParser#query.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  327. def visitQueryOrganization(ctx: QueryOrganizationContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#queryOrganization.

    Visit a parse tree produced by SqlBaseParser#queryOrganization.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  328. def visitQueryPrimaryDefault(ctx: QueryPrimaryDefaultContext): AnyRef

    Visit a parse tree produced by the queryPrimaryDefault labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the queryPrimaryDefault labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  329. def visitQueryTermDefault(ctx: QueryTermDefaultContext): AnyRef

    Visit a parse tree produced by the queryTermDefault labeled alternative in SqlBaseParser#queryTerm.

    Visit a parse tree produced by the queryTermDefault labeled alternative in SqlBaseParser#queryTerm.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  330. def visitQuotedIdentifier(ctx: QuotedIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#quotedIdentifier.

    Visit a parse tree produced by SqlBaseParser#quotedIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  331. def visitQuotedIdentifierAlternative(ctx: QuotedIdentifierAlternativeContext): AnyRef

    Visit a parse tree produced by the quotedIdentifierAlternative labeled alternative in SqlBaseParser#strictIdentifier.

    Visit a parse tree produced by the quotedIdentifierAlternative labeled alternative in SqlBaseParser#strictIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  332. def visitRealIdent(ctx: RealIdentContext): AnyRef

    Visit a parse tree produced by the realIdent labeled alternative in SqlBaseParser#errorCapturingIdentifierExtra.

    Visit a parse tree produced by the realIdent labeled alternative in SqlBaseParser#errorCapturingIdentifierExtra.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  333. def visitRecoverPartitions(ctx: RecoverPartitionsContext): AnyRef

    Visit a parse tree produced by the recoverPartitions labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the recoverPartitions labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  334. def visitReferenceSpec(ctx: ReferenceSpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#referenceSpec.

    Visit a parse tree produced by SqlBaseParser#referenceSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  335. def visitRefreshFunction(ctx: RefreshFunctionContext): AnyRef

    Visit a parse tree produced by the refreshFunction labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the refreshFunction labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  336. def visitRefreshResource(ctx: RefreshResourceContext): AnyRef

    Visit a parse tree produced by the refreshResource labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the refreshResource labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  337. def visitRefreshTable(ctx: RefreshTableContext): AnyRef

    Visit a parse tree produced by the refreshTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the refreshTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  338. def visitRegularQuerySpecification(ctx: RegularQuerySpecificationContext): AnyRef

    Visit a parse tree produced by the regularQuerySpecification labeled alternative in SqlBaseParser#querySpecification.

    Visit a parse tree produced by the regularQuerySpecification labeled alternative in SqlBaseParser#querySpecification.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  339. def visitRelation(ctx: RelationContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#relation.

    Visit a parse tree produced by SqlBaseParser#relation.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  340. def visitRelationExtension(ctx: RelationExtensionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#relationExtension.

    Visit a parse tree produced by SqlBaseParser#relationExtension.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  341. def visitRelyCharacteristic(ctx: RelyCharacteristicContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#relyCharacteristic.

    Visit a parse tree produced by SqlBaseParser#relyCharacteristic.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  342. def visitRenameTable(ctx: RenameTableContext): AnyRef

    Visit a parse tree produced by the renameTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the renameTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  343. def visitRenameTableColumn(ctx: RenameTableColumnContext): AnyRef

    Visit a parse tree produced by the renameTableColumn labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the renameTableColumn labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  344. def visitRenameTablePartition(ctx: RenameTablePartitionContext): AnyRef

    Visit a parse tree produced by the renameTablePartition labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the renameTablePartition labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  345. def visitRepairTable(ctx: RepairTableContext): AnyRef

    Visit a parse tree produced by the repairTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the repairTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  346. def visitRepeatStatement(ctx: RepeatStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#repeatStatement.

    Visit a parse tree produced by SqlBaseParser#repeatStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  347. def visitReplaceTable(ctx: ReplaceTableContext): AnyRef

    Visit a parse tree produced by the replaceTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the replaceTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  348. def visitReplaceTableHeader(ctx: ReplaceTableHeaderContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#replaceTableHeader.

    Visit a parse tree produced by SqlBaseParser#replaceTableHeader.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  349. def visitResetConfiguration(ctx: ResetConfigurationContext): AnyRef

    Visit a parse tree produced by the resetConfiguration labeled alternative in SqlBaseParser#setResetStatement.

    Visit a parse tree produced by the resetConfiguration labeled alternative in SqlBaseParser#setResetStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  350. def visitResetQuotedConfiguration(ctx: ResetQuotedConfigurationContext): AnyRef

    Visit a parse tree produced by the resetQuotedConfiguration labeled alternative in SqlBaseParser#setResetStatement.

    Visit a parse tree produced by the resetQuotedConfiguration labeled alternative in SqlBaseParser#setResetStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  351. def visitResource(ctx: ResourceContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#resource.

    Visit a parse tree produced by SqlBaseParser#resource.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  352. def visitRightsClause(ctx: RightsClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#rightsClause.

    Visit a parse tree produced by SqlBaseParser#rightsClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  353. def visitRoutineCharacteristics(ctx: RoutineCharacteristicsContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#routineCharacteristics.

    Visit a parse tree produced by SqlBaseParser#routineCharacteristics.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  354. def visitRoutineLanguage(ctx: RoutineLanguageContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#routineLanguage.

    Visit a parse tree produced by SqlBaseParser#routineLanguage.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  355. def visitRowConstructor(ctx: RowConstructorContext): AnyRef

    Visit a parse tree produced by the rowConstructor labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the rowConstructor labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  356. def visitRowFormatDelimited(ctx: RowFormatDelimitedContext): AnyRef

    Visit a parse tree produced by the rowFormatDelimited labeled alternative in SqlBaseParser#rowFormat.

    Visit a parse tree produced by the rowFormatDelimited labeled alternative in SqlBaseParser#rowFormat.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  357. def visitRowFormatSerde(ctx: RowFormatSerdeContext): AnyRef

    Visit a parse tree produced by the rowFormatSerde labeled alternative in SqlBaseParser#rowFormat.

    Visit a parse tree produced by the rowFormatSerde labeled alternative in SqlBaseParser#rowFormat.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  358. def visitSample(ctx: SampleContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#sample.

    Visit a parse tree produced by SqlBaseParser#sample.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  359. def visitSampleByBucket(ctx: SampleByBucketContext): AnyRef

    Visit a parse tree produced by the sampleByBucket labeled alternative in SqlBaseParser#sampleMethod.

    Visit a parse tree produced by the sampleByBucket labeled alternative in SqlBaseParser#sampleMethod.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  360. def visitSampleByBytes(ctx: SampleByBytesContext): AnyRef

    Visit a parse tree produced by the sampleByBytes labeled alternative in SqlBaseParser#sampleMethod.

    Visit a parse tree produced by the sampleByBytes labeled alternative in SqlBaseParser#sampleMethod.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  361. def visitSampleByPercentile(ctx: SampleByPercentileContext): AnyRef

    Visit a parse tree produced by the sampleByPercentile labeled alternative in SqlBaseParser#sampleMethod.

    Visit a parse tree produced by the sampleByPercentile labeled alternative in SqlBaseParser#sampleMethod.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  362. def visitSampleByRows(ctx: SampleByRowsContext): AnyRef

    Visit a parse tree produced by the sampleByRows labeled alternative in SqlBaseParser#sampleMethod.

    Visit a parse tree produced by the sampleByRows labeled alternative in SqlBaseParser#sampleMethod.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  363. def visitSchemaBinding(ctx: SchemaBindingContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#schemaBinding.

    Visit a parse tree produced by SqlBaseParser#schemaBinding.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  364. def visitSearchedCase(ctx: SearchedCaseContext): AnyRef

    Visit a parse tree produced by the searchedCase labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the searchedCase labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  365. def visitSearchedCaseStatement(ctx: SearchedCaseStatementContext): AnyRef

    Visit a parse tree produced by the searchedCaseStatement labeled alternative in SqlBaseParser#caseStatement.

    Visit a parse tree produced by the searchedCaseStatement labeled alternative in SqlBaseParser#caseStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  366. def visitSelectClause(ctx: SelectClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#selectClause.

    Visit a parse tree produced by SqlBaseParser#selectClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  367. def visitSemiStructuredExtract(ctx: SemiStructuredExtractContext): AnyRef

    Visit a parse tree produced by the semiStructuredExtract labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the semiStructuredExtract labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  368. def visitSemiStructuredExtractionPath(ctx: SemiStructuredExtractionPathContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#semiStructuredExtractionPath.

    Visit a parse tree produced by SqlBaseParser#semiStructuredExtractionPath.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  369. def visitSequenceGeneratorOption(ctx: SequenceGeneratorOptionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#sequenceGeneratorOption.

    Visit a parse tree produced by SqlBaseParser#sequenceGeneratorOption.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  370. def visitSequenceGeneratorStartOrStep(ctx: SequenceGeneratorStartOrStepContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#sequenceGeneratorStartOrStep.

    Visit a parse tree produced by SqlBaseParser#sequenceGeneratorStartOrStep.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  371. def visitSetCatalog(ctx: SetCatalogContext): AnyRef

    Visit a parse tree produced by the setCatalog labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the setCatalog labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  372. def visitSetClause(ctx: SetClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#setClause.

    Visit a parse tree produced by SqlBaseParser#setClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  373. def visitSetConfiguration(ctx: SetConfigurationContext): AnyRef

    Visit a parse tree produced by the setConfiguration labeled alternative in SqlBaseParser#setResetStatement.

    Visit a parse tree produced by the setConfiguration labeled alternative in SqlBaseParser#setResetStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  374. def visitSetNamespaceCollation(ctx: SetNamespaceCollationContext): AnyRef

    Visit a parse tree produced by the setNamespaceCollation labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the setNamespaceCollation labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  375. def visitSetNamespaceLocation(ctx: SetNamespaceLocationContext): AnyRef

    Visit a parse tree produced by the setNamespaceLocation labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the setNamespaceLocation labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  376. def visitSetNamespaceProperties(ctx: SetNamespacePropertiesContext): AnyRef

    Visit a parse tree produced by the setNamespaceProperties labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the setNamespaceProperties labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  377. def visitSetOperation(ctx: SetOperationContext): AnyRef

    Visit a parse tree produced by the setOperation labeled alternative in SqlBaseParser#queryTerm.

    Visit a parse tree produced by the setOperation labeled alternative in SqlBaseParser#queryTerm.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  378. def visitSetQuantifier(ctx: SetQuantifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#setQuantifier.

    Visit a parse tree produced by SqlBaseParser#setQuantifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  379. def visitSetQuotedConfiguration(ctx: SetQuotedConfigurationContext): AnyRef

    Visit a parse tree produced by the setQuotedConfiguration labeled alternative in SqlBaseParser#setResetStatement.

    Visit a parse tree produced by the setQuotedConfiguration labeled alternative in SqlBaseParser#setResetStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  380. def visitSetTableLocation(ctx: SetTableLocationContext): AnyRef

    Visit a parse tree produced by the setTableLocation labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the setTableLocation labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  381. def visitSetTableProperties(ctx: SetTablePropertiesContext): AnyRef

    Visit a parse tree produced by the setTableProperties labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the setTableProperties labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  382. def visitSetTableSerDe(ctx: SetTableSerDeContext): AnyRef

    Visit a parse tree produced by the setTableSerDe labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the setTableSerDe labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  383. def visitSetTimeZone(ctx: SetTimeZoneContext): AnyRef

    Visit a parse tree produced by the setTimeZone labeled alternative in SqlBaseParser#setResetStatement.

    Visit a parse tree produced by the setTimeZone labeled alternative in SqlBaseParser#setResetStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  384. def visitSetVariable(ctx: SetVariableContext): AnyRef

    Visit a parse tree produced by the setVariable labeled alternative in SqlBaseParser#setResetStatement.

    Visit a parse tree produced by the setVariable labeled alternative in SqlBaseParser#setResetStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  385. def visitSetVariableInsideSqlScript(ctx: SetVariableInsideSqlScriptContext): AnyRef

    Visit a parse tree produced by the setVariableInsideSqlScript labeled alternative in SqlBaseParser#setStatementInsideSqlScript.

    Visit a parse tree produced by the setVariableInsideSqlScript labeled alternative in SqlBaseParser#setStatementInsideSqlScript.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  386. def visitShiftExpression(ctx: ShiftExpressionContext): AnyRef

    Visit a parse tree produced by the shiftExpression labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the shiftExpression labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  387. def visitShiftOperator(ctx: ShiftOperatorContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#shiftOperator.

    Visit a parse tree produced by SqlBaseParser#shiftOperator.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  388. def visitShowCatalogs(ctx: ShowCatalogsContext): AnyRef

    Visit a parse tree produced by the showCatalogs labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showCatalogs labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  389. def visitShowColumns(ctx: ShowColumnsContext): AnyRef

    Visit a parse tree produced by the showColumns labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showColumns labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  390. def visitShowCreateTable(ctx: ShowCreateTableContext): AnyRef

    Visit a parse tree produced by the showCreateTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showCreateTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  391. def visitShowCurrentNamespace(ctx: ShowCurrentNamespaceContext): AnyRef

    Visit a parse tree produced by the showCurrentNamespace labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showCurrentNamespace labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  392. def visitShowFunctions(ctx: ShowFunctionsContext): AnyRef

    Visit a parse tree produced by the showFunctions labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showFunctions labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  393. def visitShowNamespaces(ctx: ShowNamespacesContext): AnyRef

    Visit a parse tree produced by the showNamespaces labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showNamespaces labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  394. def visitShowPartitions(ctx: ShowPartitionsContext): AnyRef

    Visit a parse tree produced by the showPartitions labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showPartitions labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  395. def visitShowProcedures(ctx: ShowProceduresContext): AnyRef

    Visit a parse tree produced by the showProcedures labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showProcedures labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  396. def visitShowTableExtended(ctx: ShowTableExtendedContext): AnyRef

    Visit a parse tree produced by the showTableExtended labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showTableExtended labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  397. def visitShowTables(ctx: ShowTablesContext): AnyRef

    Visit a parse tree produced by the showTables labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showTables labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  398. def visitShowTblProperties(ctx: ShowTblPropertiesContext): AnyRef

    Visit a parse tree produced by the showTblProperties labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showTblProperties labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  399. def visitShowViews(ctx: ShowViewsContext): AnyRef

    Visit a parse tree produced by the showViews labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the showViews labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  400. def visitSimpleCase(ctx: SimpleCaseContext): AnyRef

    Visit a parse tree produced by the simpleCase labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the simpleCase labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  401. def visitSimpleCaseStatement(ctx: SimpleCaseStatementContext): AnyRef

    Visit a parse tree produced by the simpleCaseStatement labeled alternative in SqlBaseParser#caseStatement.

    Visit a parse tree produced by the simpleCaseStatement labeled alternative in SqlBaseParser#caseStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  402. def visitSimpleIdentifier(ctx: SimpleIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#simpleIdentifier.

    Visit a parse tree produced by SqlBaseParser#simpleIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  403. def visitSimpleQuotedIdentifierAlternative(ctx: SimpleQuotedIdentifierAlternativeContext): AnyRef

    Visit a parse tree produced by the simpleQuotedIdentifierAlternative labeled alternative in SqlBaseParser#simpleStrictIdentifier.

    Visit a parse tree produced by the simpleQuotedIdentifierAlternative labeled alternative in SqlBaseParser#simpleStrictIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  404. def visitSimpleUnquotedIdentifier(ctx: SimpleUnquotedIdentifierContext): AnyRef

    Visit a parse tree produced by the simpleUnquotedIdentifier labeled alternative in SqlBaseParser#simpleStrictIdentifier.

    Visit a parse tree produced by the simpleUnquotedIdentifier labeled alternative in SqlBaseParser#simpleStrictIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  405. def visitSingleCompoundStatement(ctx: SingleCompoundStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleCompoundStatement.

    Visit a parse tree produced by SqlBaseParser#singleCompoundStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  406. def visitSingleDataType(ctx: SingleDataTypeContext): DataType

    Visit a parse tree produced by SqlBaseParser#singleDataType.

    Visit a parse tree produced by SqlBaseParser#singleDataType.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  407. def visitSingleDoubleQuotedStringLiteralValue(ctx: SingleDoubleQuotedStringLiteralValueContext): Token

    Visit a parse tree produced by the singleDoubleQuotedStringLiteralValue labeled alternative in SqlBaseParser#singleStringLitWithoutMarker.

    Visit a parse tree produced by the singleDoubleQuotedStringLiteralValue labeled alternative in SqlBaseParser#singleStringLitWithoutMarker.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  408. def visitSingleExpression(ctx: SingleExpressionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleExpression.

    Visit a parse tree produced by SqlBaseParser#singleExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  409. def visitSingleFunctionIdentifier(ctx: SingleFunctionIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleFunctionIdentifier.

    Visit a parse tree produced by SqlBaseParser#singleFunctionIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  410. def visitSingleInsertQuery(ctx: SingleInsertQueryContext): AnyRef

    Visit a parse tree produced by the singleInsertQuery labeled alternative in SqlBaseParser#dmlStatementNoWith.

    Visit a parse tree produced by the singleInsertQuery labeled alternative in SqlBaseParser#dmlStatementNoWith.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  411. def visitSingleMultipartIdentifier(ctx: SingleMultipartIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleMultipartIdentifier.

    Visit a parse tree produced by SqlBaseParser#singleMultipartIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  412. def visitSingleQuery(ctx: SingleQueryContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleQuery.

    Visit a parse tree produced by SqlBaseParser#singleQuery.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  413. def visitSingleRoutineParamList(ctx: SingleRoutineParamListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleRoutineParamList.

    Visit a parse tree produced by SqlBaseParser#singleRoutineParamList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  414. def visitSingleStatement(ctx: SingleStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleStatement.

    Visit a parse tree produced by SqlBaseParser#singleStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  415. def visitSingleStringLit(ctx: SingleStringLitContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleStringLit.

    Visit a parse tree produced by SqlBaseParser#singleStringLit.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  416. def visitSingleStringLiteralValue(ctx: SingleStringLiteralValueContext): Token

    Visits singleStringLitWithoutMarker alternatives and returns the token.

    Visits singleStringLitWithoutMarker alternatives and returns the token. Always returns exactly one token without coalescing.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  417. def visitSingleTableIdentifier(ctx: SingleTableIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#singleTableIdentifier.

    Visit a parse tree produced by SqlBaseParser#singleTableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  418. def visitSingleTableSchema(ctx: SingleTableSchemaContext): StructType

    Visit a parse tree produced by SqlBaseParser#singleTableSchema.

    Visit a parse tree produced by SqlBaseParser#singleTableSchema.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  419. def visitSkewSpec(ctx: SkewSpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#skewSpec.

    Visit a parse tree produced by SqlBaseParser#skewSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  420. def visitSmallIntLiteral(ctx: SmallIntLiteralContext): AnyRef

    Visit a parse tree produced by the smallIntLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the smallIntLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  421. def visitSortItem(ctx: SortItemContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#sortItem.

    Visit a parse tree produced by SqlBaseParser#sortItem.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  422. def visitSpecificName(ctx: SpecificNameContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#specificName.

    Visit a parse tree produced by SqlBaseParser#specificName.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  423. def visitSqlDataAccess(ctx: SqlDataAccessContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#sqlDataAccess.

    Visit a parse tree produced by SqlBaseParser#sqlDataAccess.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  424. def visitSqlStateValue(ctx: SqlStateValueContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#sqlStateValue.

    Visit a parse tree produced by SqlBaseParser#sqlStateValue.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  425. def visitStar(ctx: StarContext): AnyRef

    Visit a parse tree produced by the star labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the star labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  426. def visitStatementDefault(ctx: StatementDefaultContext): AnyRef

    Visit a parse tree produced by the statementDefault labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the statementDefault labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  427. def visitStorageHandler(ctx: StorageHandlerContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#storageHandler.

    Visit a parse tree produced by SqlBaseParser#storageHandler.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  428. def visitStreamRelation(ctx: StreamRelationContext): AnyRef

    Visit a parse tree produced by the streamRelation labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the streamRelation labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  429. def visitStreamTableName(ctx: StreamTableNameContext): AnyRef

    Visit a parse tree produced by the streamTableName labeled alternative in SqlBaseParser#streamRelationPrimary.

    Visit a parse tree produced by the streamTableName labeled alternative in SqlBaseParser#streamRelationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  430. def visitStreamingTable(ctx: StreamingTableContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#streamingTable.

    Visit a parse tree produced by SqlBaseParser#streamingTable.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  431. def visitStrictNonReserved(ctx: StrictNonReservedContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#strictNonReserved.

    Visit a parse tree produced by SqlBaseParser#strictNonReserved.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  432. def visitStringLit(ctx: StringLitContext): Array[Token]

    Visits a stringLit context and returns all singleStringLit tokens as an array.

    Visits a stringLit context and returns all singleStringLit tokens as an array.

    Note: This base implementation returns all tokens without coalescing. The caller is responsible for processing and concatenating them. In AstBuilder, coalescing is handled with SQL configuration-aware escape processing.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    DataTypeAstBuilderSqlBaseParserBaseVisitorSqlBaseParserVisitor
  433. def visitStringLiteral(ctx: StringLiteralContext): AnyRef

    Visit a parse tree produced by the stringLiteral labeled alternative in SqlBaseParser#constant.

    Visit a parse tree produced by the stringLiteral labeled alternative in SqlBaseParser#constant.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  434. def visitStruct(ctx: StructContext): AnyRef

    Visit a parse tree produced by the struct labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the struct labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  435. def visitSubquery(ctx: SubqueryContext): AnyRef

    Visit a parse tree produced by the subquery labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the subquery labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  436. def visitSubqueryExpression(ctx: SubqueryExpressionContext): AnyRef

    Visit a parse tree produced by the subqueryExpression labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the subqueryExpression labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  437. def visitSubscript(ctx: SubscriptContext): AnyRef

    Visit a parse tree produced by the subscript labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the subscript labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  438. def visitSubstring(ctx: SubstringContext): AnyRef

    Visit a parse tree produced by the substring labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the substring labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  439. def visitTable(ctx: TableContext): AnyRef

    Visit a parse tree produced by the table labeled alternative in SqlBaseParser#queryPrimary.

    Visit a parse tree produced by the table labeled alternative in SqlBaseParser#queryPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  440. def visitTableAlias(ctx: TableAliasContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#tableAlias.

    Visit a parse tree produced by SqlBaseParser#tableAlias.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  441. def visitTableArgumentPartitioning(ctx: TableArgumentPartitioningContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#tableArgumentPartitioning.

    Visit a parse tree produced by SqlBaseParser#tableArgumentPartitioning.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  442. def visitTableConstraint(ctx: TableConstraintContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#tableConstraint.

    Visit a parse tree produced by SqlBaseParser#tableConstraint.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  443. def visitTableConstraintDefinition(ctx: TableConstraintDefinitionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#tableConstraintDefinition.

    Visit a parse tree produced by SqlBaseParser#tableConstraintDefinition.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  444. def visitTableElement(ctx: TableElementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#tableElement.

    Visit a parse tree produced by SqlBaseParser#tableElement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  445. def visitTableElementList(ctx: TableElementListContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#tableElementList.

    Visit a parse tree produced by SqlBaseParser#tableElementList.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  446. def visitTableFileFormat(ctx: TableFileFormatContext): AnyRef

    Visit a parse tree produced by the tableFileFormat labeled alternative in SqlBaseParser#fileFormat.

    Visit a parse tree produced by the tableFileFormat labeled alternative in SqlBaseParser#fileFormat.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  447. def visitTableIdentifier(ctx: TableIdentifierContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#tableIdentifier.

    Visit a parse tree produced by SqlBaseParser#tableIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  448. def visitTableName(ctx: TableNameContext): AnyRef

    Visit a parse tree produced by the tableName labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the tableName labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  449. def visitTableProvider(ctx: TableProviderContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#tableProvider.

    Visit a parse tree produced by SqlBaseParser#tableProvider.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  450. def visitTableValuedFunction(ctx: TableValuedFunctionContext): AnyRef

    Visit a parse tree produced by the tableValuedFunction labeled alternative in SqlBaseParser#relationPrimary.

    Visit a parse tree produced by the tableValuedFunction labeled alternative in SqlBaseParser#relationPrimary.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  451. def visitTemporalClause(ctx: TemporalClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#temporalClause.

    Visit a parse tree produced by SqlBaseParser#temporalClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  452. def visitTerminal(arg0: TerminalNode): AnyRef
    Definition Classes
    AbstractParseTreeVisitor → ParseTreeVisitor
  453. def visitTimestampadd(ctx: TimestampaddContext): AnyRef

    Visit a parse tree produced by the timestampadd labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the timestampadd labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  454. def visitTimestampdiff(ctx: TimestampdiffContext): AnyRef

    Visit a parse tree produced by the timestampdiff labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the timestampdiff labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  455. def visitTimezone(ctx: TimezoneContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#timezone.

    Visit a parse tree produced by SqlBaseParser#timezone.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  456. def visitTinyIntLiteral(ctx: TinyIntLiteralContext): AnyRef

    Visit a parse tree produced by the tinyIntLiteral labeled alternative in SqlBaseParser#number.

    Visit a parse tree produced by the tinyIntLiteral labeled alternative in SqlBaseParser#number.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  457. def visitTransformArgument(ctx: TransformArgumentContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#transformArgument.

    Visit a parse tree produced by SqlBaseParser#transformArgument.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  458. def visitTransformClause(ctx: TransformClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#transformClause.

    Visit a parse tree produced by SqlBaseParser#transformClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  459. def visitTransformQuerySpecification(ctx: TransformQuerySpecificationContext): AnyRef

    Visit a parse tree produced by the transformQuerySpecification labeled alternative in SqlBaseParser#querySpecification.

    Visit a parse tree produced by the transformQuerySpecification labeled alternative in SqlBaseParser#querySpecification.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  460. def visitTrim(ctx: TrimContext): AnyRef

    Visit a parse tree produced by the trim labeled alternative in SqlBaseParser#primaryExpression.

    Visit a parse tree produced by the trim labeled alternative in SqlBaseParser#primaryExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  461. def visitTrivialPrimitiveType(ctx: TrivialPrimitiveTypeContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#trivialPrimitiveType.

    Visit a parse tree produced by SqlBaseParser#trivialPrimitiveType.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  462. def visitTruncateTable(ctx: TruncateTableContext): AnyRef

    Visit a parse tree produced by the truncateTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the truncateTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  463. def visitTypeConstructor(ctx: TypeConstructorContext): AnyRef

    Visit a parse tree produced by the typeConstructor labeled alternative in SqlBaseParser#constant.

    Visit a parse tree produced by the typeConstructor labeled alternative in SqlBaseParser#constant.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  464. def visitUncacheTable(ctx: UncacheTableContext): AnyRef

    Visit a parse tree produced by the uncacheTable labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the uncacheTable labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  465. def visitUniqueConstraint(ctx: UniqueConstraintContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#uniqueConstraint.

    Visit a parse tree produced by SqlBaseParser#uniqueConstraint.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  466. def visitUniqueSpec(ctx: UniqueSpecContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#uniqueSpec.

    Visit a parse tree produced by SqlBaseParser#uniqueSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  467. def visitUnitInMultiUnits(ctx: UnitInMultiUnitsContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unitInMultiUnits.

    Visit a parse tree produced by SqlBaseParser#unitInMultiUnits.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  468. def visitUnitInUnitToUnit(ctx: UnitInUnitToUnitContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unitInUnitToUnit.

    Visit a parse tree produced by SqlBaseParser#unitInUnitToUnit.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  469. def visitUnitToUnitInterval(ctx: UnitToUnitIntervalContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unitToUnitInterval.

    Visit a parse tree produced by SqlBaseParser#unitToUnitInterval.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  470. def visitUnpivotAlias(ctx: UnpivotAliasContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotAlias.

    Visit a parse tree produced by SqlBaseParser#unpivotAlias.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  471. def visitUnpivotClause(ctx: UnpivotClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotClause.

    Visit a parse tree produced by SqlBaseParser#unpivotClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  472. def visitUnpivotColumn(ctx: UnpivotColumnContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotColumn.

    Visit a parse tree produced by SqlBaseParser#unpivotColumn.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  473. def visitUnpivotColumnAndAlias(ctx: UnpivotColumnAndAliasContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotColumnAndAlias.

    Visit a parse tree produced by SqlBaseParser#unpivotColumnAndAlias.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  474. def visitUnpivotColumnSet(ctx: UnpivotColumnSetContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotColumnSet.

    Visit a parse tree produced by SqlBaseParser#unpivotColumnSet.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  475. def visitUnpivotMultiValueColumnClause(ctx: UnpivotMultiValueColumnClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotMultiValueColumnClause.

    Visit a parse tree produced by SqlBaseParser#unpivotMultiValueColumnClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  476. def visitUnpivotNameColumn(ctx: UnpivotNameColumnContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotNameColumn.

    Visit a parse tree produced by SqlBaseParser#unpivotNameColumn.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  477. def visitUnpivotNullClause(ctx: UnpivotNullClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotNullClause.

    Visit a parse tree produced by SqlBaseParser#unpivotNullClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  478. def visitUnpivotOperator(ctx: UnpivotOperatorContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotOperator.

    Visit a parse tree produced by SqlBaseParser#unpivotOperator.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  479. def visitUnpivotSingleValueColumnClause(ctx: UnpivotSingleValueColumnClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotSingleValueColumnClause.

    Visit a parse tree produced by SqlBaseParser#unpivotSingleValueColumnClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  480. def visitUnpivotValueColumn(ctx: UnpivotValueColumnContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unpivotValueColumn.

    Visit a parse tree produced by SqlBaseParser#unpivotValueColumn.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  481. def visitUnquotedIdentifier(ctx: UnquotedIdentifierContext): AnyRef

    Visit a parse tree produced by the unquotedIdentifier labeled alternative in SqlBaseParser#strictIdentifier.

    Visit a parse tree produced by the unquotedIdentifier labeled alternative in SqlBaseParser#strictIdentifier.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  482. def visitUnsetNamespaceProperties(ctx: UnsetNamespacePropertiesContext): AnyRef

    Visit a parse tree produced by the unsetNamespaceProperties labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the unsetNamespaceProperties labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  483. def visitUnsetTableProperties(ctx: UnsetTablePropertiesContext): AnyRef

    Visit a parse tree produced by the unsetTableProperties labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the unsetTableProperties labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  484. def visitUnsupportedHiveNativeCommands(ctx: UnsupportedHiveNativeCommandsContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#unsupportedHiveNativeCommands.

    Visit a parse tree produced by SqlBaseParser#unsupportedHiveNativeCommands.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  485. def visitUpdateTable(ctx: UpdateTableContext): AnyRef

    Visit a parse tree produced by the updateTable labeled alternative in SqlBaseParser#dmlStatementNoWith.

    Visit a parse tree produced by the updateTable labeled alternative in SqlBaseParser#dmlStatementNoWith.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  486. def visitUse(ctx: UseContext): AnyRef

    Visit a parse tree produced by the use labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the use labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  487. def visitUseNamespace(ctx: UseNamespaceContext): AnyRef

    Visit a parse tree produced by the useNamespace labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the useNamespace labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  488. def visitValueExpressionDefault(ctx: ValueExpressionDefaultContext): AnyRef

    Visit a parse tree produced by the valueExpressionDefault labeled alternative in SqlBaseParser#valueExpression.

    Visit a parse tree produced by the valueExpressionDefault labeled alternative in SqlBaseParser#valueExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  489. def visitVariable(ctx: VariableContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#variable.

    Visit a parse tree produced by SqlBaseParser#variable.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  490. def visitVariableDefaultExpression(ctx: VariableDefaultExpressionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#variableDefaultExpression.

    Visit a parse tree produced by SqlBaseParser#variableDefaultExpression.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  491. def visitVersion(ctx: VersionContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#version.

    Visit a parse tree produced by SqlBaseParser#version.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  492. def visitVisitExecuteImmediate(ctx: VisitExecuteImmediateContext): AnyRef

    Visit a parse tree produced by the visitExecuteImmediate labeled alternative in SqlBaseParser#statement.

    Visit a parse tree produced by the visitExecuteImmediate labeled alternative in SqlBaseParser#statement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  493. def visitWatermarkClause(ctx: WatermarkClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#watermarkClause.

    Visit a parse tree produced by SqlBaseParser#watermarkClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  494. def visitWhenClause(ctx: WhenClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#whenClause.

    Visit a parse tree produced by SqlBaseParser#whenClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  495. def visitWhereClause(ctx: WhereClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#whereClause.

    Visit a parse tree produced by SqlBaseParser#whereClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  496. def visitWhileStatement(ctx: WhileStatementContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#whileStatement.

    Visit a parse tree produced by SqlBaseParser#whileStatement.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  497. def visitWindowClause(ctx: WindowClauseContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#windowClause.

    Visit a parse tree produced by SqlBaseParser#windowClause.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  498. def visitWindowDef(ctx: WindowDefContext): AnyRef

    Visit a parse tree produced by the windowDef labeled alternative in SqlBaseParser#windowSpec.

    Visit a parse tree produced by the windowDef labeled alternative in SqlBaseParser#windowSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  499. def visitWindowFrame(ctx: WindowFrameContext): AnyRef

    Visit a parse tree produced by SqlBaseParser#windowFrame.

    Visit a parse tree produced by SqlBaseParser#windowFrame.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  500. def visitWindowRef(ctx: WindowRefContext): AnyRef

    Visit a parse tree produced by the windowRef labeled alternative in SqlBaseParser#windowSpec.

    Visit a parse tree produced by the windowRef labeled alternative in SqlBaseParser#windowSpec.

    The default implementation returns the result of calling #visitChildren on ctx.

    ctx

    the parse tree

    returns

    the visitor result

    Definition Classes
    SqlBaseParserBaseVisitorSqlBaseParserVisitor
    Annotations
    @Override()
  501. final def wait(arg0: Long, arg1: Int): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])
  502. final def wait(arg0: Long): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException]) @native()
  503. final def wait(): Unit
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.InterruptedException])

Deprecated Value Members

  1. def finalize(): Unit
    Attributes
    protected[lang]
    Definition Classes
    AnyRef
    Annotations
    @throws(classOf[java.lang.Throwable]) @Deprecated
    Deprecated

    (Since version 9)

Inherited from DataTypeErrorsBase

Inherited from SqlBaseParserBaseVisitor[AnyRef]

Inherited from SqlBaseParserVisitor[AnyRef]

Inherited from AbstractParseTreeVisitor[AnyRef]

Inherited from ParseTreeVisitor[AnyRef]

Inherited from AnyRef

Inherited from Any

Ungrouped