| 208 | } |
| 209 | |
| 210 | Iterator* Table::NewIterator(const ReadOptions& options) const { |
| 211 | return NewTwoLevelIterator( |
| 212 | rep_->index_block->NewIterator(rep_->options.comparator), |
| 213 | &Table::BlockReader, const_cast<Table*>(this), options); |
| 214 | } |
| 215 | |
| 216 | Status Table::InternalGet(const ReadOptions& options, const Slice& k, void* arg, |
| 217 | void (*handle_result)(void*, const Slice&, |
no test coverage detected