summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/plan_stage.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/plan_stage.h')
-rw-r--r--src/mongo/db/exec/plan_stage.h8
1 files changed, 4 insertions, 4 deletions
diff --git a/src/mongo/db/exec/plan_stage.h b/src/mongo/db/exec/plan_stage.h
index 1adba4bd906..da85ceb2d58 100644
--- a/src/mongo/db/exec/plan_stage.h
+++ b/src/mongo/db/exec/plan_stage.h
@@ -35,7 +35,7 @@
namespace mongo {
class Collection;
- class DiskLoc;
+ class RecordId;
class OperationContext;
/**
@@ -208,9 +208,9 @@ namespace mongo {
virtual void restoreState(OperationContext* opCtx) = 0;
/**
- * Notifies a stage that a DiskLoc is going to be deleted (or in-place updated) so that the
+ * Notifies a stage that a RecordId is going to be deleted (or in-place updated) so that the
* stage can invalidate or modify any state required to continue processing without this
- * DiskLoc.
+ * RecordId.
*
* Can only be called after a saveState but before a restoreState.
*
@@ -219,7 +219,7 @@ namespace mongo {
* stage's own OperationContext is inactive during the invalidate and should not be used).
*/
virtual void invalidate(OperationContext* txn,
- const DiskLoc& dl,
+ const RecordId& dl,
InvalidationType type) = 0;
/**