| 21 | } |
| 22 | |
| 23 | std::string ParsedInternalKey::DebugString() const { |
| 24 | char buf[50]; |
| 25 | snprintf(buf, sizeof(buf), "' @ %llu : %d", |
| 26 | (unsigned long long) sequence, |
| 27 | int(type)); |
| 28 | std::string result = "'"; |
| 29 | result += EscapeString(user_key.ToString()); |
| 30 | result += buf; |
| 31 | return result; |
| 32 | } |
| 33 | |
| 34 | std::string InternalKey::DebugString() const { |
| 35 | std::string result; |
no test coverage detected