summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/sbe/stages/collection_helpers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/sbe/stages/collection_helpers.cpp')
-rw-r--r--src/mongo/db/exec/sbe/stages/collection_helpers.cpp4
1 files changed, 2 insertions, 2 deletions
diff --git a/src/mongo/db/exec/sbe/stages/collection_helpers.cpp b/src/mongo/db/exec/sbe/stages/collection_helpers.cpp
index 01139f3c5c5..6eec51407dd 100644
--- a/src/mongo/db/exec/sbe/stages/collection_helpers.cpp
+++ b/src/mongo/db/exec/sbe/stages/collection_helpers.cpp
@@ -36,7 +36,7 @@
namespace mongo::sbe {
std::tuple<CollectionPtr, NamespaceString, uint64_t> acquireCollection(OperationContext* opCtx,
- CollectionUUID collUuid) {
+ const UUID& collUuid) {
// The collection is either locked at a higher level or a snapshot of the catalog (consistent
// with the storage engine snapshot from which we are reading) has been stashed on the
// 'OperationContext'. Either way, this means that the UUID must still exist in our view of the
@@ -50,7 +50,7 @@ std::tuple<CollectionPtr, NamespaceString, uint64_t> acquireCollection(Operation
CollectionPtr restoreCollection(OperationContext* opCtx,
const NamespaceString& collName,
- CollectionUUID collUuid,
+ const UUID& collUuid,
uint64_t catalogEpoch) {
// Re-lookup the collection pointer, by UUID. If the collection has been dropped, then this UUID
// lookup will result in a null pointer. If the collection has been renamed, then the resulting