diff options
author | Jason Rassi <rassi@10gen.com> | 2016-01-14 12:58:13 -0500 |
---|---|---|
committer | Jason Rassi <rassi@10gen.com> | 2016-01-14 15:12:38 -0500 |
commit | 09b89f0986550443a13af16b76ef04d91120bb2f (patch) | |
tree | 977b1fa1965ac1cba4e6b39b430e309636832305 /src/mongo/db/exec/or.h | |
parent | 225ac6a226bc34bdae716c17f3b49f5a1a279e4e (diff) | |
download | mongo-09b89f0986550443a13af16b76ef04d91120bb2f.tar.gz |
SERVER-19377 PlanStage: make work() non-virt, add virt method doWork()
Changes PlanStage::work() to be non-virtual. PlanStage::work() now
updates _commonStats and calls new pure virtual method doWork().
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 ebe9d7bc10c..ea056d7db91 100644 --- a/src/mongo/db/exec/or.h +++ b/src/mongo/db/exec/or.h @@ -51,7 +51,7 @@ public: bool isEOF() final; - StageState work(WorkingSetID* out) final; + StageState doWork(WorkingSetID* out) final; void doInvalidate(OperationContext* txn, const RecordId& dl, InvalidationType type) final; |