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

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" );

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