| 9 | namespace leveldb { |
| 10 | |
| 11 | static std::string IKey(const std::string& user_key, uint64_t seq, |
| 12 | ValueType vt) { |
| 13 | std::string encoded; |
| 14 | AppendInternalKey(&encoded, ParsedInternalKey(user_key, seq, vt)); |
| 15 | return encoded; |
| 16 | } |
| 17 | |
| 18 | static std::string Shorten(const std::string& s, const std::string& l) { |
| 19 | std::string result = s; |
no test coverage detected