summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorAllison Easton <allison.easton@mongodb.com>2022-09-27 10:34:06 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-09-27 11:06:22 +0000
commit4ef16e59e45b6777a8a5b829881676a55e6d4000 (patch)
tree5a7928d92865a668cf6e48d12a9141bdd9756593
parent4bd4c4535fed263aaaafe6fedfcd4fdf8e181149 (diff)
downloadmongo-4ef16e59e45b6777a8a5b829881676a55e6d4000.tar.gz
SERVER-69936 GlobalIndexesCache should use a StringMap rather than a StringDataMap
-rw-r--r--src/mongo/s/global_index_cache.h2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/s/global_index_cache.h b/src/mongo/s/global_index_cache.h
index f312d8b8df3..eea2dff50b1 100644
--- a/src/mongo/s/global_index_cache.h
+++ b/src/mongo/s/global_index_cache.h
@@ -35,7 +35,7 @@
namespace mongo {
-using IndexCatalogTypeMap = StringDataMap<IndexCatalogType>;
+using IndexCatalogTypeMap = StringMap<IndexCatalogType>;
class GlobalIndexesCache {
public: