| 274 | bool max_closed; |
| 275 | |
| 276 | RangePredicate(DataValue const& min_value, bool min_closed, DataValue const& max_value, bool max_closed) |
| 277 | : min_value(min_value), min_closed(min_closed), max_value(max_value), max_closed(max_closed) {} |
| 278 | |
| 279 | Future<bool> evaluate(Reference<IReadContext> const& context) override; |
| 280 | Reference<IPredicate> simplify() override; |
nothing calls this directly
no outgoing calls
no test coverage detected