| 582 | } |
| 583 | |
| 584 | Key SpecialKeySpace::decode(const KeyRef& key) { |
| 585 | auto impl = writeImpls[key]; |
| 586 | ASSERT(impl != nullptr); |
| 587 | return impl->decode(key); |
| 588 | } |
| 589 | |
| 590 | KeyRange SpecialKeySpace::decode(const KeyRangeRef& kr) { |
| 591 | // Only allow to decode key range in the same underlying impl range |
no test coverage detected