summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/list_collections.cpp
diff options
context:
space:
mode:
authorDaniel Gottlieb <daniel.gottlieb@mongodb.com>2019-11-06 16:24:40 +0000
committerevergreen <evergreen@mongodb.com>2019-11-06 16:24:40 +0000
commit39c08aceaf7fa15a8e65cf80b09863b452425426 (patch)
tree7efc9eab66c71f8894c7ebf6dee8b0ee649dec18 /src/mongo/db/commands/list_collections.cpp
parent0ff5e5e7cc09c31d3fe260cf6602f461e6e20bb6 (diff)
downloadmongo-39c08aceaf7fa15a8e65cf80b09863b452425426.tar.gz
SERVER-44276: Change storage engine catalog map to be keyed by RecordId instead of Namespace.
Diffstat (limited to 'src/mongo/db/commands/list_collections.cpp')
-rw-r--r--src/mongo/db/commands/list_collections.cpp3
1 files changed, 2 insertions, 1 deletions
diff --git a/src/mongo/db/commands/list_collections.cpp b/src/mongo/db/commands/list_collections.cpp
index 398c4f4fb36..ca0dab0d375 100644
--- a/src/mongo/db/commands/list_collections.cpp
+++ b/src/mongo/db/commands/list_collections.cpp
@@ -186,7 +186,8 @@ BSONObj buildCollectionBson(OperationContext* opCtx,
return b.obj();
}
- CollectionOptions options = DurableCatalog::get(opCtx)->getCollectionOptions(opCtx, nss);
+ CollectionOptions options =
+ DurableCatalog::get(opCtx)->getCollectionOptions(opCtx, collection->getCatalogId());
// While the UUID is stored as a collection option, from the user's perspective it is an
// unsettable read-only property, so put it in the 'info' section.