Returns a key prefixed with the specified key with the uid encoded at the end
| 1137 | // Returns a key prefixed with the specified key with |
| 1138 | // the uid encoded at the end |
| 1139 | Key uidPrefixKey(KeyRef keyPrefix, UID logUid) { |
| 1140 | BinaryWriter bw(Unversioned()); |
| 1141 | bw.serializeBytes(keyPrefix); |
| 1142 | bw << logUid; |
| 1143 | return bw.toValue(); |
| 1144 | } |
| 1145 | |
| 1146 | // Apply mutations constant variables |
| 1147 | // \xff/applyMutationsEnd/[16-byte UID] := serialize( endVersion, Unversioned() ) |
no test coverage detected