mirror of
https://github.com/neilotoole/sq.git
synced 2024-12-18 21:52:28 +03:00
f0d83cda86
* Implemented SLQ having()
94 lines
3.1 KiB
Go
94 lines
3.1 KiB
Go
// Code generated from SLQ.g4 by ANTLR 4.13.0. DO NOT EDIT.
|
|
|
|
package slq // SLQ
|
|
import "github.com/antlr4-go/antlr/v4"
|
|
|
|
// A complete Visitor for a parse tree produced by SLQParser.
|
|
type SLQVisitor interface {
|
|
antlr.ParseTreeVisitor
|
|
|
|
// Visit a parse tree produced by SLQParser#stmtList.
|
|
VisitStmtList(ctx *StmtListContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#query.
|
|
VisitQuery(ctx *QueryContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#segment.
|
|
VisitSegment(ctx *SegmentContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#element.
|
|
VisitElement(ctx *ElementContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#funcElement.
|
|
VisitFuncElement(ctx *FuncElementContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#func.
|
|
VisitFunc(ctx *FuncContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#funcName.
|
|
VisitFuncName(ctx *FuncNameContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#join.
|
|
VisitJoin(ctx *JoinContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#joinTable.
|
|
VisitJoinTable(ctx *JoinTableContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#uniqueFunc.
|
|
VisitUniqueFunc(ctx *UniqueFuncContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#countFunc.
|
|
VisitCountFunc(ctx *CountFuncContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#where.
|
|
VisitWhere(ctx *WhereContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#groupByTerm.
|
|
VisitGroupByTerm(ctx *GroupByTermContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#groupBy.
|
|
VisitGroupBy(ctx *GroupByContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#having.
|
|
VisitHaving(ctx *HavingContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#orderByTerm.
|
|
VisitOrderByTerm(ctx *OrderByTermContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#orderBy.
|
|
VisitOrderBy(ctx *OrderByContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#selector.
|
|
VisitSelector(ctx *SelectorContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#selectorElement.
|
|
VisitSelectorElement(ctx *SelectorElementContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#alias.
|
|
VisitAlias(ctx *AliasContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#arg.
|
|
VisitArg(ctx *ArgContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#handleTable.
|
|
VisitHandleTable(ctx *HandleTableContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#handle.
|
|
VisitHandle(ctx *HandleContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#rowRange.
|
|
VisitRowRange(ctx *RowRangeContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#exprElement.
|
|
VisitExprElement(ctx *ExprElementContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#expr.
|
|
VisitExpr(ctx *ExprContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#literal.
|
|
VisitLiteral(ctx *LiteralContext) interface{}
|
|
|
|
// Visit a parse tree produced by SLQParser#unaryOperator.
|
|
VisitUnaryOperator(ctx *UnaryOperatorContext) interface{}
|
|
}
|