0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

Fix bug in sharded MapReduce. SHARDING-68

This commit is contained in:
Mathias Stearn 2010-01-26 20:59:12 -05:00
parent 2fc5cd666f
commit 922532f0a5

View File

@ -547,7 +547,7 @@ namespace mongo {
DBDirectClient db;
while ( cursor.more() ){
BSONObj t = cursor.next();
BSONObj t = cursor.next().getOwned();
if ( values.size() == 0 ){
values.push_back( t );