| 1373 | } |
| 1374 | |
| 1375 | const KeyRange blobGranuleFileKeyRangeFor(UID granuleID) { |
| 1376 | BinaryWriter wr(AssumeVersion(ProtocolVersion::withBlobGranule())); |
| 1377 | wr.serializeBytes(blobGranuleFileKeys.begin); |
| 1378 | wr << granuleID; |
| 1379 | Key startKey = wr.toValue(); |
| 1380 | return KeyRangeRef(startKey, strinc(startKey)); |
| 1381 | } |
| 1382 | |
| 1383 | const Value blobGranuleFileValueFor(StringRef const& filename, |
| 1384 | int64_t offset, |
no test coverage detected