| 22 | } |
| 23 | |
| 24 | static std::string ShortSuccessor(const std::string& s) { |
| 25 | std::string result = s; |
| 26 | InternalKeyComparator(BytewiseComparator()).FindShortSuccessor(&result); |
| 27 | return result; |
| 28 | } |
| 29 | |
| 30 | static void TestKey(const std::string& key, uint64_t seq, ValueType vt) { |
| 31 | std::string encoded = IKey(key, seq, vt); |
no test coverage detected