summaryrefslogtreecommitdiff
path: root/src/mongo/dbtests/query_stage_count.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/dbtests/query_stage_count.cpp')
-rw-r--r--src/mongo/dbtests/query_stage_count.cpp6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/dbtests/query_stage_count.cpp b/src/mongo/dbtests/query_stage_count.cpp
index 3593d0841e3..4338880ec73 100644
--- a/src/mongo/dbtests/query_stage_count.cpp
+++ b/src/mongo/dbtests/query_stage_count.cpp
@@ -106,13 +106,13 @@ namespace QueryStageCount {
wunit.commit();
}
- void remove(const DiskLoc& loc) {
+ void remove(const RecordId& loc) {
WriteUnitOfWork wunit(&_txn);
_coll->deleteDocument(&_txn, loc, false, false, NULL);
wunit.commit();
}
- void update(const DiskLoc& oldLoc, const BSONObj& newDoc) {
+ void update(const RecordId& oldLoc, const BSONObj& newDoc) {
WriteUnitOfWork wunit(&_txn);
_coll->updateDocument(&_txn, oldLoc, newDoc, false, NULL);
wunit.commit();
@@ -216,7 +216,7 @@ namespace QueryStageCount {
static const char* ns() { return "unittest.QueryStageCount"; }
protected:
- vector<DiskLoc> _locs;
+ vector<RecordId> _locs;
OperationContextImpl _txn;
Lock::DBLock _dbLock;
Client::Context _ctx;