| 41 | } |
| 42 | |
| 43 | bool UnpackUserKey(const leveldb::Slice& packed_key, leveldb::Slice* short_key, int64_t* timestamp, |
| 44 | UserKeyType* type) { |
| 45 | return ParseKeySlice(packed_key, timestamp, type, short_key, NULL); |
| 46 | } |
| 47 | |
| 48 | leveldb::Slice ExtractTimeKey(const leveldb::Slice& key_slice) { |
| 49 | leveldb::Slice sub_key; |
nothing calls this directly
no test coverage detected