MCPcopy Create free account
hub / github.com/LissaGreense/GO4SQL / ConditionExpression

Struct ConditionExpression

ast/ast.go:90–94  ·  view source on GitHub ↗

ConditionExpression - TokenType of Expression that represent condition that is comparing value from column to static one Example: column1 EQUAL 123

Source from the content-addressed store, hash-verified

88// Example:
89// column1 EQUAL 123
90type ConditionExpression struct {
91 Left Tifier // name of column
92 Right Tifier // value which column should have
93 Condition token.Token // example: token.EQUAL
94}
95
96func (ls ConditionExpression) GetIdentifiers() []Identifier {
97 var identifiers []Identifier

Callers

nothing calls this directly

Calls

no outgoing calls

Tested by

no test coverage detected