| 1488 | } |
| 1489 | |
| 1490 | const KeyRange blobGranuleSplitKeyRangeFor(UID const& parentGranuleID) { |
| 1491 | BinaryWriter wr(AssumeVersion(ProtocolVersion::withBlobGranule())); |
| 1492 | wr.serializeBytes(blobGranuleSplitKeys.begin); |
| 1493 | wr << parentGranuleID; |
| 1494 | |
| 1495 | Key startKey = wr.toValue(); |
| 1496 | return KeyRangeRef(startKey, strinc(startKey)); |
| 1497 | } |
| 1498 | |
| 1499 | const Key blobGranuleMergeKeyFor(UID const& mergeGranuleID) { |
| 1500 | // TODO should we bump this assumed version to 7.2 as blob granule merging is not in 7.1? 7.1 won't try to read this |
no test coverage detected