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/or.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/or.h')
-rw-r--r-- | src/mongo/db/exec/or.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/or.h b/src/mongo/db/exec/or.h index d0fd1a33209..ebe9d7bc10c 100644 --- a/src/mongo/db/exec/or.h +++ b/src/mongo/db/exec/or.h @@ -45,7 +45,7 @@ namespace mongo { */ class OrStage final : public PlanStage { public: - OrStage(WorkingSet* ws, bool dedup, const MatchExpression* filter); + OrStage(OperationContext* opCtx, WorkingSet* ws, bool dedup, const MatchExpression* filter); void addChild(PlanStage* child); |