summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/resharding/resharding_manual_cleanup.cpp
diff options
context:
space:
mode:
authorIrina Yatsenko <irina.yatsenko@mongodb.com>2021-08-16 15:35:51 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-08-23 19:44:53 +0000
commitdf329d8f46e1485dd5d70379f9c48bf4175f0d5a (patch)
tree80adf0442b021bdd689d59697a6b85ebf4dab24d /src/mongo/db/s/resharding/resharding_manual_cleanup.cpp
parent5cf8a293567989fcc970fb21cde4a1af111c8b58 (diff)
downloadmongo-df329d8f46e1485dd5d70379f9c48bf4175f0d5a.tar.gz
SERVER-58670 Tighten up what kind of BSON the 'Query' type can be wrapped around
This refactor includes: Remove dead code from 'Query' type and reduce it public interface. Split query argument in query/update/removed methods into filter BSON and settings (which are still passed around as 'Query' type). Remove Query(string) constructors. Remove most callers of 'Query(const BSONObj&)'. Replace public 'Query(const BSON&)' and 'Query.obj' with an explicit factory method and a getter.
Diffstat (limited to 'src/mongo/db/s/resharding/resharding_manual_cleanup.cpp')
-rw-r--r--src/mongo/db/s/resharding/resharding_manual_cleanup.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/s/resharding/resharding_manual_cleanup.cpp b/src/mongo/db/s/resharding/resharding_manual_cleanup.cpp
index cb6efb31d30..7cd00b1f637 100644
--- a/src/mongo/db/s/resharding/resharding_manual_cleanup.cpp
+++ b/src/mongo/db/s/resharding/resharding_manual_cleanup.cpp
@@ -132,7 +132,7 @@ ReshardingCleaner<Service, StateMachine, ReshardingDocument>::_fetchReshardingDo
OperationContext* opCtx) {
boost::optional<ReshardingDocument> docOptional;
_store.forEach(opCtx,
- QUERY(ReshardingDocument::kReshardingUUIDFieldName << _reshardingUUID),
+ BSON(ReshardingDocument::kReshardingUUIDFieldName << _reshardingUUID),
[&](const ReshardingDocument& doc) {
docOptional.emplace(doc);
return false;