| 112 | } |
| 113 | |
| 114 | bool InternalFilterPolicy::KeyMayMatch(const Slice& key, const Slice& f) const { |
| 115 | return user_policy_->KeyMayMatch(ExtractUserKey(key), f); |
| 116 | } |
| 117 | |
| 118 | LookupKey::LookupKey(const Slice& user_key, SequenceNumber s) { |
| 119 | size_t usize = user_key.size(); |
nothing calls this directly
no test coverage detected