| 1516 | } |
| 1517 | |
| 1518 | const Value blobGranuleSplitValueFor(BlobGranuleSplitState st) { |
| 1519 | BinaryWriter wr(IncludeVersion(ProtocolVersion::withBlobGranule())); |
| 1520 | wr << st; |
| 1521 | return addVersionStampAtEnd(wr.toValue()); |
| 1522 | } |
| 1523 | |
| 1524 | std::pair<BlobGranuleSplitState, Version> decodeBlobGranuleSplitValue(const ValueRef& value) { |
| 1525 | BlobGranuleSplitState st; |
no test coverage detected