From ed66b586a0e6bc97e4ca91ce33d71d6c303b5278 Mon Sep 17 00:00:00 2001 From: Gabe Villasana Date: Tue, 4 Jun 2019 14:29:09 -0400 Subject: SERVER-39524 remove NamespaceString::virtualized() and friends --- src/mongo/db/catalog/collection_impl.cpp | 4 ++-- 1 file changed, 2 insertions(+), 2 deletions(-) (limited to 'src/mongo/db/catalog/collection_impl.cpp') diff --git a/src/mongo/db/catalog/collection_impl.cpp b/src/mongo/db/catalog/collection_impl.cpp index ff9dcdd6691..59b64121247 100644 --- a/src/mongo/db/catalog/collection_impl.cpp +++ b/src/mongo/db/catalog/collection_impl.cpp @@ -258,8 +258,8 @@ bool CollectionImpl::isInitialized() const { } bool CollectionImpl::requiresIdIndex() const { - if (_ns.isVirtualized() || _ns.isOplog()) { - // No indexes on virtual collections or the oplog. + if (_ns.isOplog()) { + // No indexes on the oplog. return false; } -- cgit v1.2.1