summaryrefslogtreecommitdiff
path: root/jstests/find6.js
blob: baa5969b10865dcea524fd9985d35f17d80806fd (plain)
1
2
3
4
5
6
7
8
9
10
11

t = db.find6;
t.drop();

t.save( { a : 1 } )
t.save( { a : 1 , b : 1 } )

assert.eq( 2 , t.find().count() , "A" );
assert.eq( 1 , t.find( { b : null } ).count() , "B" );
assert.eq( 1 , t.find( "function() { return this.b == null; }" ).itcount() , "C" );
assert.eq( 1 , t.find( "function() { return this.b == null; }" ).count() , "D" );