| 20 | } |
| 21 | |
| 22 | void AppendInternalKey(std::string* result, const ParsedInternalKey& key) { |
| 23 | result->append(key.user_key.data(), key.user_key.size()); |
| 24 | PutFixed64(result, PackSequenceAndType(key.sequence, key.type)); |
| 25 | } |
| 26 | |
| 27 | std::string ParsedInternalKey::DebugString() const { |
| 28 | std::ostringstream ss; |