Files
mongo/jstests/aggregation/sources/group/group_by_variable.js
Charlie Swanson 84b1f78a30 SERVER-89611 Fix $group with empty object expression (#21313)
GitOrigin-RevId: 87af00ded1fad752d381c150bfbc7b7fcaac5b1a
2024-04-24 15:09:55 +00:00

22 lines
822 B
JavaScript

/*
* Test that $group works when $$ROOT is passed for _id. This is intended to reproduce
* SERVER-37459.
*/
const coll = db.group_by_system_var;
coll.drop();
assert.commandWorked(coll.insert([{_id: 1, x: 1}, {_id: 2, x: 2}]));
function checkPipeline(pipeline, expectedResults) {
const res = coll.aggregate(pipeline).toArray();
assert.eq(res, expectedResults, pipeline);
}
const wholeCollUnderId = [{_id: {_id: 1, x: 1}}, {_id: {_id: 2, x: 2}}];
checkPipeline([{$group: {_id: "$$ROOT"}}, {$sort: {"_id": 1}}], wholeCollUnderId);
checkPipeline([{$group: {_id: "$$CURRENT"}}, {$sort: {"_id": 1}}], wholeCollUnderId);
const collIds = [{_id: 1}, {_id: 2}];
checkPipeline([{$group: {_id: "$$ROOT.x"}}, {$sort: {"_id": 1}}], collIds);
checkPipeline([{$group: {_id: "$$CURRENT.x"}}, {$sort: {"_id": 1}}], collIds);