summaryrefslogtreecommitdiff
path: root/src/mongo/db/commands/map_reduce_agg_test.cpp
Commit message (Collapse)AuthorAgeFilesLines
* SERVER-44318 M/R Agg: Reject MapReduce commands which would create a new ↵Charlie Swanson2019-12-181-15/+3
| | | | sharded collection
* SERVER-45105 Keep allowing scope and finalize to be explicit null in ↵Ted Tuckman2019-12-171-1/+2
| | | | mapReduce command
* SERVER-42137 Allow aggregation stage to write to a collection that the ↵Mihai Andrei2019-11-201-3/+2
| | | | query also reads from
* SERVER-42693 Add renameAndPreserveOptions command and allow $out to output ↵Ted Tuckman2019-11-151-11/+0
| | | | to different DB
* SERVER-43354 Translate Error Messages For MapReduceMihai Andrei2019-11-061-0/+19
|
* SERVER-43578 M/R Agg: Reject mapreduce command sent to mongos which is ↵Mihai Andrei2019-11-011-0/+23
| | | | expected to drop and re-shard the output collection
* SERVER-44015 MR Agg: Respect limit when no sort is specifiedMihai Andrei2019-10-291-2/+25
|
* SERVER-43303 Re introduce mapReduce fsm tests in sharded suitesNicholas Zolnierz2019-10-231-1/+1
|
* SERVER-43267 Fail MapReduce when source collection is the same as ↵Mihai Andrei2019-10-161-0/+32
| | | | destination collection
* SERVER-36723 Push $limit beneath DocumentSourceCursor into the PlanStage layer.David Storch2019-10-101-2/+2
| | | | | | | | | | | | | In addition towards working towards the general goal of doing as much query execution as possible with a PlanStage tree, this should have a positive performance impact for certain agg pipelines. Previously, a pipeline with a $project (or a $project-like stage such as $addFields) followed by a $limit might have applied this limit only after a full batch of data was loaded by DocumentSourceCursor. After this change, the limit will take effect prior to DocumentSourceCursor batching, and thus may reduce the amount of data processed by the query.
* SERVER-42942 M/R Agg: Implement translation for cluster mapReduce commandNicholas Zolnierz2019-10-081-8/+9
|
* SERVER-43013 Translate Map Reduce to Agg PipelineJacob Evans2019-09-101-0/+215