summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/projection.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/projection.cpp')
-rw-r--r--src/mongo/db/exec/projection.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/projection.cpp b/src/mongo/db/exec/projection.cpp
index ecbb03704e2..b21bc14a985 100644
--- a/src/mongo/db/exec/projection.cpp
+++ b/src/mongo/db/exec/projection.cpp
@@ -240,9 +240,9 @@ namespace mongo {
_child->prepareToYield();
}
- void ProjectionStage::recoverFromYield() {
+ void ProjectionStage::recoverFromYield(OperationContext* opCtx) {
++_commonStats.unyields;
- _child->recoverFromYield();
+ _child->recoverFromYield(opCtx);
}
void ProjectionStage::invalidate(const DiskLoc& dl, InvalidationType type) {