()
| 288 | ) |
| 289 | |
| 290 | func (o Operator) Valid() bool { |
| 291 | switch o { |
| 292 | case OperatorEq, OperatorNeq, OperatorLt, OperatorLte, OperatorGt, OperatorGte, OperatorIn, OperatorNin, OperatorIlike, OperatorNilike, OperatorOr, OperatorAnd, OperatorCast: |
| 293 | return true |
| 294 | } |
| 295 | return false |
| 296 | } |
| 297 | |
| 298 | type TimeGrain string |
| 299 |
no outgoing calls
no test coverage detected