From ab689c15777a5c2f7d35f602d125fdc7f2fb344c Mon Sep 17 00:00:00 2001 From: Geert Bosch Date: Mon, 29 Apr 2019 14:11:12 -0400 Subject: SERVER-40892 Rename UUIDCatalog to CollectionCatalog --- src/mongo/dbtests/rollbacktests.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mongo/dbtests/rollbacktests.cpp') diff --git a/src/mongo/dbtests/rollbacktests.cpp b/src/mongo/dbtests/rollbacktests.cpp index c91b941632d..499661fe8ed 100644 --- a/src/mongo/dbtests/rollbacktests.cpp +++ b/src/mongo/dbtests/rollbacktests.cpp @@ -63,8 +63,8 @@ void dropDatabase(OperationContext* opCtx, const NamespaceString& nss) { } bool collectionExists(OperationContext* opCtx, OldClientContext* ctx, const string& ns) { auto nss = NamespaceString(ns); - std::vector collections = - UUIDCatalog::get(getGlobalServiceContext()).getAllCollectionNamesFromDb(opCtx, nss.db()); + std::vector collections = CollectionCatalog::get(getGlobalServiceContext()) + .getAllCollectionNamesFromDb(opCtx, nss.db()); return std::count(collections.begin(), collections.end(), nss) > 0; } -- cgit v1.2.1