| 237 | bool range_is_tight() override { return true; } |
| 238 | |
| 239 | void get_range(Optional<DataValue>& min, Optional<DataValue>& max) override { |
| 240 | min = value; |
| 241 | max = value; |
| 242 | } |
| 243 | // Not(Eq) could be translated to Or(Range,Range), but it's not |
| 244 | // obvious that this is always a win without knowing about |
| 245 | // available indexes, so no simplify_not() here. |
nothing calls this directly
no outgoing calls
no test coverage detected