Why Gemfury? Push, build, and install  RubyGems npm packages Python packages Maven artifacts PHP packages Go Modules Debian packages RPM packages NuGet packages

Repository URL to install this package:

Details    
smartnoise-sql / snsql / sql / parser / SqlSmallVisitor.py
Size: Mime:
# Generated from SqlSmall.g4 by ANTLR 4.9.3
from antlr4 import *
if __name__ is not None and "." in __name__:
    from .SqlSmallParser import SqlSmallParser
else:
    from SqlSmallParser import SqlSmallParser

# This class defines a complete generic visitor for a parse tree produced by SqlSmallParser.

class SqlSmallVisitor(ParseTreeVisitor):

    # Visit a parse tree produced by SqlSmallParser#batch.
    def visitBatch(self, ctx:SqlSmallParser.BatchContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#basicQuery.
    def visitBasicQuery(self, ctx:SqlSmallParser.BasicQueryContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#unifiedQuery.
    def visitUnifiedQuery(self, ctx:SqlSmallParser.UnifiedQueryContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#queryOperations.
    def visitQueryOperations(self, ctx:SqlSmallParser.QueryOperationsContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#selectClause.
    def visitSelectClause(self, ctx:SqlSmallParser.SelectClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#fromClause.
    def visitFromClause(self, ctx:SqlSmallParser.FromClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#whereClause.
    def visitWhereClause(self, ctx:SqlSmallParser.WhereClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aggregationClause.
    def visitAggregationClause(self, ctx:SqlSmallParser.AggregationClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#havingClause.
    def visitHavingClause(self, ctx:SqlSmallParser.HavingClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#orderClause.
    def visitOrderClause(self, ctx:SqlSmallParser.OrderClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#limitClause.
    def visitLimitClause(self, ctx:SqlSmallParser.LimitClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#topClause.
    def visitTopClause(self, ctx:SqlSmallParser.TopClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#joinRelation.
    def visitJoinRelation(self, ctx:SqlSmallParser.JoinRelationContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#joinType.
    def visitJoinType(self, ctx:SqlSmallParser.JoinTypeContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#booleanJoin.
    def visitBooleanJoin(self, ctx:SqlSmallParser.BooleanJoinContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#usingJoin.
    def visitUsingJoin(self, ctx:SqlSmallParser.UsingJoinContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#sortItem.
    def visitSortItem(self, ctx:SqlSmallParser.SortItemContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#setQuantifier.
    def visitSetQuantifier(self, ctx:SqlSmallParser.SetQuantifierContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#relation.
    def visitRelation(self, ctx:SqlSmallParser.RelationContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#table.
    def visitTable(self, ctx:SqlSmallParser.TableContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aliasedQuery.
    def visitAliasedQuery(self, ctx:SqlSmallParser.AliasedQueryContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aliasedRelation.
    def visitAliasedRelation(self, ctx:SqlSmallParser.AliasedRelationContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#unnest.
    def visitUnnest(self, ctx:SqlSmallParser.UnnestContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#tablesample.
    def visitTablesample(self, ctx:SqlSmallParser.TablesampleContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#unnestOperator.
    def visitUnnestOperator(self, ctx:SqlSmallParser.UnnestOperatorContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#caseBaseExpr.
    def visitCaseBaseExpr(self, ctx:SqlSmallParser.CaseBaseExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#caseWhenExpr.
    def visitCaseWhenExpr(self, ctx:SqlSmallParser.CaseWhenExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#namedExpression.
    def visitNamedExpression(self, ctx:SqlSmallParser.NamedExpressionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#namedExpressionSeq.
    def visitNamedExpressionSeq(self, ctx:SqlSmallParser.NamedExpressionSeqContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#namedSubquery.
    def visitNamedSubquery(self, ctx:SqlSmallParser.NamedSubqueryContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#namedSubquerySeq.
    def visitNamedSubquerySeq(self, ctx:SqlSmallParser.NamedSubquerySeqContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#whenExpression.
    def visitWhenExpression(self, ctx:SqlSmallParser.WhenExpressionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#whenBaseExpression.
    def visitWhenBaseExpression(self, ctx:SqlSmallParser.WhenBaseExpressionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#add.
    def visitAdd(self, ctx:SqlSmallParser.AddContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#stringFunc.
    def visitStringFunc(self, ctx:SqlSmallParser.StringFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#castExpr.
    def visitCastExpr(self, ctx:SqlSmallParser.CastExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#subtract.
    def visitSubtract(self, ctx:SqlSmallParser.SubtractContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#nestedExpr.
    def visitNestedExpr(self, ctx:SqlSmallParser.NestedExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dateTimeFunc.
    def visitDateTimeFunc(self, ctx:SqlSmallParser.DateTimeFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#subqueryExpr.
    def visitSubqueryExpr(self, ctx:SqlSmallParser.SubqueryExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#allExpr.
    def visitAllExpr(self, ctx:SqlSmallParser.AllExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#functionExpr.
    def visitFunctionExpr(self, ctx:SqlSmallParser.FunctionExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#rankFunction.
    def visitRankFunction(self, ctx:SqlSmallParser.RankFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#literalExpr.
    def visitLiteralExpr(self, ctx:SqlSmallParser.LiteralExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#divide.
    def visitDivide(self, ctx:SqlSmallParser.DivideContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#caseExpr.
    def visitCaseExpr(self, ctx:SqlSmallParser.CaseExprContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#multiply.
    def visitMultiply(self, ctx:SqlSmallParser.MultiplyContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#modulo.
    def visitModulo(self, ctx:SqlSmallParser.ModuloContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#columnName.
    def visitColumnName(self, ctx:SqlSmallParser.ColumnNameContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#betweenCondition.
    def visitBetweenCondition(self, ctx:SqlSmallParser.BetweenConditionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#inCondition.
    def visitInCondition(self, ctx:SqlSmallParser.InConditionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#isCondition.
    def visitIsCondition(self, ctx:SqlSmallParser.IsConditionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#bareFunc.
    def visitBareFunc(self, ctx:SqlSmallParser.BareFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#roundFunc.
    def visitRoundFunc(self, ctx:SqlSmallParser.RoundFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#powerFunc.
    def visitPowerFunc(self, ctx:SqlSmallParser.PowerFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#truncFunc.
    def visitTruncFunc(self, ctx:SqlSmallParser.TruncFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aggFunc.
    def visitAggFunc(self, ctx:SqlSmallParser.AggFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#mathFunc.
    def visitMathFunc(self, ctx:SqlSmallParser.MathFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#iifFunc.
    def visitIifFunc(self, ctx:SqlSmallParser.IifFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#chooseFunc.
    def visitChooseFunc(self, ctx:SqlSmallParser.ChooseFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#leadFunc.
    def visitLeadFunc(self, ctx:SqlSmallParser.LeadFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#greatestFunc.
    def visitGreatestFunc(self, ctx:SqlSmallParser.GreatestFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#leastFunc.
    def visitLeastFunc(self, ctx:SqlSmallParser.LeastFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#userDefFunc.
    def visitUserDefFunc(self, ctx:SqlSmallParser.UserDefFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#notFunc.
    def visitNotFunc(self, ctx:SqlSmallParser.NotFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#exprArg.
    def visitExprArg(self, ctx:SqlSmallParser.ExprArgContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#datePartArg.
    def visitDatePartArg(self, ctx:SqlSmallParser.DatePartArgContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#typeArg.
    def visitTypeArg(self, ctx:SqlSmallParser.TypeArgContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#boolColumn.
    def visitBoolColumn(self, ctx:SqlSmallParser.BoolColumnContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#logicalNot.
    def visitLogicalNot(self, ctx:SqlSmallParser.LogicalNotContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#comparison.
    def visitComparison(self, ctx:SqlSmallParser.ComparisonContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#predicated.
    def visitPredicated(self, ctx:SqlSmallParser.PredicatedContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#bigqueryRegexpContainsCondition.
    def visitBigqueryRegexpContainsCondition(self, ctx:SqlSmallParser.BigqueryRegexpContainsConditionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#conjunction.
    def visitConjunction(self, ctx:SqlSmallParser.ConjunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#disjunction.
    def visitDisjunction(self, ctx:SqlSmallParser.DisjunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#likeCondition.
    def visitLikeCondition(self, ctx:SqlSmallParser.LikeConditionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#iLikeCondition.
    def visitILikeCondition(self, ctx:SqlSmallParser.ILikeConditionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#nestedBoolean.
    def visitNestedBoolean(self, ctx:SqlSmallParser.NestedBooleanContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#castExpression.
    def visitCastExpression(self, ctx:SqlSmallParser.CastExpressionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dbType.
    def visitDbType(self, ctx:SqlSmallParser.DbTypeContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#bigqueryString.
    def visitBigqueryString(self, ctx:SqlSmallParser.BigqueryStringContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#variableString.
    def visitVariableString(self, ctx:SqlSmallParser.VariableStringContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#fixedString.
    def visitFixedString(self, ctx:SqlSmallParser.FixedStringContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#variableBinary.
    def visitVariableBinary(self, ctx:SqlSmallParser.VariableBinaryContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#bareFunction.
    def visitBareFunction(self, ctx:SqlSmallParser.BareFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#rankingFunction.
    def visitRankingFunction(self, ctx:SqlSmallParser.RankingFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#leadFunction.
    def visitLeadFunction(self, ctx:SqlSmallParser.LeadFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#comparisonOperator.
    def visitComparisonOperator(self, ctx:SqlSmallParser.ComparisonOperatorContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#booleanValue.
    def visitBooleanValue(self, ctx:SqlSmallParser.BooleanValueContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#allExpression.
    def visitAllExpression(self, ctx:SqlSmallParser.AllExpressionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#stringLiteral.
    def visitStringLiteral(self, ctx:SqlSmallParser.StringLiteralContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#rawStringLiteral.
    def visitRawStringLiteral(self, ctx:SqlSmallParser.RawStringLiteralContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#numberLiteral.
    def visitNumberLiteral(self, ctx:SqlSmallParser.NumberLiteralContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#trueLiteral.
    def visitTrueLiteral(self, ctx:SqlSmallParser.TrueLiteralContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#falseLiteral.
    def visitFalseLiteral(self, ctx:SqlSmallParser.FalseLiteralContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#nullLiteral.
    def visitNullLiteral(self, ctx:SqlSmallParser.NullLiteralContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#currentTimeFunc.
    def visitCurrentTimeFunc(self, ctx:SqlSmallParser.CurrentTimeFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#extractFunc.
    def visitExtractFunc(self, ctx:SqlSmallParser.ExtractFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dayNameFunc.
    def visitDayNameFunc(self, ctx:SqlSmallParser.DayNameFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#fromUnixTimeFunc.
    def visitFromUnixTimeFunc(self, ctx:SqlSmallParser.FromUnixTimeFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#unixTimeStampFunc.
    def visitUnixTimeStampFunc(self, ctx:SqlSmallParser.UnixTimeStampFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dateFormatFunc.
    def visitDateFormatFunc(self, ctx:SqlSmallParser.DateFormatFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#formatDateFunc.
    def visitFormatDateFunc(self, ctx:SqlSmallParser.FormatDateFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#quarterFunc.
    def visitQuarterFunc(self, ctx:SqlSmallParser.QuarterFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dowFunc.
    def visitDowFunc(self, ctx:SqlSmallParser.DowFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#datetimeDiffFunc.
    def visitDatetimeDiffFunc(self, ctx:SqlSmallParser.DatetimeDiffFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#datePartFunc.
    def visitDatePartFunc(self, ctx:SqlSmallParser.DatePartFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dateFunc.
    def visitDateFunc(self, ctx:SqlSmallParser.DateFuncContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#extractFunction.
    def visitExtractFunction(self, ctx:SqlSmallParser.ExtractFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dayNameFunction.
    def visitDayNameFunction(self, ctx:SqlSmallParser.DayNameFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#fromUnixTimeFunction.
    def visitFromUnixTimeFunction(self, ctx:SqlSmallParser.FromUnixTimeFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#unixTimeStampFunction.
    def visitUnixTimeStampFunction(self, ctx:SqlSmallParser.UnixTimeStampFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dateFormatFunction.
    def visitDateFormatFunction(self, ctx:SqlSmallParser.DateFormatFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#formatDateFunction.
    def visitFormatDateFunction(self, ctx:SqlSmallParser.FormatDateFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#quarterFunction.
    def visitQuarterFunction(self, ctx:SqlSmallParser.QuarterFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dowFunction.
    def visitDowFunction(self, ctx:SqlSmallParser.DowFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dayOfWeekFunction.
    def visitDayOfWeekFunction(self, ctx:SqlSmallParser.DayOfWeekFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#datetimeDiffFunction.
    def visitDatetimeDiffFunction(self, ctx:SqlSmallParser.DatetimeDiffFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#datePartFunction.
    def visitDatePartFunction(self, ctx:SqlSmallParser.DatePartFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#dateFunction.
    def visitDateFunction(self, ctx:SqlSmallParser.DateFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#datePart.
    def visitDatePart(self, ctx:SqlSmallParser.DatePartContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#getTime.
    def visitGetTime(self, ctx:SqlSmallParser.GetTimeContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#stringFunction.
    def visitStringFunction(self, ctx:SqlSmallParser.StringFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#stringUpper.
    def visitStringUpper(self, ctx:SqlSmallParser.StringUpperContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#stringLower.
    def visitStringLower(self, ctx:SqlSmallParser.StringLowerContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#stringConcat.
    def visitStringConcat(self, ctx:SqlSmallParser.StringConcatContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#coalesceFunction.
    def visitCoalesceFunction(self, ctx:SqlSmallParser.CoalesceFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#trimFunction.
    def visitTrimFunction(self, ctx:SqlSmallParser.TrimFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#substringFunction.
    def visitSubstringFunction(self, ctx:SqlSmallParser.SubstringFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#positionFunction.
    def visitPositionFunction(self, ctx:SqlSmallParser.PositionFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#charLengthFunction.
    def visitCharLengthFunction(self, ctx:SqlSmallParser.CharLengthFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#encodeFunction.
    def visitEncodeFunction(self, ctx:SqlSmallParser.EncodeFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#decodeFunction.
    def visitDecodeFunction(self, ctx:SqlSmallParser.DecodeFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#unhexFunction.
    def visitUnhexFunction(self, ctx:SqlSmallParser.UnhexFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#hexFunction.
    def visitHexFunction(self, ctx:SqlSmallParser.HexFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#regexpSplitToTableFunction.
    def visitRegexpSplitToTableFunction(self, ctx:SqlSmallParser.RegexpSplitToTableFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#substringBigqueryFunction.
    def visitSubstringBigqueryFunction(self, ctx:SqlSmallParser.SubstringBigqueryFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#regexpContainsFunction.
    def visitRegexpContainsFunction(self, ctx:SqlSmallParser.RegexpContainsFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#regexpExctractFunction.
    def visitRegexpExctractFunction(self, ctx:SqlSmallParser.RegexpExctractFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#regexpReplaceFunction.
    def visitRegexpReplaceFunction(self, ctx:SqlSmallParser.RegexpReplaceFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#truncFunction.
    def visitTruncFunction(self, ctx:SqlSmallParser.TruncFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#roundFunction.
    def visitRoundFunction(self, ctx:SqlSmallParser.RoundFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#powerFunction.
    def visitPowerFunction(self, ctx:SqlSmallParser.PowerFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#mathFunctionName.
    def visitMathFunctionName(self, ctx:SqlSmallParser.MathFunctionNameContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#bareFunctionName.
    def visitBareFunctionName(self, ctx:SqlSmallParser.BareFunctionNameContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#greatestFunction.
    def visitGreatestFunction(self, ctx:SqlSmallParser.GreatestFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#leastFunction.
    def visitLeastFunction(self, ctx:SqlSmallParser.LeastFunctionContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#rankingFunctionName.
    def visitRankingFunctionName(self, ctx:SqlSmallParser.RankingFunctionNameContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aggregateFunctionName.
    def visitAggregateFunctionName(self, ctx:SqlSmallParser.AggregateFunctionNameContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#partitionByClause.
    def visitPartitionByClause(self, ctx:SqlSmallParser.PartitionByClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#overClause.
    def visitOverClause(self, ctx:SqlSmallParser.OverClauseContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aliasedSubquery.
    def visitAliasedSubquery(self, ctx:SqlSmallParser.AliasedSubqueryContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aliasedTableOrSubquerySeq.
    def visitAliasedTableOrSubquerySeq(self, ctx:SqlSmallParser.AliasedTableOrSubquerySeqContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aliasedTableSeq.
    def visitAliasedTableSeq(self, ctx:SqlSmallParser.AliasedTableSeqContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#aliasedTableName.
    def visitAliasedTableName(self, ctx:SqlSmallParser.AliasedTableNameContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#qualifiedTableName.
    def visitQualifiedTableName(self, ctx:SqlSmallParser.QualifiedTableNameContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#qualifiedColumnName.
    def visitQualifiedColumnName(self, ctx:SqlSmallParser.QualifiedColumnNameContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#identifier.
    def visitIdentifier(self, ctx:SqlSmallParser.IdentifierContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#decimalLiteral.
    def visitDecimalLiteral(self, ctx:SqlSmallParser.DecimalLiteralContext):
        return self.visitChildren(ctx)


    # Visit a parse tree produced by SqlSmallParser#integerLiteral.
    def visitIntegerLiteral(self, ctx:SqlSmallParser.IntegerLiteralContext):
        return self.visitChildren(ctx)



del SqlSmallParser