summaryrefslogtreecommitdiff
path: root/src/mongo/db/exec/sbe/parser/parser.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/exec/sbe/parser/parser.cpp')
-rw-r--r--src/mongo/db/exec/sbe/parser/parser.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/sbe/parser/parser.cpp b/src/mongo/db/exec/sbe/parser/parser.cpp
index 1f0bb90d357..a169d712ff8 100644
--- a/src/mongo/db/exec/sbe/parser/parser.cpp
+++ b/src/mongo/db/exec/sbe/parser/parser.cpp
@@ -1885,7 +1885,7 @@ std::unique_ptr<PlanStage> Parser::parse(OperationContext* opCtx,
return std::move(ast->stage);
}
-CollectionUUID Parser::getCollectionUuid(const std::string& collName) {
+UUID Parser::getCollectionUuid(const std::string& collName) {
if (!_opCtx) {
// The SBE plan cannot actually run without a valid UUID, but it's useful to allow the
// parser to run in isolation for unit testing.