| 45 | } |
| 46 | |
| 47 | InMemoryIterator::InMemoryIterator(InMemorySSTableReader *sstable, const std::string &key) |
| 48 | : sstable_(sstable) { |
| 49 | SeekKey(key); |
| 50 | if (valid_) { |
| 51 | LoadItem(); |
| 52 | } |
| 53 | } |
| 54 | |
| 55 | InMemoryIterator::~InMemoryIterator() { |
| 56 | } |
nothing calls this directly
no outgoing calls
no test coverage detected