| 25 | } |
| 26 | |
| 27 | std::string ParsedInternalKey::DebugString() const { |
| 28 | std::ostringstream ss; |
| 29 | ss << '\'' << EscapeString(user_key.ToString()) << "' @ " << sequence << " : " |
| 30 | << static_cast<int>(type); |
| 31 | return ss.str(); |
| 32 | } |
| 33 | |
| 34 | std::string InternalKey::DebugString() const { |
| 35 | ParsedInternalKey parsed; |