diff options
author | David Storch <david.storch@mongodb.com> | 2023-04-13 21:47:43 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2023-04-13 22:27:19 +0000 |
commit | 33e6eec5978a20a4b227c36f26b0ae909e8e6728 (patch) | |
tree | fffb4cf2592f030806854fe6a381bb21010319c5 /src/mongo/s/commands/cluster_filemd5_cmd.cpp | |
parent | 122f7b197a85159492b86d971305c51deb667a57 (diff) | |
download | mongo-33e6eec5978a20a4b227c36f26b0ae909e8e6728.tar.gz |
SERVER-75356 Fix sharded explain path's handling of 'let' parameters
Diffstat (limited to 'src/mongo/s/commands/cluster_filemd5_cmd.cpp')
-rw-r--r-- | src/mongo/s/commands/cluster_filemd5_cmd.cpp | 4 |
1 files changed, 3 insertions, 1 deletions
diff --git a/src/mongo/s/commands/cluster_filemd5_cmd.cpp b/src/mongo/s/commands/cluster_filemd5_cmd.cpp index 63b5a2a5033..12ab9f07730 100644 --- a/src/mongo/s/commands/cluster_filemd5_cmd.cpp +++ b/src/mongo/s/commands/cluster_filemd5_cmd.cpp @@ -107,7 +107,9 @@ public: ReadPreferenceSetting::get(opCtx), Shard::RetryPolicy::kIdempotent, routingQuery, - CollationSpec::kSimpleSpec); + CollationSpec::kSimpleSpec, + boost::none /*letParameters*/, + boost::none /*runtimeConstants*/); invariant(shardResults.size() == 1); const auto shardResponse = uassertStatusOK(std::move(shardResults[0].swResponse)); uassertStatusOK(shardResponse.status); |