MCPcopy Create free account
hub / github.com/ajitpratap0/GoSQLX / BetweenExpression

Struct BetweenExpression

pkg/sql/ast/ast.go:856–862  ·  view source on GitHub ↗

BetweenExpression represents expr BETWEEN lower AND upper

Source from the content-addressed store, hash-verified

854
855// BetweenExpression represents expr BETWEEN lower AND upper
856type BetweenExpression struct {
857 Expr Expression
858 Lower Expression
859 Upper Expression
860 Not bool
861 Pos models.Location // Source position of the BETWEEN keyword (1-based line and column)
862}
863
864func (b *BetweenExpression) expressionNode() {}
865func (b BetweenExpression) TokenLiteral() string { return "BETWEEN" }

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected