summaryrefslogtreecommitdiff
path: root/src/mongo/s/cluster_commands_helpers.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/s/cluster_commands_helpers.cpp')
-rw-r--r--src/mongo/s/cluster_commands_helpers.cpp16
1 files changed, 2 insertions, 14 deletions
diff --git a/src/mongo/s/cluster_commands_helpers.cpp b/src/mongo/s/cluster_commands_helpers.cpp
index 11c2e3b68d5..345c4eae3f7 100644
--- a/src/mongo/s/cluster_commands_helpers.cpp
+++ b/src/mongo/s/cluster_commands_helpers.cpp
@@ -181,13 +181,7 @@ std::vector<AsyncRequestsSender::Request> buildVersionedRequestsForTargetedShard
}
auto expCtx = make_intrusive<ExpressionContext>(opCtx, std::move(collator), nss);
- getShardIdsForQuery(expCtx,
- query,
- collation,
- cm,
- &shardIds,
- nullptr /* chunkRanges */,
- nullptr /* targetMinKeyToMaxKey */);
+ getShardIdsForQuery(expCtx, query, collation, cm, &shardIds, nullptr /* info */);
const auto targetedSampleId = eligibleForSampling
? analyze_shard_key::tryGenerateTargetedSampleId(
@@ -662,13 +656,7 @@ std::set<ShardId> getTargetedShardsForQuery(boost::intrusive_ptr<ExpressionConte
// The collection is sharded. Use the routing table to decide which shards to target based
// on the query and collation.
std::set<ShardId> shardIds;
- getShardIdsForQuery(expCtx,
- query,
- collation,
- cm,
- &shardIds,
- nullptr /* chunkRanges */,
- nullptr /* targetMinKeyToMaxKey */);
+ getShardIdsForQuery(expCtx, query, collation, cm, &shardIds, nullptr /* info */);
return shardIds;
}