summaryrefslogtreecommitdiff
path: root/src/mongo/db/catalog/index_create.h
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/catalog/index_create.h')
-rw-r--r--src/mongo/db/catalog/index_create.h6
1 files changed, 3 insertions, 3 deletions
diff --git a/src/mongo/db/catalog/index_create.h b/src/mongo/db/catalog/index_create.h
index a0830e6147d..d28fe33cc23 100644
--- a/src/mongo/db/catalog/index_create.h
+++ b/src/mongo/db/catalog/index_create.h
@@ -139,7 +139,7 @@ namespace mongo {
*
* Should not be called inside of a WriteUnitOfWork.
*/
- Status insertAllDocumentsInCollection(std::set<DiskLoc>* dupsOut = NULL);
+ Status insertAllDocumentsInCollection(std::set<RecordId>* dupsOut = NULL);
/**
* Call this after init() for each document in the collection.
@@ -148,7 +148,7 @@ namespace mongo {
*
* Should be called inside of a WriteUnitOfWork.
*/
- Status insert(const BSONObj& wholeDocument, const DiskLoc& loc);
+ Status insert(const BSONObj& wholeDocument, const RecordId& loc);
/**
* Call this after the last insert(). This gives the index builder a chance to do any
@@ -162,7 +162,7 @@ namespace mongo {
*
* Should not be called inside of a WriteUnitOfWork.
*/
- Status doneInserting(std::set<DiskLoc>* dupsOut = NULL);
+ Status doneInserting(std::set<RecordId>* dupsOut = NULL);
/**
* Marks the index ready for use. Should only be called as the last method after