ConditionExpression - TokenType of Expression that represent condition that is comparing value from column to static one Example: column1 EQUAL 123
| 88 | // Example: |
| 89 | // column1 EQUAL 123 |
| 90 | type 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 | |
| 96 | func (ls ConditionExpression) GetIdentifiers() []Identifier { |
| 97 | var identifiers []Identifier |
nothing calls this directly
no outgoing calls
no test coverage detected