| 164 | }; |
| 165 | |
| 166 | inline int InternalKeyComparator::Compare(const InternalKey& a, |
| 167 | const InternalKey& b) const { |
| 168 | return Compare(a.Encode(), b.Encode()); |
| 169 | } |
| 170 | |
| 171 | inline bool ParseInternalKey(const Slice& internal_key, |
| 172 | ParsedInternalKey* result) { |
no test coverage detected