Get rid of LogFlush() in InternalIterator

This commit is contained in:
Igor Canadi 2013-12-10 10:59:00 -08:00
parent 19f5463d3f
commit 204bb9cffd

View File

@ -2559,7 +2559,6 @@ Iterator* DBImpl::NewInternalIterator(const ReadOptions& options,
internal_iter->RegisterCleanup(CleanupIteratorState, cleanup, nullptr);
mutex_.Unlock();
LogFlush(options_.info_log);
return internal_iter;
}