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:
parent
8635f22cd6
commit
10e82eae73
@ -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
18
jstests/remove3.js
Normal 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" );
|
Loading…
Reference in New Issue
Block a user