summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/queued_data_stage.h
diff options
context:
space:
mode:
authorQingyang Chen <qingyang.chen@10gen.com>2015-08-03 12:17:47 -0400
committerQingyang Chen <qingyang.chen@10gen.com>2015-08-04 16:12:30 -0400
commitbe8a683771004a2541c730a1ac0e35cd13e03a8b (patch)
tree20b31de1fea9f59011899b568771f069327f113f /src/mongo/db/exec/queued_data_stage.h
parent84182ff1575cbe868a89e7209f12ca665f4bda19 (diff)
downloadmongo-be8a683771004a2541c730a1ac0e35cd13e03a8b.tar.gz
SERVER-19364 move query stage OperationContext pointer management into the base class
Diffstat (limited to 'src/mongo/db/exec/queued_data_stage.h')
-rw-r--r--src/mongo/db/exec/queued_data_stage.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/queued_data_stage.h b/src/mongo/db/exec/queued_data_stage.h
index a3e57f6101f..7e44bc7f3d5 100644
--- a/src/mongo/db/exec/queued_data_stage.h
+++ b/src/mongo/db/exec/queued_data_stage.h
@@ -47,7 +47,7 @@ class RecordId;
*/
class QueuedDataStage final : public PlanStage {
public:
- QueuedDataStage(WorkingSet* ws);
+ QueuedDataStage(OperationContext* opCtx, WorkingSet* ws);
StageState work(WorkingSetID* out) final;