True if either the row or byte limit has been reached
| 2725 | |
| 2726 | // True if either the row or byte limit has been reached |
| 2727 | bool GetRangeLimits::isReached() { |
| 2728 | return rows == 0 || (bytes == 0 && minRows == 0); |
| 2729 | } |
| 2730 | |
| 2731 | // True if data would cause the row or byte limit to be reached |
| 2732 | bool GetRangeLimits::reachedBy(VectorRef<KeyValueRef> const& data) { |
no outgoing calls