Returns the encoded key comprised of begin key and log uid
| 1095 | |
| 1096 | // Returns the encoded key comprised of begin key and log uid |
| 1097 | Key logRangesEncodeKey(KeyRef keyBegin, UID logUid) { |
| 1098 | return keyBegin.withPrefix(uidPrefixKey(logRangesRange.begin, logUid)); |
| 1099 | } |
| 1100 | |
| 1101 | // Returns the start key and optionally the logRange Uid |
| 1102 | KeyRef logRangesDecodeKey(KeyRef key, UID* logUid) { |
no test coverage detected