summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/group_cmd.cpp
diff options
context:
space:
mode:
authorSally McNichols <sally.mcnichols@mongodb.com>2016-06-09 11:51:27 -0400
committerSally McNichols <sally.mcnichols@mongodb.com>2016-06-09 11:51:27 -0400
commit197fab23f1e6d928bc800f5a2a560c48c0543e82 (patch)
tree6f98775ff9142270ceb639dcaa1514583bbd00e6 /src/mongo/db/commands/group_cmd.cpp
parente8ac632f9ce47e7febfd4737ee743bfcba219688 (diff)
downloadmongo-197fab23f1e6d928bc800f5a2a560c48c0543e82.tar.gz
SERVER-23238 remove the public method PlanExecutor::collection()
Diffstat (limited to 'src/mongo/db/commands/group_cmd.cpp')
-rw-r--r--src/mongo/db/commands/group_cmd.cpp2
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/commands/group_cmd.cpp b/src/mongo/db/commands/group_cmd.cpp
index ba9ff7d2ead..d2c9cefa154 100644
--- a/src/mongo/db/commands/group_cmd.cpp
+++ b/src/mongo/db/commands/group_cmd.cpp
@@ -132,7 +132,7 @@ private:
unique_ptr<PlanExecutor> planExecutor = std::move(statusWithPlanExecutor.getValue());
- Explain::explainStages(planExecutor.get(), verbosity, out);
+ Explain::explainStages(planExecutor.get(), coll, verbosity, out);
return Status::OK();
}