diff options
Diffstat (limited to 'src/mongo/db/exec/text.cpp')
-rw-r--r-- | src/mongo/db/exec/text.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/text.cpp b/src/mongo/db/exec/text.cpp index a3cfae5c336..60441eb2a81 100644 --- a/src/mongo/db/exec/text.cpp +++ b/src/mongo/db/exec/text.cpp @@ -125,12 +125,12 @@ namespace mongo { } } - void TextStage::invalidate(const DiskLoc& dl, InvalidationType type) { + void TextStage::invalidate(OperationContext* txn, const DiskLoc& dl, InvalidationType type) { ++_commonStats.invalidates; // Propagate invalidate to children. for (size_t i = 0; i < _scanners.size(); ++i) { - _scanners.mutableVector()[i]->invalidate(dl, type); + _scanners.mutableVector()[i]->invalidate(txn, dl, type); } // We store the score keyed by DiskLoc. We have to toss out our state when the DiskLoc |