| 501 | } |
| 502 | |
| 503 | type ScalarFilter struct { |
| 504 | Op Operator |
| 505 | LHS ScalarExpression |
| 506 | RHS ScalarExpression |
| 507 | } |
| 508 | |
| 509 | func newScalarFilter(op Operator, lhs, rhs ScalarExpression) ScalarFilter { |
| 510 | return ScalarFilter{ |
nothing calls this directly
no outgoing calls
no test coverage detected