diff options
Diffstat (limited to 'src/mongo/db/exec/cached_plan.h')
-rw-r--r-- | src/mongo/db/exec/cached_plan.h | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/cached_plan.h b/src/mongo/db/exec/cached_plan.h index 2de911411f7..5f9fe877e3f 100644 --- a/src/mongo/db/exec/cached_plan.h +++ b/src/mongo/db/exec/cached_plan.h @@ -41,7 +41,7 @@ namespace mongo { * This stage outputs its mainChild, and possibly its backup child * and also updates the cache. * - * Preconditions: Valid DiskLoc. + * Preconditions: Valid RecordId. * */ class CachedPlanStage : public PlanStage { @@ -64,7 +64,7 @@ namespace mongo { virtual void saveState(); virtual void restoreState(OperationContext* opCtx); - virtual void invalidate(OperationContext* txn, const DiskLoc& dl, InvalidationType type); + virtual void invalidate(OperationContext* txn, const RecordId& dl, InvalidationType type); virtual std::vector<PlanStage*> getChildren() const; |