0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-11-30 17:10:48 +01:00
mongodb/jstests/index5.js

25 lines
481 B
JavaScript
Raw Normal View History

2009-01-27 05:28:26 +01:00
// index5.js - test reverse direction index
function validate() {
assert.eq( 2, t.find().count() );
f = t.find().sort( { a: 1 } );
assert.eq( 2, t.count() );
assert.eq( 1, f[ 0 ].a );
assert.eq( 2, f[ 1 ].a );
r = t.find().sort( { a: -1 } );
assert.eq( 2, r.count() );
assert.eq( 2, r[ 0 ].a );
assert.eq( 1, r[ 1 ].a );
}
t = db.index5;
t.drop();
t.save( { a: 1 } );
t.save( { a: 2 } );
validate();
t.ensureIndex( { a: -1 } );
validate();