mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
19 lines
421 B
JavaScript
19 lines
421 B
JavaScript
db = connect( "test" );
|
|
f = db.ed_db_update2;
|
|
|
|
f.drop();
|
|
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( 4, f.findOne().a );
|
|
|
|
// Verify that drop clears the index
|
|
f.drop();
|
|
f.save( { a: 4 } );
|
|
f.update( { a: 4 }, { $inc: { a: 2 } } );
|
|
assert.eq( 6, f.findOne().a ); |