summaryrefslogtreecommitdiff
path: root/jstests/insert2.js
blob: 442e7dcc8fed37f66450628f6e34f05cbfde4fed (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 } } , true );
assert.isnull( t.findOne() , "B" )