| 1444 | } |
| 1445 | |
| 1446 | const Key blobGranuleLockKeyFor(KeyRangeRef const& keyRange) { |
| 1447 | BinaryWriter wr(AssumeVersion(ProtocolVersion::withBlobGranule())); |
| 1448 | wr.serializeBytes(blobGranuleLockKeys.begin); |
| 1449 | wr << keyRange; |
| 1450 | return wr.toValue(); |
| 1451 | } |
| 1452 | |
| 1453 | const Value blobGranuleLockValueFor(int64_t epoch, int64_t seqno, UID changeFeedId) { |
| 1454 | BinaryWriter wr(IncludeVersion(ProtocolVersion::withBlobGranule())); |
no test coverage detected