summaryrefslogtreecommitdiff
path: root/src/mongo/db/storage/kv/durable_catalog_test.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/storage/kv/durable_catalog_test.cpp')
-rw-r--r--src/mongo/db/storage/kv/durable_catalog_test.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/storage/kv/durable_catalog_test.cpp b/src/mongo/db/storage/kv/durable_catalog_test.cpp
index 431ec416cc5..9cd0bd8318b 100644
--- a/src/mongo/db/storage/kv/durable_catalog_test.cpp
+++ b/src/mongo/db/storage/kv/durable_catalog_test.cpp
@@ -86,7 +86,7 @@ public:
operationContext(), *_collectionUUID, CollectionCatalog::LifetimeMode::kInplace);
}
- CollectionUUID createCollection(const NamespaceString& nss, CollectionOptions options) {
+ UUID createCollection(const NamespaceString& nss, CollectionOptions options) {
Lock::DBLock dbLk(operationContext(), nss.db(), MODE_IX);
Lock::CollectionLock collLk(operationContext(), nss, MODE_IX);
@@ -205,7 +205,7 @@ private:
size_t _numIndexesCreated = 0;
- OptionalCollectionUUID _collectionUUID;
+ boost::optional<UUID> _collectionUUID;
};
TEST_F(DurableCatalogTest, MultikeyPathsForBtreeIndexInitializedToVectorOfEmptySets) {