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

remove muliple with _id range remove SERVER-365

This commit is contained in:
Eliot Horowitz 2009-10-16 15:33:56 -04:00
parent 8635f22cd6
commit 10e82eae73
2 changed files with 19 additions and 1 deletions

View File

@ -549,7 +549,7 @@ namespace mongo {
b.append( ns );
int flags = 0;
if ( justOne || obj.obj.hasField( "_id" ) )
if ( justOne )
flags |= 1;
b.append( flags );

18
jstests/remove3.js Normal file
View File

@ -0,0 +1,18 @@
t = db.remove3;
t.drop();
for ( i=1; i<=8; i++){
t.save( { _id : i , x : i } );
}
assert.eq( 8 , t.count() , "A" );
t.remove( { x : { $lt : 5 } } );
assert.eq( 4 , t.count() , "B" );
t.remove( { _id : 5 } );
assert.eq( 3 , t.count() , "C" );
t.remove( { _id : { $lt : 8 } } , "D" );
assert.eq( 1 , t.count() , "D" );