diff options
Diffstat (limited to 'src/mongo/db/query/plan_executor.cpp')
-rw-r--r-- | src/mongo/db/query/plan_executor.cpp | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/query/plan_executor.cpp b/src/mongo/db/query/plan_executor.cpp index 3a46d47a9ce..2dc8a7db2e2 100644 --- a/src/mongo/db/query/plan_executor.cpp +++ b/src/mongo/db/query/plan_executor.cpp @@ -251,11 +251,11 @@ namespace mongo { return !_killed; } - void PlanExecutor::invalidate(OperationContext* txn, const DiskLoc& dl, InvalidationType type) { + void PlanExecutor::invalidate(OperationContext* txn, const RecordId& dl, InvalidationType type) { if (!_killed) { _root->invalidate(txn, dl, type); } } - PlanExecutor::ExecState PlanExecutor::getNext(BSONObj* objOut, DiskLoc* dlOut) { + PlanExecutor::ExecState PlanExecutor::getNext(BSONObj* objOut, RecordId* dlOut) { if (_killed) { return PlanExecutor::DEAD; } // When a stage requests a yield for document fetch, it gives us back a RecordFetcher* |