diff options
author | Antonin Kral <a.kral@bobek.cz> | 2010-01-31 08:32:52 +0100 |
---|---|---|
committer | Antonin Kral <a.kral@bobek.cz> | 2010-01-31 08:32:52 +0100 |
commit | 4eefaf421bfeddf040d96a3dafb12e09673423d7 (patch) | |
tree | cb2e5ccc7f98158894f977ff131949da36673591 /jstests/inc3.js | |
download | mongodb-4eefaf421bfeddf040d96a3dafb12e09673423d7.tar.gz |
Imported Upstream version 1.3.1
Diffstat (limited to 'jstests/inc3.js')
-rw-r--r-- | jstests/inc3.js | 16 |
1 files changed, 16 insertions, 0 deletions
diff --git a/jstests/inc3.js b/jstests/inc3.js new file mode 100644 index 0000000..baeeb19 --- /dev/null +++ b/jstests/inc3.js @@ -0,0 +1,16 @@ + +t = db.inc3; + +t.drop(); +t.save( { _id : 1 , z : 1 , a : 1 } ); +t.update( {} , { $inc : { z : 1 , a : 1 } } ); +t.update( {} , { $inc : { a : 1 , z : 1 } } ); +assert.eq( { _id : 1 , z : 3 , a : 3 } , t.findOne() , "A" ) + + +t.drop(); +t.save( { _id : 1 , a : 1 , z : 1 } ); +t.update( {} , { $inc : { z : 1 , a : 1 } } ); +t.update( {} , { $inc : { a : 1 , z : 1 } } ); +assert.eq( { _id : 1 , a : 3 , z : 3 } , t.findOne() , "B" ) + |