Fix a previous revert

This commit is contained in:
sdong 2019-10-01 16:58:47 -07:00
parent 89865776b7
commit 2060a008b0

View File

@ -130,8 +130,10 @@ class MergingIterator : public InternalIterator {
ClearHeaps();
status_ = Status::OK();
for (auto& child : children_) {
PERF_TIMER_GUARD(seek_child_seek_time);
child.Seek(target);
{
PERF_TIMER_GUARD(seek_child_seek_time);
child.Seek(target);
}
PERF_COUNTER_ADD(seek_child_seek_count, 1);
if (child.Valid()) {