summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/subplan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/subplan.cpp')
-rw-r--r--src/mongo/db/exec/subplan.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/subplan.cpp b/src/mongo/db/exec/subplan.cpp
index eb834239d24..a8d27dd3faf 100644
--- a/src/mongo/db/exec/subplan.cpp
+++ b/src/mongo/db/exec/subplan.cpp
@@ -516,14 +516,14 @@ namespace mongo {
}
}
- void SubplanStage::invalidate(const DiskLoc& dl, InvalidationType type) {
+ void SubplanStage::invalidate(OperationContext* txn, const DiskLoc& dl, InvalidationType type) {
++_commonStats.invalidates;
if (_killed) {
return;
}
if (NULL != _child.get()) {
- _child->invalidate(dl, type);
+ _child->invalidate(txn, dl, type);
}
}