summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/collection_scan.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/collection_scan.cpp')
-rw-r--r--src/mongo/db/exec/collection_scan.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/collection_scan.cpp b/src/mongo/db/exec/collection_scan.cpp
index 7539ea96289..4c062ec5d8e 100644
--- a/src/mongo/db/exec/collection_scan.cpp
+++ b/src/mongo/db/exec/collection_scan.cpp
@@ -112,7 +112,7 @@ namespace mongo {
if (isEOF())
return PlanStage::IS_EOF;
- const DiskLoc curr = _iter->curr();
+ const RecordId curr = _iter->curr();
if (curr.isNull()) {
// We just hit EOF
if (_params.tailable)
@@ -180,7 +180,7 @@ namespace mongo {
}
void CollectionScan::invalidate(OperationContext* txn,
- const DiskLoc& dl,
+ const RecordId& dl,
InvalidationType type) {
++_commonStats.invalidates;