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_MARKERerrors. - **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)
- Alphabetic
- By Inheritance
- DataTypeAstBuilder
- DataTypeErrorsBase
- SqlBaseParserBaseVisitor
- SqlBaseParserVisitor
- AbstractParseTreeVisitor
- ParseTreeVisitor
- AnyRef
- Any
- Hide All
- Show All
- Public
- Protected
Instance Constructors
- new DataTypeAstBuilder()
Value Members
- final def !=(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- final def ##: Int
- Definition Classes
- AnyRef → Any
- final def ==(arg0: Any): Boolean
- Definition Classes
- AnyRef → Any
- def aggregateResult(arg0: AnyRef, arg1: AnyRef): AnyRef
- Attributes
- protected[tree]
- Definition Classes
- AbstractParseTreeVisitor
- final def asInstanceOf[T0]: T0
- Definition Classes
- Any
- def clone(): AnyRef
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.CloneNotSupportedException]) @IntrinsicCandidate() @native()
- def createSchema(ctx: ColTypeListContext): StructType
Create top level table schema.
Create top level table schema.
- Attributes
- protected
- def createStructType(ctx: ComplexColTypeListContext): StructType
Create a StructType from a sequence of StructFields.
Create a StructType from a sequence of StructFields.
- Attributes
- protected
- def defaultResult(): AnyRef
- Attributes
- protected[tree]
- Definition Classes
- AbstractParseTreeVisitor
- final def eq(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- def equals(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef → Any
- 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.
- final def getClass(): Class[_ <: AnyRef]
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- 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
- 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
- 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
- def getQueryContext(context: QueryContext): Array[QueryContext]
- Definition Classes
- DataTypeErrorsBase
- def getSummary(sqlContext: QueryContext): String
- Definition Classes
- DataTypeErrorsBase
- def hashCode(): Int
- Definition Classes
- AnyRef → Any
- Annotations
- @IntrinsicCandidate() @native()
- final def isInstanceOf[T0]: Boolean
- Definition Classes
- Any
- final def ne(arg0: AnyRef): Boolean
- Definition Classes
- AnyRef
- final def notify(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- final def notifyAll(): Unit
- Definition Classes
- AnyRef
- Annotations
- @IntrinsicCandidate() @native()
- 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
- def quoteByDefault(elem: String): String
- Attributes
- protected[sql]
- Definition Classes
- DataTypeErrorsBase
- def shouldVisitNextChild(arg0: RuleNode, arg1: AnyRef): Boolean
- Attributes
- protected[tree]
- Definition Classes
- AbstractParseTreeVisitor
- final def synchronized[T0](arg0: => T0): T0
- Definition Classes
- AnyRef
- def toDSOption(option: String): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLConf(conf: String): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLId(parts: Seq[String]): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLId(parts: String): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLStmt(text: String): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLType(t: AbstractDataType): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLType(text: String): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLValue(value: Double): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLValue(value: Float): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLValue(value: Long): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLValue(value: Int): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLValue(value: Short): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLValue(value: UTF8String): String
- Definition Classes
- DataTypeErrorsBase
- def toSQLValue(value: String): String
- Definition Classes
- DataTypeErrorsBase
- def toString(): String
- Definition Classes
- AnyRef → Any
- def typedVisit[T](ctx: ParseTree): T
- Attributes
- protected
- def visit(arg0: ParseTree): AnyRef
- Definition Classes
- AbstractParseTreeVisitor → ParseTreeVisitor
- def visitAddTableColumns(ctx: AddTableColumnsContext): AnyRef
Visit a parse tree produced by the
addTableColumnslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
addTableColumnslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAddTableConstraint(ctx: AddTableConstraintContext): AnyRef
Visit a parse tree produced by the
addTableConstraintlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
addTableConstraintlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAddTablePartition(ctx: AddTablePartitionContext): AnyRef
Visit a parse tree produced by the
addTablePartitionlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
addTablePartitionlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAliasedQuery(ctx: AliasedQueryContext): AnyRef
Visit a parse tree produced by the
aliasedQuerylabeled alternative inSqlBaseParser#relationPrimary.Visit a parse tree produced by the
aliasedQuerylabeled alternative inSqlBaseParser#relationPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAliasedRelation(ctx: AliasedRelationContext): AnyRef
Visit a parse tree produced by the
aliasedRelationlabeled alternative inSqlBaseParser#relationPrimary.Visit a parse tree produced by the
aliasedRelationlabeled alternative inSqlBaseParser#relationPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAlterClusterBy(ctx: AlterClusterByContext): AnyRef
Visit a parse tree produced by the
alterClusterBylabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
alterClusterBylabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAlterTableAlterColumn(ctx: AlterTableAlterColumnContext): AnyRef
Visit a parse tree produced by the
alterTableAlterColumnlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
alterTableAlterColumnlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAlterTableCollation(ctx: AlterTableCollationContext): AnyRef
Visit a parse tree produced by the
alterTableCollationlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
alterTableCollationlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAlterViewQuery(ctx: AlterViewQueryContext): AnyRef
Visit a parse tree produced by the
alterViewQuerylabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
alterViewQuerylabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAlterViewSchemaBinding(ctx: AlterViewSchemaBindingContext): AnyRef
Visit a parse tree produced by the
alterViewSchemaBindinglabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
alterViewSchemaBindinglabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAnalyze(ctx: AnalyzeContext): AnyRef
Visit a parse tree produced by the
analyzelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
analyzelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAnalyzeTables(ctx: AnalyzeTablesContext): AnyRef
Visit a parse tree produced by the
analyzeTableslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
analyzeTableslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitAny_value(ctx: Any_valueContext): AnyRef
Visit a parse tree produced by the
any_valuelabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
any_valuelabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitApplyTransform(ctx: ApplyTransformContext): AnyRef
Visit a parse tree produced by the
applyTransformlabeled alternative inSqlBaseParser#transform.Visit a parse tree produced by the
applyTransformlabeled alternative inSqlBaseParser#transform.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitArithmeticBinary(ctx: ArithmeticBinaryContext): AnyRef
Visit a parse tree produced by the
arithmeticBinarylabeled alternative inSqlBaseParser#valueExpression.Visit a parse tree produced by the
arithmeticBinarylabeled alternative inSqlBaseParser#valueExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitArithmeticUnary(ctx: ArithmeticUnaryContext): AnyRef
Visit a parse tree produced by the
arithmeticUnarylabeled alternative inSqlBaseParser#valueExpression.Visit a parse tree produced by the
arithmeticUnarylabeled alternative inSqlBaseParser#valueExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitBigDecimalLiteral(ctx: BigDecimalLiteralContext): AnyRef
Visit a parse tree produced by the
bigDecimalLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
bigDecimalLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitBigIntLiteral(ctx: BigIntLiteralContext): AnyRef
Visit a parse tree produced by the
bigIntLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
bigIntLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitBooleanLiteral(ctx: BooleanLiteralContext): AnyRef
Visit a parse tree produced by the
booleanLiterallabeled alternative inSqlBaseParser#constant.Visit a parse tree produced by the
booleanLiterallabeled alternative inSqlBaseParser#constant.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCacheTable(ctx: CacheTableContext): AnyRef
Visit a parse tree produced by the
cacheTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
cacheTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCall(ctx: CallContext): AnyRef
Visit a parse tree produced by the
calllabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
calllabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCast(ctx: CastContext): AnyRef
Visit a parse tree produced by the
castlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
castlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCastByColon(ctx: CastByColonContext): AnyRef
Visit a parse tree produced by the
castByColonlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
castByColonlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitChildren(arg0: RuleNode): AnyRef
- Definition Classes
- AbstractParseTreeVisitor → ParseTreeVisitor
- def visitClearCache(ctx: ClearCacheContext): AnyRef
Visit a parse tree produced by the
clearCachelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
clearCachelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- def visitCollate(ctx: CollateContext): AnyRef
Visit a parse tree produced by the
collatelabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
collatelabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCollateClause(ctx: CollateClauseContext): Seq[String]
Returns a collation name.
Returns a collation name.
- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitColumnReference(ctx: ColumnReferenceContext): AnyRef
Visit a parse tree produced by the
columnReferencelabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
columnReferencelabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCommentNamespace(ctx: CommentNamespaceContext): AnyRef
Visit a parse tree produced by the
commentNamespacelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
commentNamespacelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCommentSpec(ctx: CommentSpecContext): String
Create a comment string.
Create a comment string.
- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- def visitCommentTable(ctx: CommentTableContext): AnyRef
Visit a parse tree produced by the
commentTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
commentTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitComparison(ctx: ComparisonContext): AnyRef
Visit a parse tree produced by the
comparisonlabeled alternative inSqlBaseParser#valueExpression.Visit a parse tree produced by the
comparisonlabeled alternative inSqlBaseParser#valueExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitConstantDefault(ctx: ConstantDefaultContext): AnyRef
Visit a parse tree produced by the
constantDefaultlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
constantDefaultlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateFunction(ctx: CreateFunctionContext): AnyRef
Visit a parse tree produced by the
createFunctionlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createFunctionlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateIndex(ctx: CreateIndexContext): AnyRef
Visit a parse tree produced by the
createIndexlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createIndexlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateNamespace(ctx: CreateNamespaceContext): AnyRef
Visit a parse tree produced by the
createNamespacelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createNamespacelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreatePipelineDataset(ctx: CreatePipelineDatasetContext): AnyRef
Visit a parse tree produced by the
createPipelineDatasetlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createPipelineDatasetlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreatePipelineInsertIntoFlow(ctx: CreatePipelineInsertIntoFlowContext): AnyRef
Visit a parse tree produced by the
createPipelineInsertIntoFlowlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createPipelineInsertIntoFlowlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateTable(ctx: CreateTableContext): AnyRef
Visit a parse tree produced by the
createTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateTableLike(ctx: CreateTableLikeContext): AnyRef
Visit a parse tree produced by the
createTableLikelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createTableLikelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateTempViewUsing(ctx: CreateTempViewUsingContext): AnyRef
Visit a parse tree produced by the
createTempViewUsinglabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createTempViewUsinglabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateUserDefinedFunction(ctx: CreateUserDefinedFunctionContext): AnyRef
Visit a parse tree produced by the
createUserDefinedFunctionlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createUserDefinedFunctionlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateVariable(ctx: CreateVariableContext): AnyRef
Visit a parse tree produced by the
createVariablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createVariablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCreateView(ctx: CreateViewContext): AnyRef
Visit a parse tree produced by the
createViewlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
createViewlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitCurrentLike(ctx: CurrentLikeContext): AnyRef
Visit a parse tree produced by the
currentLikelabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
currentLikelabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDecimalLiteral(ctx: DecimalLiteralContext): AnyRef
Visit a parse tree produced by the
decimalLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
decimalLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDeleteFromTable(ctx: DeleteFromTableContext): AnyRef
Visit a parse tree produced by the
deleteFromTablelabeled alternative inSqlBaseParser#dmlStatementNoWith.Visit a parse tree produced by the
deleteFromTablelabeled alternative inSqlBaseParser#dmlStatementNoWith.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDereference(ctx: DereferenceContext): AnyRef
Visit a parse tree produced by the
dereferencelabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
dereferencelabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDescribeFunction(ctx: DescribeFunctionContext): AnyRef
Visit a parse tree produced by the
describeFunctionlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
describeFunctionlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDescribeNamespace(ctx: DescribeNamespaceContext): AnyRef
Visit a parse tree produced by the
describeNamespacelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
describeNamespacelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDescribeProcedure(ctx: DescribeProcedureContext): AnyRef
Visit a parse tree produced by the
describeProcedurelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
describeProcedurelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDescribeQuery(ctx: DescribeQueryContext): AnyRef
Visit a parse tree produced by the
describeQuerylabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
describeQuerylabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDescribeRelation(ctx: DescribeRelationContext): AnyRef
Visit a parse tree produced by the
describeRelationlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
describeRelationlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDmlStatement(ctx: DmlStatementContext): AnyRef
Visit a parse tree produced by the
dmlStatementlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dmlStatementlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDoubleLiteral(ctx: DoubleLiteralContext): AnyRef
Visit a parse tree produced by the
doubleLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
doubleLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropFunction(ctx: DropFunctionContext): AnyRef
Visit a parse tree produced by the
dropFunctionlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropFunctionlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropIndex(ctx: DropIndexContext): AnyRef
Visit a parse tree produced by the
dropIndexlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropIndexlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropNamespace(ctx: DropNamespaceContext): AnyRef
Visit a parse tree produced by the
dropNamespacelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropNamespacelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropTable(ctx: DropTableContext): AnyRef
Visit a parse tree produced by the
dropTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropTableColumns(ctx: DropTableColumnsContext): AnyRef
Visit a parse tree produced by the
dropTableColumnslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropTableColumnslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropTableConstraint(ctx: DropTableConstraintContext): AnyRef
Visit a parse tree produced by the
dropTableConstraintlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropTableConstraintlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropTablePartitions(ctx: DropTablePartitionsContext): AnyRef
Visit a parse tree produced by the
dropTablePartitionslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropTablePartitionslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropVariable(ctx: DropVariableContext): AnyRef
Visit a parse tree produced by the
dropVariablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropVariablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitDropView(ctx: DropViewContext): AnyRef
Visit a parse tree produced by the
dropViewlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
dropViewlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitErrorIdent(ctx: ErrorIdentContext): AnyRef
Visit a parse tree produced by the
errorIdentlabeled alternative inSqlBaseParser#errorCapturingIdentifierExtra.Visit a parse tree produced by the
errorIdentlabeled alternative inSqlBaseParser#errorCapturingIdentifierExtra.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitErrorNode(arg0: ErrorNode): AnyRef
- Definition Classes
- AbstractParseTreeVisitor → ParseTreeVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitExists(ctx: ExistsContext): AnyRef
Visit a parse tree produced by the
existslabeled alternative inSqlBaseParser#booleanExpression.Visit a parse tree produced by the
existslabeled alternative inSqlBaseParser#booleanExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitExplain(ctx: ExplainContext): AnyRef
Visit a parse tree produced by the
explainlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
explainlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitExponentLiteral(ctx: ExponentLiteralContext): AnyRef
Visit a parse tree produced by the
exponentLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
exponentLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitExpressionPropertyWithKeyAndEquals(ctx: ExpressionPropertyWithKeyAndEqualsContext): AnyRef
Visit a parse tree produced by the
expressionPropertyWithKeyAndEqualslabeled alternative inSqlBaseParser#expressionProperty.Visit a parse tree produced by the
expressionPropertyWithKeyAndEqualslabeled alternative inSqlBaseParser#expressionProperty.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitExpressionPropertyWithKeyNoEquals(ctx: ExpressionPropertyWithKeyNoEqualsContext): AnyRef
Visit a parse tree produced by the
expressionPropertyWithKeyNoEqualslabeled alternative inSqlBaseParser#expressionProperty.Visit a parse tree produced by the
expressionPropertyWithKeyNoEqualslabeled alternative inSqlBaseParser#expressionProperty.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitExtract(ctx: ExtractContext): AnyRef
Visit a parse tree produced by the
extractlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
extractlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitFailNativeCommand(ctx: FailNativeCommandContext): AnyRef
Visit a parse tree produced by the
failNativeCommandlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
failNativeCommandlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitFailSetRole(ctx: FailSetRoleContext): AnyRef
Visit a parse tree produced by the
failSetRolelabeled alternative inSqlBaseParser#setResetStatement.Visit a parse tree produced by the
failSetRolelabeled alternative inSqlBaseParser#setResetStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitFirst(ctx: FirstContext): AnyRef
Visit a parse tree produced by the
firstlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
firstlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitFloatLiteral(ctx: FloatLiteralContext): AnyRef
Visit a parse tree produced by the
floatLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
floatLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitFromStmt(ctx: FromStmtContext): AnyRef
Visit a parse tree produced by the
fromStmtlabeled alternative inSqlBaseParser#queryPrimary.Visit a parse tree produced by the
fromStmtlabeled alternative inSqlBaseParser#queryPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitFunctionCall(ctx: FunctionCallContext): AnyRef
Visit a parse tree produced by the
functionCalllabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
functionCalllabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitGeneratedColumn(ctx: GeneratedColumnContext): AnyRef
Visit a parse tree produced by the
generatedColumnlabeled alternative inSqlBaseParser#generationExpression.Visit a parse tree produced by the
generatedColumnlabeled alternative inSqlBaseParser#generationExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitGenericFileFormat(ctx: GenericFileFormatContext): AnyRef
Visit a parse tree produced by the
genericFileFormatlabeled alternative inSqlBaseParser#fileFormat.Visit a parse tree produced by the
genericFileFormatlabeled alternative inSqlBaseParser#fileFormat.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitHiveChangeColumn(ctx: HiveChangeColumnContext): AnyRef
Visit a parse tree produced by the
hiveChangeColumnlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
hiveChangeColumnlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitHiveReplaceColumns(ctx: HiveReplaceColumnsContext): AnyRef
Visit a parse tree produced by the
hiveReplaceColumnslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
hiveReplaceColumnslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitIdentifierLiteral(ctx: IdentifierLiteralContext): AnyRef
Visit a parse tree produced by the
identifierLiterallabeled alternative inSqlBaseParser#strictIdentifier.Visit a parse tree produced by the
identifierLiterallabeled alternative inSqlBaseParser#strictIdentifier.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
- def visitIdentityColumn(ctx: IdentityColumnContext): AnyRef
Visit a parse tree produced by the
identityColumnlabeled alternative inSqlBaseParser#generationExpression.Visit a parse tree produced by the
identityColumnlabeled alternative inSqlBaseParser#generationExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitIdentityTransform(ctx: IdentityTransformContext): AnyRef
Visit a parse tree produced by the
identityTransformlabeled alternative inSqlBaseParser#transform.Visit a parse tree produced by the
identityTransformlabeled alternative inSqlBaseParser#transform.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitInlineTableDefault1(ctx: InlineTableDefault1Context): AnyRef
Visit a parse tree produced by the
inlineTableDefault1labeled alternative inSqlBaseParser#queryPrimary.Visit a parse tree produced by the
inlineTableDefault1labeled alternative inSqlBaseParser#queryPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitInlineTableDefault2(ctx: InlineTableDefault2Context): AnyRef
Visit a parse tree produced by the
inlineTableDefault2labeled alternative inSqlBaseParser#relationPrimary.Visit a parse tree produced by the
inlineTableDefault2labeled alternative inSqlBaseParser#relationPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitInsertIntoReplaceWhere(ctx: InsertIntoReplaceWhereContext): AnyRef
Visit a parse tree produced by the
insertIntoReplaceWherelabeled alternative inSqlBaseParser#insertInto.Visit a parse tree produced by the
insertIntoReplaceWherelabeled alternative inSqlBaseParser#insertInto.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitInsertIntoTable(ctx: InsertIntoTableContext): AnyRef
Visit a parse tree produced by the
insertIntoTablelabeled alternative inSqlBaseParser#insertInto.Visit a parse tree produced by the
insertIntoTablelabeled alternative inSqlBaseParser#insertInto.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitInsertOverwriteDir(ctx: InsertOverwriteDirContext): AnyRef
Visit a parse tree produced by the
insertOverwriteDirlabeled alternative inSqlBaseParser#insertInto.Visit a parse tree produced by the
insertOverwriteDirlabeled alternative inSqlBaseParser#insertInto.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitInsertOverwriteHiveDir(ctx: InsertOverwriteHiveDirContext): AnyRef
Visit a parse tree produced by the
insertOverwriteHiveDirlabeled alternative inSqlBaseParser#insertInto.Visit a parse tree produced by the
insertOverwriteHiveDirlabeled alternative inSqlBaseParser#insertInto.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitInsertOverwriteTable(ctx: InsertOverwriteTableContext): AnyRef
Visit a parse tree produced by the
insertOverwriteTablelabeled alternative inSqlBaseParser#insertInto.Visit a parse tree produced by the
insertOverwriteTablelabeled alternative inSqlBaseParser#insertInto.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitIntegerLiteral(ctx: IntegerLiteralContext): AnyRef
Visit a parse tree produced by the
integerLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
integerLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitIntervalLiteral(ctx: IntervalLiteralContext): AnyRef
Visit a parse tree produced by the
intervalLiterallabeled alternative inSqlBaseParser#constant.Visit a parse tree produced by the
intervalLiterallabeled alternative inSqlBaseParser#constant.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitLambda(ctx: LambdaContext): AnyRef
Visit a parse tree produced by the
lambdalabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
lambdalabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitLast(ctx: LastContext): AnyRef
Visit a parse tree produced by the
lastlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
lastlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitLegacyDecimalLiteral(ctx: LegacyDecimalLiteralContext): AnyRef
Visit a parse tree produced by the
legacyDecimalLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
legacyDecimalLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitLoadData(ctx: LoadDataContext): AnyRef
Visit a parse tree produced by the
loadDatalabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
loadDatalabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitLogicalBinary(ctx: LogicalBinaryContext): AnyRef
Visit a parse tree produced by the
logicalBinarylabeled alternative inSqlBaseParser#booleanExpression.Visit a parse tree produced by the
logicalBinarylabeled alternative inSqlBaseParser#booleanExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitLogicalNot(ctx: LogicalNotContext): AnyRef
Visit a parse tree produced by the
logicalNotlabeled alternative inSqlBaseParser#booleanExpression.Visit a parse tree produced by the
logicalNotlabeled alternative inSqlBaseParser#booleanExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitManageResource(ctx: ManageResourceContext): AnyRef
Visit a parse tree produced by the
manageResourcelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
manageResourcelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitMergeIntoTable(ctx: MergeIntoTableContext): AnyRef
Visit a parse tree produced by the
mergeIntoTablelabeled alternative inSqlBaseParser#dmlStatementNoWith.Visit a parse tree produced by the
mergeIntoTablelabeled alternative inSqlBaseParser#dmlStatementNoWith.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitMultiInsertQuery(ctx: MultiInsertQueryContext): AnyRef
Visit a parse tree produced by the
multiInsertQuerylabeled alternative inSqlBaseParser#dmlStatementNoWith.Visit a parse tree produced by the
multiInsertQuerylabeled alternative inSqlBaseParser#dmlStatementNoWith.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitNamedParameterLiteral(ctx: NamedParameterLiteralContext): AnyRef
Visit a parse tree produced by the
namedParameterLiterallabeled alternative inSqlBaseParser#constant.Visit a parse tree produced by the
namedParameterLiterallabeled alternative inSqlBaseParser#constant.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitNamedParameterMarkerRule(ctx: NamedParameterMarkerRuleContext): Token
Visit a parse tree produced by the
namedParameterMarkerRulelabeled alternative inSqlBaseParser#parameterMarker.Visit a parse tree produced by the
namedParameterMarkerRulelabeled alternative inSqlBaseParser#parameterMarker.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitNullLiteral(ctx: NullLiteralContext): AnyRef
Visit a parse tree produced by the
nullLiterallabeled alternative inSqlBaseParser#constant.Visit a parse tree produced by the
nullLiterallabeled alternative inSqlBaseParser#constant.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitNumericLiteral(ctx: NumericLiteralContext): AnyRef
Visit a parse tree produced by the
numericLiterallabeled alternative inSqlBaseParser#constant.Visit a parse tree produced by the
numericLiterallabeled alternative inSqlBaseParser#constant.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitOperatorPipeStatement(ctx: OperatorPipeStatementContext): AnyRef
Visit a parse tree produced by the
operatorPipeStatementlabeled alternative inSqlBaseParser#queryTerm.Visit a parse tree produced by the
operatorPipeStatementlabeled alternative inSqlBaseParser#queryTerm.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitOverlay(ctx: OverlayContext): AnyRef
Visit a parse tree produced by the
overlaylabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
overlaylabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitParameterIntegerValue(ctx: ParameterIntegerValueContext): AnyRef
Visit a parse tree produced by the
parameterIntegerValuelabeled alternative inSqlBaseParser#integerValue.Visit a parse tree produced by the
parameterIntegerValuelabeled alternative inSqlBaseParser#integerValue.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitParenthesizedExpression(ctx: ParenthesizedExpressionContext): AnyRef
Visit a parse tree produced by the
parenthesizedExpressionlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
parenthesizedExpressionlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitPartitionColumn(ctx: PartitionColumnContext): AnyRef
Visit a parse tree produced by the
partitionColumnlabeled alternative inSqlBaseParser#partitionField.Visit a parse tree produced by the
partitionColumnlabeled alternative inSqlBaseParser#partitionField.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitPartitionTransform(ctx: PartitionTransformContext): AnyRef
Visit a parse tree produced by the
partitionTransformlabeled alternative inSqlBaseParser#partitionField.Visit a parse tree produced by the
partitionTransformlabeled alternative inSqlBaseParser#partitionField.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitPosParameterLiteral(ctx: PosParameterLiteralContext): AnyRef
Visit a parse tree produced by the
posParameterLiterallabeled alternative inSqlBaseParser#constant.Visit a parse tree produced by the
posParameterLiterallabeled alternative inSqlBaseParser#constant.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- def visitPosition(ctx: PositionContext): AnyRef
Visit a parse tree produced by the
positionlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
positionlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitPositionalParameterMarkerRule(ctx: PositionalParameterMarkerRuleContext): Token
Visit a parse tree produced by the
positionalParameterMarkerRulelabeled alternative inSqlBaseParser#parameterMarker.Visit a parse tree produced by the
positionalParameterMarkerRulelabeled alternative inSqlBaseParser#parameterMarker.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitPredicated(ctx: PredicatedContext): AnyRef
Visit a parse tree produced by the
predicatedlabeled alternative inSqlBaseParser#booleanExpression.Visit a parse tree produced by the
predicatedlabeled alternative inSqlBaseParser#booleanExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitPropertyWithKeyAndEquals(ctx: PropertyWithKeyAndEqualsContext): AnyRef
Visit a parse tree produced by the
propertyWithKeyAndEqualslabeled alternative inSqlBaseParser#property.Visit a parse tree produced by the
propertyWithKeyAndEqualslabeled alternative inSqlBaseParser#property.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitPropertyWithKeyNoEquals(ctx: PropertyWithKeyNoEqualsContext): AnyRef
Visit a parse tree produced by the
propertyWithKeyNoEqualslabeled alternative inSqlBaseParser#property.Visit a parse tree produced by the
propertyWithKeyNoEqualslabeled alternative inSqlBaseParser#property.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitQueryPrimaryDefault(ctx: QueryPrimaryDefaultContext): AnyRef
Visit a parse tree produced by the
queryPrimaryDefaultlabeled alternative inSqlBaseParser#queryPrimary.Visit a parse tree produced by the
queryPrimaryDefaultlabeled alternative inSqlBaseParser#queryPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitQueryTermDefault(ctx: QueryTermDefaultContext): AnyRef
Visit a parse tree produced by the
queryTermDefaultlabeled alternative inSqlBaseParser#queryTerm.Visit a parse tree produced by the
queryTermDefaultlabeled alternative inSqlBaseParser#queryTerm.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitQuotedIdentifierAlternative(ctx: QuotedIdentifierAlternativeContext): AnyRef
Visit a parse tree produced by the
quotedIdentifierAlternativelabeled alternative inSqlBaseParser#strictIdentifier.Visit a parse tree produced by the
quotedIdentifierAlternativelabeled alternative inSqlBaseParser#strictIdentifier.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRealIdent(ctx: RealIdentContext): AnyRef
Visit a parse tree produced by the
realIdentlabeled alternative inSqlBaseParser#errorCapturingIdentifierExtra.Visit a parse tree produced by the
realIdentlabeled alternative inSqlBaseParser#errorCapturingIdentifierExtra.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRecoverPartitions(ctx: RecoverPartitionsContext): AnyRef
Visit a parse tree produced by the
recoverPartitionslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
recoverPartitionslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRefreshFunction(ctx: RefreshFunctionContext): AnyRef
Visit a parse tree produced by the
refreshFunctionlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
refreshFunctionlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRefreshResource(ctx: RefreshResourceContext): AnyRef
Visit a parse tree produced by the
refreshResourcelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
refreshResourcelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRefreshTable(ctx: RefreshTableContext): AnyRef
Visit a parse tree produced by the
refreshTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
refreshTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRegularQuerySpecification(ctx: RegularQuerySpecificationContext): AnyRef
Visit a parse tree produced by the
regularQuerySpecificationlabeled alternative inSqlBaseParser#querySpecification.Visit a parse tree produced by the
regularQuerySpecificationlabeled alternative inSqlBaseParser#querySpecification.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRenameTable(ctx: RenameTableContext): AnyRef
Visit a parse tree produced by the
renameTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
renameTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRenameTableColumn(ctx: RenameTableColumnContext): AnyRef
Visit a parse tree produced by the
renameTableColumnlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
renameTableColumnlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRenameTablePartition(ctx: RenameTablePartitionContext): AnyRef
Visit a parse tree produced by the
renameTablePartitionlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
renameTablePartitionlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRepairTable(ctx: RepairTableContext): AnyRef
Visit a parse tree produced by the
repairTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
repairTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitReplaceTable(ctx: ReplaceTableContext): AnyRef
Visit a parse tree produced by the
replaceTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
replaceTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitResetConfiguration(ctx: ResetConfigurationContext): AnyRef
Visit a parse tree produced by the
resetConfigurationlabeled alternative inSqlBaseParser#setResetStatement.Visit a parse tree produced by the
resetConfigurationlabeled alternative inSqlBaseParser#setResetStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitResetQuotedConfiguration(ctx: ResetQuotedConfigurationContext): AnyRef
Visit a parse tree produced by the
resetQuotedConfigurationlabeled alternative inSqlBaseParser#setResetStatement.Visit a parse tree produced by the
resetQuotedConfigurationlabeled alternative inSqlBaseParser#setResetStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRowConstructor(ctx: RowConstructorContext): AnyRef
Visit a parse tree produced by the
rowConstructorlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
rowConstructorlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRowFormatDelimited(ctx: RowFormatDelimitedContext): AnyRef
Visit a parse tree produced by the
rowFormatDelimitedlabeled alternative inSqlBaseParser#rowFormat.Visit a parse tree produced by the
rowFormatDelimitedlabeled alternative inSqlBaseParser#rowFormat.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitRowFormatSerde(ctx: RowFormatSerdeContext): AnyRef
Visit a parse tree produced by the
rowFormatSerdelabeled alternative inSqlBaseParser#rowFormat.Visit a parse tree produced by the
rowFormatSerdelabeled alternative inSqlBaseParser#rowFormat.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSampleByBucket(ctx: SampleByBucketContext): AnyRef
Visit a parse tree produced by the
sampleByBucketlabeled alternative inSqlBaseParser#sampleMethod.Visit a parse tree produced by the
sampleByBucketlabeled alternative inSqlBaseParser#sampleMethod.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSampleByBytes(ctx: SampleByBytesContext): AnyRef
Visit a parse tree produced by the
sampleByByteslabeled alternative inSqlBaseParser#sampleMethod.Visit a parse tree produced by the
sampleByByteslabeled alternative inSqlBaseParser#sampleMethod.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSampleByPercentile(ctx: SampleByPercentileContext): AnyRef
Visit a parse tree produced by the
sampleByPercentilelabeled alternative inSqlBaseParser#sampleMethod.Visit a parse tree produced by the
sampleByPercentilelabeled alternative inSqlBaseParser#sampleMethod.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSampleByRows(ctx: SampleByRowsContext): AnyRef
Visit a parse tree produced by the
sampleByRowslabeled alternative inSqlBaseParser#sampleMethod.Visit a parse tree produced by the
sampleByRowslabeled alternative inSqlBaseParser#sampleMethod.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSearchedCase(ctx: SearchedCaseContext): AnyRef
Visit a parse tree produced by the
searchedCaselabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
searchedCaselabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSearchedCaseStatement(ctx: SearchedCaseStatementContext): AnyRef
Visit a parse tree produced by the
searchedCaseStatementlabeled alternative inSqlBaseParser#caseStatement.Visit a parse tree produced by the
searchedCaseStatementlabeled alternative inSqlBaseParser#caseStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSemiStructuredExtract(ctx: SemiStructuredExtractContext): AnyRef
Visit a parse tree produced by the
semiStructuredExtractlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
semiStructuredExtractlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetCatalog(ctx: SetCatalogContext): AnyRef
Visit a parse tree produced by the
setCataloglabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
setCataloglabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetConfiguration(ctx: SetConfigurationContext): AnyRef
Visit a parse tree produced by the
setConfigurationlabeled alternative inSqlBaseParser#setResetStatement.Visit a parse tree produced by the
setConfigurationlabeled alternative inSqlBaseParser#setResetStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetNamespaceCollation(ctx: SetNamespaceCollationContext): AnyRef
Visit a parse tree produced by the
setNamespaceCollationlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
setNamespaceCollationlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetNamespaceLocation(ctx: SetNamespaceLocationContext): AnyRef
Visit a parse tree produced by the
setNamespaceLocationlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
setNamespaceLocationlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetNamespaceProperties(ctx: SetNamespacePropertiesContext): AnyRef
Visit a parse tree produced by the
setNamespacePropertieslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
setNamespacePropertieslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetOperation(ctx: SetOperationContext): AnyRef
Visit a parse tree produced by the
setOperationlabeled alternative inSqlBaseParser#queryTerm.Visit a parse tree produced by the
setOperationlabeled alternative inSqlBaseParser#queryTerm.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetQuotedConfiguration(ctx: SetQuotedConfigurationContext): AnyRef
Visit a parse tree produced by the
setQuotedConfigurationlabeled alternative inSqlBaseParser#setResetStatement.Visit a parse tree produced by the
setQuotedConfigurationlabeled alternative inSqlBaseParser#setResetStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetTableLocation(ctx: SetTableLocationContext): AnyRef
Visit a parse tree produced by the
setTableLocationlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
setTableLocationlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetTableProperties(ctx: SetTablePropertiesContext): AnyRef
Visit a parse tree produced by the
setTablePropertieslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
setTablePropertieslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetTableSerDe(ctx: SetTableSerDeContext): AnyRef
Visit a parse tree produced by the
setTableSerDelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
setTableSerDelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetTimeZone(ctx: SetTimeZoneContext): AnyRef
Visit a parse tree produced by the
setTimeZonelabeled alternative inSqlBaseParser#setResetStatement.Visit a parse tree produced by the
setTimeZonelabeled alternative inSqlBaseParser#setResetStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetVariable(ctx: SetVariableContext): AnyRef
Visit a parse tree produced by the
setVariablelabeled alternative inSqlBaseParser#setResetStatement.Visit a parse tree produced by the
setVariablelabeled alternative inSqlBaseParser#setResetStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSetVariableInsideSqlScript(ctx: SetVariableInsideSqlScriptContext): AnyRef
Visit a parse tree produced by the
setVariableInsideSqlScriptlabeled alternative inSqlBaseParser#setStatementInsideSqlScript.Visit a parse tree produced by the
setVariableInsideSqlScriptlabeled alternative inSqlBaseParser#setStatementInsideSqlScript.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShiftExpression(ctx: ShiftExpressionContext): AnyRef
Visit a parse tree produced by the
shiftExpressionlabeled alternative inSqlBaseParser#valueExpression.Visit a parse tree produced by the
shiftExpressionlabeled alternative inSqlBaseParser#valueExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowCatalogs(ctx: ShowCatalogsContext): AnyRef
Visit a parse tree produced by the
showCatalogslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showCatalogslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowColumns(ctx: ShowColumnsContext): AnyRef
Visit a parse tree produced by the
showColumnslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showColumnslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowCreateTable(ctx: ShowCreateTableContext): AnyRef
Visit a parse tree produced by the
showCreateTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showCreateTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowCurrentNamespace(ctx: ShowCurrentNamespaceContext): AnyRef
Visit a parse tree produced by the
showCurrentNamespacelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showCurrentNamespacelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowFunctions(ctx: ShowFunctionsContext): AnyRef
Visit a parse tree produced by the
showFunctionslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showFunctionslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowNamespaces(ctx: ShowNamespacesContext): AnyRef
Visit a parse tree produced by the
showNamespaceslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showNamespaceslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowPartitions(ctx: ShowPartitionsContext): AnyRef
Visit a parse tree produced by the
showPartitionslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showPartitionslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowProcedures(ctx: ShowProceduresContext): AnyRef
Visit a parse tree produced by the
showProcedureslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showProcedureslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowTableExtended(ctx: ShowTableExtendedContext): AnyRef
Visit a parse tree produced by the
showTableExtendedlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showTableExtendedlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowTables(ctx: ShowTablesContext): AnyRef
Visit a parse tree produced by the
showTableslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showTableslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowTblProperties(ctx: ShowTblPropertiesContext): AnyRef
Visit a parse tree produced by the
showTblPropertieslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showTblPropertieslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitShowViews(ctx: ShowViewsContext): AnyRef
Visit a parse tree produced by the
showViewslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
showViewslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSimpleCase(ctx: SimpleCaseContext): AnyRef
Visit a parse tree produced by the
simpleCaselabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
simpleCaselabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSimpleCaseStatement(ctx: SimpleCaseStatementContext): AnyRef
Visit a parse tree produced by the
simpleCaseStatementlabeled alternative inSqlBaseParser#caseStatement.Visit a parse tree produced by the
simpleCaseStatementlabeled alternative inSqlBaseParser#caseStatement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSimpleQuotedIdentifierAlternative(ctx: SimpleQuotedIdentifierAlternativeContext): AnyRef
Visit a parse tree produced by the
simpleQuotedIdentifierAlternativelabeled alternative inSqlBaseParser#simpleStrictIdentifier.Visit a parse tree produced by the
simpleQuotedIdentifierAlternativelabeled alternative inSqlBaseParser#simpleStrictIdentifier.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSimpleUnquotedIdentifier(ctx: SimpleUnquotedIdentifierContext): AnyRef
Visit a parse tree produced by the
simpleUnquotedIdentifierlabeled alternative inSqlBaseParser#simpleStrictIdentifier.Visit a parse tree produced by the
simpleUnquotedIdentifierlabeled alternative inSqlBaseParser#simpleStrictIdentifier.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- def visitSingleDoubleQuotedStringLiteralValue(ctx: SingleDoubleQuotedStringLiteralValueContext): Token
Visit a parse tree produced by the
singleDoubleQuotedStringLiteralValuelabeled alternative inSqlBaseParser#singleStringLitWithoutMarker.Visit a parse tree produced by the
singleDoubleQuotedStringLiteralValuelabeled alternative inSqlBaseParser#singleStringLitWithoutMarker.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSingleInsertQuery(ctx: SingleInsertQueryContext): AnyRef
Visit a parse tree produced by the
singleInsertQuerylabeled alternative inSqlBaseParser#dmlStatementNoWith.Visit a parse tree produced by the
singleInsertQuerylabeled alternative inSqlBaseParser#dmlStatementNoWith.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSmallIntLiteral(ctx: SmallIntLiteralContext): AnyRef
Visit a parse tree produced by the
smallIntLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
smallIntLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitStar(ctx: StarContext): AnyRef
Visit a parse tree produced by the
starlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
starlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitStatementDefault(ctx: StatementDefaultContext): AnyRef
Visit a parse tree produced by the
statementDefaultlabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
statementDefaultlabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitStreamRelation(ctx: StreamRelationContext): AnyRef
Visit a parse tree produced by the
streamRelationlabeled alternative inSqlBaseParser#relationPrimary.Visit a parse tree produced by the
streamRelationlabeled alternative inSqlBaseParser#relationPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitStreamTableName(ctx: StreamTableNameContext): AnyRef
Visit a parse tree produced by the
streamTableNamelabeled alternative inSqlBaseParser#streamRelationPrimary.Visit a parse tree produced by the
streamTableNamelabeled alternative inSqlBaseParser#streamRelationPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
- DataTypeAstBuilder → SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- def visitStringLiteral(ctx: StringLiteralContext): AnyRef
Visit a parse tree produced by the
stringLiterallabeled alternative inSqlBaseParser#constant.Visit a parse tree produced by the
stringLiterallabeled alternative inSqlBaseParser#constant.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitStruct(ctx: StructContext): AnyRef
Visit a parse tree produced by the
structlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
structlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSubquery(ctx: SubqueryContext): AnyRef
Visit a parse tree produced by the
subquerylabeled alternative inSqlBaseParser#queryPrimary.Visit a parse tree produced by the
subquerylabeled alternative inSqlBaseParser#queryPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSubqueryExpression(ctx: SubqueryExpressionContext): AnyRef
Visit a parse tree produced by the
subqueryExpressionlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
subqueryExpressionlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSubscript(ctx: SubscriptContext): AnyRef
Visit a parse tree produced by the
subscriptlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
subscriptlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitSubstring(ctx: SubstringContext): AnyRef
Visit a parse tree produced by the
substringlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
substringlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTable(ctx: TableContext): AnyRef
Visit a parse tree produced by the
tablelabeled alternative inSqlBaseParser#queryPrimary.Visit a parse tree produced by the
tablelabeled alternative inSqlBaseParser#queryPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTableFileFormat(ctx: TableFileFormatContext): AnyRef
Visit a parse tree produced by the
tableFileFormatlabeled alternative inSqlBaseParser#fileFormat.Visit a parse tree produced by the
tableFileFormatlabeled alternative inSqlBaseParser#fileFormat.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTableName(ctx: TableNameContext): AnyRef
Visit a parse tree produced by the
tableNamelabeled alternative inSqlBaseParser#relationPrimary.Visit a parse tree produced by the
tableNamelabeled alternative inSqlBaseParser#relationPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTableValuedFunction(ctx: TableValuedFunctionContext): AnyRef
Visit a parse tree produced by the
tableValuedFunctionlabeled alternative inSqlBaseParser#relationPrimary.Visit a parse tree produced by the
tableValuedFunctionlabeled alternative inSqlBaseParser#relationPrimary.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTerminal(arg0: TerminalNode): AnyRef
- Definition Classes
- AbstractParseTreeVisitor → ParseTreeVisitor
- def visitTimestampadd(ctx: TimestampaddContext): AnyRef
Visit a parse tree produced by the
timestampaddlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
timestampaddlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTimestampdiff(ctx: TimestampdiffContext): AnyRef
Visit a parse tree produced by the
timestampdifflabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
timestampdifflabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTinyIntLiteral(ctx: TinyIntLiteralContext): AnyRef
Visit a parse tree produced by the
tinyIntLiterallabeled alternative inSqlBaseParser#number.Visit a parse tree produced by the
tinyIntLiterallabeled alternative inSqlBaseParser#number.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTransformQuerySpecification(ctx: TransformQuerySpecificationContext): AnyRef
Visit a parse tree produced by the
transformQuerySpecificationlabeled alternative inSqlBaseParser#querySpecification.Visit a parse tree produced by the
transformQuerySpecificationlabeled alternative inSqlBaseParser#querySpecification.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTrim(ctx: TrimContext): AnyRef
Visit a parse tree produced by the
trimlabeled alternative inSqlBaseParser#primaryExpression.Visit a parse tree produced by the
trimlabeled alternative inSqlBaseParser#primaryExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTruncateTable(ctx: TruncateTableContext): AnyRef
Visit a parse tree produced by the
truncateTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
truncateTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitTypeConstructor(ctx: TypeConstructorContext): AnyRef
Visit a parse tree produced by the
typeConstructorlabeled alternative inSqlBaseParser#constant.Visit a parse tree produced by the
typeConstructorlabeled alternative inSqlBaseParser#constant.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitUncacheTable(ctx: UncacheTableContext): AnyRef
Visit a parse tree produced by the
uncacheTablelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
uncacheTablelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitUnquotedIdentifier(ctx: UnquotedIdentifierContext): AnyRef
Visit a parse tree produced by the
unquotedIdentifierlabeled alternative inSqlBaseParser#strictIdentifier.Visit a parse tree produced by the
unquotedIdentifierlabeled alternative inSqlBaseParser#strictIdentifier.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitUnsetNamespaceProperties(ctx: UnsetNamespacePropertiesContext): AnyRef
Visit a parse tree produced by the
unsetNamespacePropertieslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
unsetNamespacePropertieslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitUnsetTableProperties(ctx: UnsetTablePropertiesContext): AnyRef
Visit a parse tree produced by the
unsetTablePropertieslabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
unsetTablePropertieslabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitUpdateTable(ctx: UpdateTableContext): AnyRef
Visit a parse tree produced by the
updateTablelabeled alternative inSqlBaseParser#dmlStatementNoWith.Visit a parse tree produced by the
updateTablelabeled alternative inSqlBaseParser#dmlStatementNoWith.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitUse(ctx: UseContext): AnyRef
Visit a parse tree produced by the
uselabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
uselabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitUseNamespace(ctx: UseNamespaceContext): AnyRef
Visit a parse tree produced by the
useNamespacelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
useNamespacelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitValueExpressionDefault(ctx: ValueExpressionDefaultContext): AnyRef
Visit a parse tree produced by the
valueExpressionDefaultlabeled alternative inSqlBaseParser#valueExpression.Visit a parse tree produced by the
valueExpressionDefaultlabeled alternative inSqlBaseParser#valueExpression.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitVisitExecuteImmediate(ctx: VisitExecuteImmediateContext): AnyRef
Visit a parse tree produced by the
visitExecuteImmediatelabeled alternative inSqlBaseParser#statement.Visit a parse tree produced by the
visitExecuteImmediatelabeled alternative inSqlBaseParser#statement.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitWindowDef(ctx: WindowDefContext): AnyRef
Visit a parse tree produced by the
windowDeflabeled alternative inSqlBaseParser#windowSpec.Visit a parse tree produced by the
windowDeflabeled alternative inSqlBaseParser#windowSpec.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- 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
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- def visitWindowRef(ctx: WindowRefContext): AnyRef
Visit a parse tree produced by the
windowReflabeled alternative inSqlBaseParser#windowSpec.Visit a parse tree produced by the
windowReflabeled alternative inSqlBaseParser#windowSpec.The default implementation returns the result of calling
#visitChildrenonctx.- ctx
the parse tree
- returns
the visitor result
- Definition Classes
- SqlBaseParserBaseVisitor → SqlBaseParserVisitor
- Annotations
- @Override()
- final def wait(arg0: Long, arg1: Int): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
- final def wait(arg0: Long): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException]) @native()
- final def wait(): Unit
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.InterruptedException])
Deprecated Value Members
- def finalize(): Unit
- Attributes
- protected[lang]
- Definition Classes
- AnyRef
- Annotations
- @throws(classOf[java.lang.Throwable]) @Deprecated
- Deprecated
(Since version 9)