summaryrefslogtreecommitdiff
path: root/jstests/core/update_blank1.js
blob: 94a083b306f2e6ff26db8eb915d41cc62770c8b3 (plain)
1
2
3
4
5
6
7
8
9
10

t = db.update_blank1
t.drop();

orig = { "" : 1 , _id : 2 , "a" : 3 , "b" : 4 };
t.insert( orig );
var res = t.update( {} , { $set : { "c" :  5 } } );
print( res );
orig["c"] = 5;
assert.docEq( orig , t.findOne() , "after $set" ); // SERVER-2651