| 364 | } |
| 365 | |
| 366 | void RangePredicate::get_range(Optional<DataValue>& min, Optional<DataValue>& max) { |
| 367 | min = min_value; |
| 368 | max = max_value; |
| 369 | } |
| 370 | |
| 371 | // Commented out, because this breaks semantics of comparing vs. null elements. Maybe SOMEDAY we can restore something |
| 372 | // like it? |