diff options
author | David Storch <david.storch@mongodb.com> | 2020-03-30 17:29:22 -0400 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-03-31 19:13:47 +0000 |
commit | 3e670d36c7ef52320e11bfabc5cc42394b605d43 (patch) | |
tree | 270cb94f57ab3c6e5d1fa344b7b05d9bd3111fb9 /src/mongo/s | |
parent | f105232d6594336e35cfee8f7f6d4ef49182ce84 (diff) | |
download | mongo-3e670d36c7ef52320e11bfabc5cc42394b605d43.tar.gz |
SERVER-46169 Remove query-related FCV checks left over from 4.4 development
These checks were necessary for the 4.2/4.4
upgrade/downgrade process but will not be necessary for the
4.4/4.6 upgrade/downgrade. The remaining FCV checks in query
code after this patch are "generic", meaning that they
should be updated to check for FCV "4.6" (once it becomes
available) rather than FCV "4.4".
Diffstat (limited to 'src/mongo/s')
-rw-r--r-- | src/mongo/s/commands/cluster_map_reduce_cmd.cpp | 10 |
1 files changed, 5 insertions, 5 deletions
diff --git a/src/mongo/s/commands/cluster_map_reduce_cmd.cpp b/src/mongo/s/commands/cluster_map_reduce_cmd.cpp index ceb8ff6c133..70da536eb5e 100644 --- a/src/mongo/s/commands/cluster_map_reduce_cmd.cpp +++ b/src/mongo/s/commands/cluster_map_reduce_cmd.cpp @@ -53,11 +53,11 @@ public: runAggregationMapReduce(opCtx, cmd, result, verbosity); } - bool _runImpl(OperationContext* opCtx, - const std::string&, - const BSONObj& cmd, - std::string&, - BSONObjBuilder& result) final { + bool errmsgRun(OperationContext* opCtx, + const std::string&, + const BSONObj& cmd, + std::string&, + BSONObjBuilder& result) final { return runAggregationMapReduce(opCtx, cmd, result, boost::none); } } clusterMapReduceCommand; |