| 16 | } |
| 17 | |
| 18 | static std::string Shorten(const std::string& s, const std::string& l) { |
| 19 | std::string result = s; |
| 20 | InternalKeyComparator(BytewiseComparator()).FindShortestSeparator(&result, l); |
| 21 | return result; |
| 22 | } |
| 23 | |
| 24 | static std::string ShortSuccessor(const std::string& s) { |
| 25 | std::string result = s; |
no test coverage detected