0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/orb.js
2010-07-20 15:39:49 -07:00

17 lines
493 B
JavaScript

// check neg direction index and negation
var t = db.jstests_orb;
t.drop();
t.save( {a:1} );
t.ensureIndex( {a:-1} );
assert.eq.automsg( "1", "t.count( {$or: [ { a: { $gt:0,$lt:2 } }, { a: { $gt:-1,$lt:3 } } ] } )" );
t.drop();
t.save( {a:1,b:1} );
t.ensureIndex( {a:1,b:-1} );
assert.eq.automsg( "1", "t.count( {$or: [ { a: { $gt:0,$lt:2 } }, { a: { $gt:-1,$lt:3 } } ] } )" );
assert.eq.automsg( "1", "t.count( {$or: [ { a:1, b: { $gt:0,$lt:2 } }, { a:1, b: { $gt:-1,$lt:3 } } ] } )" );