summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/multi_plan.h
diff options
context:
space:
mode:
authorDavid Storch <david.storch@10gen.com>2018-08-30 18:53:07 -0400
committerDavid Storch <david.storch@10gen.com>2018-09-05 11:38:05 -0400
commitfbf57dfc196c3e4d6b0313cadb71f10138b9c018 (patch)
treed55e3a143607b1e091f7ceaeb0dfcac799a11460 /src/mongo/db/exec/multi_plan.h
parent28cef55d81126b04732eaa41ff8b20e45636dde1 (diff)
downloadmongo-fbf57dfc196c3e4d6b0313cadb71f10138b9c018.tar.gz
SERVER-36156 Delete RecordFetcher.
Diffstat (limited to 'src/mongo/db/exec/multi_plan.h')
-rw-r--r--src/mongo/db/exec/multi_plan.h6
1 files changed, 0 insertions, 6 deletions
diff --git a/src/mongo/db/exec/multi_plan.h b/src/mongo/db/exec/multi_plan.h
index 5b118653d9a..30c20599332 100644
--- a/src/mongo/db/exec/multi_plan.h
+++ b/src/mongo/db/exec/multi_plan.h
@@ -220,12 +220,6 @@ private:
// returned by ::work()
WorkingSetID _statusMemberId;
- // When a stage requests a yield for document fetch, it gives us back a RecordFetcher*
- // to use to pull the record into memory. We take ownership of the RecordFetcher here,
- // deleting it after we've had a chance to do the fetch. For timing-based yields, we
- // just pass a NULL fetcher.
- std::unique_ptr<RecordFetcher> _fetcher;
-
// Stats
MultiPlanStats _specificStats;
};