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

19 lines
398 B
JavaScript
Raw Normal View History

2009-01-27 20:18:33 +01:00
f = db.ed_db_update2;
2009-01-27 22:16:53 +01:00
f.drop();
2009-01-27 20:18:33 +01:00
f.save( { a: 4 } );
f.update( { a: 4 }, { $inc: { a: 2 } } );
assert.eq( 6, f.findOne().a );
f.drop();
f.save( { a: 4 } );
f.ensureIndex( { a: 1 } );
f.update( { a: 4 }, { $inc: { a: 2 } } );
assert.eq( 6, f.findOne().a );
2009-01-28 15:58:54 +01:00
// Verify that drop clears the index
f.drop();
f.save( { a: 4 } );
f.update( { a: 4 }, { $inc: { a: 2 } } );
2009-01-31 23:22:22 +01:00
assert.eq( 6, f.findOne().a );