| 221 | } |
| 222 | |
| 223 | Iterator* Version::NewConcatenatingIterator(const ReadOptions& options, |
| 224 | int level) const { |
| 225 | return NewTwoLevelIterator( |
| 226 | new LevelFileNumIterator(vset_->icmp_, &files_[level]), &GetFileIterator, |
| 227 | vset_->table_cache_, options); |
| 228 | } |
| 229 | |
| 230 | void Version::AddIterators(const ReadOptions& options, |
| 231 | std::vector<Iterator*>* iters) { |
nothing calls this directly
no test coverage detected