ContainExpression - TokenType of Expression that represents structure for IN operator Example: colName IN ('value1', 'value2', 'value3')
| 112 | // Example: |
| 113 | // colName IN ('value1', 'value2', 'value3') |
| 114 | type ContainExpression struct { |
| 115 | Left Identifier // name of column |
| 116 | Right []Anonymitifier // name of column |
| 117 | Contains bool // IN or NOTIN |
| 118 | } |
| 119 | |
| 120 | func (ls ContainExpression) GetIdentifiers() []Identifier { |
| 121 | return []Identifier{ls.Left} |
nothing calls this directly
no outgoing calls
no test coverage detected