| 16 | } |
| 17 | |
| 18 | void AppendInternalKey(std::string* result, const ParsedInternalKey& key) { |
| 19 | result->append(key.user_key.data(), key.user_key.size()); |
| 20 | PutFixed64(result, PackSequenceAndType(key.sequence, key.type)); |
| 21 | } |
| 22 | |
| 23 | std::string ParsedInternalKey::DebugString() const { |
| 24 | char buf[50]; |