summaryrefslogtreecommitdiff
path: root/jstests/core/countb.js
blob: 8f7131a5a6c5b8067dba8a2238fb413d895b51ed (plain)
1
2
3
4
5
6
7
8
9
10
11
// Test fast count mode with single key index unsatisfiable constraints on a multi key index.

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

t.ensureIndex( {a:1} );
t.save( {a:['a','b']} );
assert.eq( 0, t.find( {a:{$in:['a'],$gt:'b'}} ).count() );
assert.eq( 0, t.find( {$and:[{a:'a'},{a:{$gt:'b'}}]} ).count() );
assert.eq( 1, t.find( {$and:[{a:'a'},{$where:"this.a[1]=='b'"}]} ).count() );
assert.eq( 0, t.find( {$and:[{a:'a'},{$where:"this.a[1]!='b'"}]} ).count() );