From 573844807c902db937e4fc0d90876e1815c4f039 Mon Sep 17 00:00:00 2001 From: Deon Nicholas Date: Fri, 23 Aug 2013 16:36:01 -0700 Subject: [PATCH] Fix for no_io Summary: Oops. My bad. Test Plan: Make all check Reviewers: emayanke Reviewed By: emayanke CC: haobo, leveldb, dhruba Differential Revision: https://reviews.facebook.net/D12525 --- db/db_impl.cc | 2 +- 1 file changed, 1 insertion(+), 1 deletion(-) diff --git a/db/db_impl.cc b/db/db_impl.cc index e765707632..20cfa71601 100644 --- a/db/db_impl.cc +++ b/db/db_impl.cc @@ -2242,7 +2242,7 @@ Status DBImpl::GetImpl(const ReadOptions& options, // Done } else { current->Get(options, lkey, value, &s, &merge_operands, &stats, - options_, value_found); + options_, no_io, value_found); have_stat_update = true; } mutex_.Lock();