summaryrefslogtreecommitdiff
path: root/src/mongo/db/query/get_executor.h
diff options
context:
space:
mode:
authorTess Avitabile <tess.avitabile@mongodb.com>2016-05-27 13:19:43 -0400
committerTess Avitabile <tess.avitabile@mongodb.com>2016-06-06 09:49:54 -0400
commit62f7837d70f2eb9ad63dcae57ae515dd868d339b (patch)
treed785b43e43fd0f7871baff6afa3a7a69c3114486 /src/mongo/db/query/get_executor.h
parente533634d86aae9385d9bdd94e15d992c4c8de622 (diff)
downloadmongo-62f7837d70f2eb9ad63dcae57ae515dd868d339b.tar.gz
SERVER-24175 Distinct command should respect the collation
Diffstat (limited to 'src/mongo/db/query/get_executor.h')
-rw-r--r--src/mongo/db/query/get_executor.h5
1 files changed, 2 insertions, 3 deletions
diff --git a/src/mongo/db/query/get_executor.h b/src/mongo/db/query/get_executor.h
index c15c7144370..d4de2c44146 100644
--- a/src/mongo/db/query/get_executor.h
+++ b/src/mongo/db/query/get_executor.h
@@ -32,6 +32,7 @@
#include "mongo/db/ops/update_driver.h"
#include "mongo/db/ops/update_request.h"
#include "mongo/db/query/canonical_query.h"
+#include "mongo/db/query/parsed_distinct.h"
#include "mongo/db/query/plan_executor.h"
#include "mongo/db/query/query_planner_params.h"
#include "mongo/db/query/query_settings.h"
@@ -112,9 +113,7 @@ StatusWith<std::unique_ptr<PlanExecutor>> getExecutorDistinct(
OperationContext* txn,
Collection* collection,
const std::string& ns,
- const BSONObj& query,
- const std::string& field,
- bool isExplain,
+ ParsedDistinct* parsedDistinct,
PlanExecutor::YieldPolicy yieldPolicy);
/*