| 1451 | } |
| 1452 | |
| 1453 | const Value blobGranuleLockValueFor(int64_t epoch, int64_t seqno, UID changeFeedId) { |
| 1454 | BinaryWriter wr(IncludeVersion(ProtocolVersion::withBlobGranule())); |
| 1455 | wr << epoch; |
| 1456 | wr << seqno; |
| 1457 | wr << changeFeedId; |
| 1458 | return wr.toValue(); |
| 1459 | } |
| 1460 | |
| 1461 | std::tuple<int64_t, int64_t, UID> decodeBlobGranuleLockValue(const ValueRef& value) { |
| 1462 | int64_t epoch, seqno; |
no test coverage detected