summaryrefslogtreecommitdiff
path: root/jstests/core/exists2.js
blob: 90ff25e0feb46b1a5987f30ec2ae332821745531 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16

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

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

assert.eq( 2 , t.find().itcount() , "A1" );
assert.eq( 2 , t.find( { a : 1 , b : 1 } ).itcount() , "A2" );
assert.eq( 1 , t.find( { a : 1 , b : 1 , c : { "$exists" : true } } ).itcount() , "A3" );
assert.eq( 1 , t.find( { a : 1 , b : 1 , c : { "$exists" : false } } ).itcount() , "A4" );

t.ensureIndex( { a : 1 , b : 1 , c : 1 } );
assert.eq( 1 , t.find( { a : 1 , b : 1 , c : { "$exists" : true } } ).itcount() , "B1" );
assert.eq( 1 , t.find( { a : 1 , b : 1 , c : { "$exists" : false } } ).itcount() , "B2" );