summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/and_hash.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/and_hash.cpp')
-rw-r--r--src/mongo/db/exec/and_hash.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/and_hash.cpp b/src/mongo/db/exec/and_hash.cpp
index 4dc0b255576..4e43f55da82 100644
--- a/src/mongo/db/exec/and_hash.cpp
+++ b/src/mongo/db/exec/and_hash.cpp
@@ -440,11 +440,11 @@ namespace mongo {
}
}
- void AndHashStage::recoverFromYield() {
+ void AndHashStage::recoverFromYield(OperationContext* opCtx) {
++_commonStats.unyields;
for (size_t i = 0; i < _children.size(); ++i) {
- _children[i]->recoverFromYield();
+ _children[i]->recoverFromYield(opCtx);
}
}