RangeCond represents a BETWEEN or a NOT BETWEEN expression.
| 2094 | |
| 2095 | // RangeCond represents a BETWEEN or a NOT BETWEEN expression. |
| 2096 | type RangeCond struct { |
| 2097 | Operator string |
| 2098 | Left Expr |
| 2099 | From, To Expr |
| 2100 | } |
| 2101 | |
| 2102 | // RangeCond.Operator |
| 2103 | const ( |
nothing calls this directly
no outgoing calls
no test coverage detected