diff options
author | Anton Korshunov <anton.korshunov@mongodb.com> | 2019-10-11 20:13:48 +0000 |
---|---|---|
committer | evergreen <evergreen@mongodb.com> | 2019-10-11 20:13:48 +0000 |
commit | 70383ed065e8798aafc4394af7c6d2ac92927f41 (patch) | |
tree | 6f7f64aea51387ed436efd36fdc24e6932489be1 /src/mongo/db/exec/projection_executor.h | |
parent | 34719559a9ec4bd494a59d269d227d06b086affb (diff) | |
download | mongo-70383ed065e8798aafc4394af7c6d2ac92927f41.tar.gz |
SERVER-42423 Use ProjectionExecutor in ProjectionStageDefault
Diffstat (limited to 'src/mongo/db/exec/projection_executor.h')
-rw-r--r-- | src/mongo/db/exec/projection_executor.h | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/src/mongo/db/exec/projection_executor.h b/src/mongo/db/exec/projection_executor.h index 98e7fe89bfd..e3b7b2b24dc 100644 --- a/src/mongo/db/exec/projection_executor.h +++ b/src/mongo/db/exec/projection_executor.h @@ -40,6 +40,6 @@ namespace mongo::projection_executor { */ std::unique_ptr<parsed_aggregation_projection::ParsedAggregationProjection> buildProjectionExecutor( boost::intrusive_ptr<ExpressionContext> expCtx, - projection_ast::Projection* projection, + const projection_ast::Projection* projection, ProjectionPolicies policies); } // namespace mongo::projection_executor |