summaryrefslogtreecommitdiff
path: root/jstests/core/mr5.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/mr5.js')
-rw-r--r--jstests/core/mr5.js11
1 files changed, 2 insertions, 9 deletions
diff --git a/jstests/core/mr5.js b/jstests/core/mr5.js
index 537625e954b..8552f891358 100644
--- a/jstests/core/mr5.js
+++ b/jstests/core/mr5.js
@@ -22,10 +22,7 @@ r = function(k, v) {
total += v[i].stats[j];
}
}
- return {
- stats: stats,
- total: total
- };
+ return {stats: stats, total: total};
};
res = t.mapReduce(m, r, {out: "mr5_out", scope: {xx: 1}});
@@ -41,11 +38,7 @@ res.drop();
m = function() {
var x = "partner";
var y = "visits";
- emit(this [x],
- {
- stats:
- [this[y]]
- });
+ emit(this[x], {stats: [this[y]]});
};
res = t.mapReduce(m, r, {out: "mr5_out", scope: {xx: 1}});