| 993 | } |
| 994 | |
| 995 | std::vector<std::pair<UID, Version>> decodeBackupStartedValue(const ValueRef& value) { |
| 996 | std::vector<std::pair<UID, Version>> ids; |
| 997 | BinaryReader reader(value, IncludeVersion()); |
| 998 | if (value.size() > 0) |
| 999 | reader >> ids; |
| 1000 | return ids; |
| 1001 | } |
| 1002 | |
| 1003 | const KeyRef coordinatorsKey = LiteralStringRef("\xff/coordinators"); |
| 1004 | const KeyRef logsKey = LiteralStringRef("\xff/logs"); |
no test coverage detected