diff options
author | Qingyang Chen <qingyang.chen@10gen.com> | 2015-08-03 12:17:47 -0400 |
---|---|---|
committer | Qingyang Chen <qingyang.chen@10gen.com> | 2015-08-04 16:12:30 -0400 |
commit | be8a683771004a2541c730a1ac0e35cd13e03a8b (patch) | |
tree | 20b31de1fea9f59011899b568771f069327f113f /src/mongo/db/exec/subplan.h | |
parent | 84182ff1575cbe868a89e7209f12ca665f4bda19 (diff) | |
download | mongo-be8a683771004a2541c730a1ac0e35cd13e03a8b.tar.gz |
SERVER-19364 move query stage OperationContext pointer management into the base class
Diffstat (limited to 'src/mongo/db/exec/subplan.h')
-rw-r--r-- | src/mongo/db/exec/subplan.h | 5 |
1 files changed, 0 insertions, 5 deletions
diff --git a/src/mongo/db/exec/subplan.h b/src/mongo/db/exec/subplan.h index 47b54eea46f..bbb401d337a 100644 --- a/src/mongo/db/exec/subplan.h +++ b/src/mongo/db/exec/subplan.h @@ -77,8 +77,6 @@ public: bool isEOF() final; StageState work(WorkingSetID* out) final; - void doReattachToOperationContext(OperationContext* opCtx) final; - StageType stageType() const final { return STAGE_SUBPLAN; } @@ -174,9 +172,6 @@ private: */ Status choosePlanWholeQuery(PlanYieldPolicy* yieldPolicy); - // transactional context for read locks. Not owned by us - OperationContext* _txn; - // Not owned here. Must be non-null. Collection* _collection; |