| 272 | void applyMutation(MutationRef const& m, Arena& arena, VersionedData& data); |
| 273 | |
| 274 | bool isReadable(KeyRangeRef const& keys) { |
| 275 | auto cr = cachedRangeMap.intersectingRanges(keys); |
| 276 | for (auto i = cr.begin(); i != cr.end(); ++i) |
| 277 | if (!i->value()->isReadable()) |
| 278 | return false; |
| 279 | return true; |
| 280 | } |
| 281 | |
| 282 | void checkChangeCounter(uint64_t oldCacheRangeChangeCounter, KeyRef const& key) { |
| 283 | if (oldCacheRangeChangeCounter != cacheRangeChangeCounter && |
nothing calls this directly
no test coverage detected