Skip to content

Commit b965341

Browse files
author
Brendan W. McAdams
committed
Set collection name to 'null' rather than a placeholder for inline
results
1 parent 08ff538 commit b965341

File tree

1 file changed

+1
-1
lines changed

1 file changed

+1
-1
lines changed

src/main/com/mongodb/MapReduceOutput.java

Lines changed: 1 addition & 1 deletion
Original file line numberDiff line numberDiff line change
@@ -13,7 +13,7 @@ public class MapReduceOutput {
1313

1414
if ( raw.containsKey( "results" ) ) {
1515
_coll = null;
16-
_collname = "<<INLINE>>";
16+
_collname = null;
1717
_resultSet = (Iterable<DBObject>) raw.get( "results" );
1818
} else {
1919
_collname = raw.getString( "result" );

0 commit comments

Comments
 (0)