summaryrefslogtreecommitdiff
path: root/src/mongo/db/db_raii.h
diff options
context:
space:
mode:
authorDaniel Gómez Ferro <daniel.gomezferro@mongodb.com>2021-11-26 14:39:47 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-12-02 09:08:59 +0000
commita51938f6f77a6c4934c0cc91bca31cebb6af62e5 (patch)
treec6ad3f87cc216930c8707fdb9c7d3d2cfaf084cb /src/mongo/db/db_raii.h
parentc5f47b7a04ce688b088c1373805e876b0debae66 (diff)
downloadmongo-a51938f6f77a6c4934c0cc91bca31cebb6af62e5.tar.gz
SERVER-60837 Remove CollectionUUID and OptionalCollectionUUID aliases
Diffstat (limited to 'src/mongo/db/db_raii.h')
-rw-r--r--src/mongo/db/db_raii.h4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/db_raii.h b/src/mongo/db/db_raii.h
index 30f8d235fb1..47717a3d236 100644
--- a/src/mongo/db/db_raii.h
+++ b/src/mongo/db/db_raii.h
@@ -467,10 +467,10 @@ private:
// Save a reference to the 'primary' CollectionPtr's original restore lambda so that the new one
// can reference it.
- std::function<const Collection*(OperationContext*, CollectionUUID)> _primaryCollectionRestoreFn;
+ std::function<const Collection*(OperationContext*, UUID)> _primaryCollectionRestoreFn;
// Used on query yield restore to identify the 'secondary' collections to check.
- std::vector<CollectionUUID> _secondaryCollectionUUIDs;
+ std::vector<UUID> _secondaryCollectionUUIDs;
};
/**