summaryrefslogtreecommitdiff
path: root/jstests/update_multi4.js
diff options
context:
space:
mode:
authorEliot Horowitz <eliot@10gen.com>2010-05-17 10:44:17 -0400
committerEliot Horowitz <eliot@10gen.com>2010-05-17 10:44:17 -0400
commit016af45e0b5cbe1711906fb75002031b0b573183 (patch)
treea78c3169c0e92f16560d3d9b9ec033c31e79f02a /jstests/update_multi4.js
parent1ea54f26abd464c2c2c7b1a5766dadaef31916bc (diff)
downloadmongo-016af45e0b5cbe1711906fb75002031b0b573183.tar.gz
fix for yield on multi-updatre SERVER-1020
Diffstat (limited to 'jstests/update_multi4.js')
-rw-r--r--jstests/update_multi4.js18
1 files changed, 18 insertions, 0 deletions
diff --git a/jstests/update_multi4.js b/jstests/update_multi4.js
new file mode 100644
index 00000000000..e81a19a5feb
--- /dev/null
+++ b/jstests/update_multi4.js
@@ -0,0 +1,18 @@
+
+t = db.update_mulit4;
+t.drop();
+
+for(i=0;i<1000;i++){
+ t.insert( { _id:i ,
+ k:i%12,
+ v:"v"+i%12 } );
+}
+
+t.ensureIndex({k:1})
+
+assert.eq( 84 , t.count({k:2,v:"v2"} ) , "A0" );
+
+t.update({k:2},{$set:{v:"two v2"}},false,true)
+
+assert.eq( 0 , t.count({k:2,v:"v2"} ) , "A1" );
+assert.eq( 84 , t.count({k:2,v:"two v2"} ) , "A2" );