summaryrefslogtreecommitdiff
path: root/jstests/insert2.js
blob: 9480efeac4d5fc7be722631509998f776dc55f48 (plain)
1
2
3
4
5
6
7
8

t = db.insert2
t.drop()

assert.isnull( t.findOne() , "A" )
t.insert( { z : 1 ,  $inc : { x : 1 } } , 0, true );
assert.isnull( t.findOne() , "B" )