mirror of
https://github.com/mongodb/mongo.git
synced 2024-12-01 01:21:03 +01:00
11 lines
435 B
JavaScript
11 lines
435 B
JavaScript
|
|
p = db.jstests_hint1;
|
|
p.drop();
|
|
|
|
p.save( { ts: new Date( 1 ), cls: "entry", verticals: "alleyinsider", live: true } );
|
|
p.ensureIndex( { ts: 1 } );
|
|
|
|
e = p.find( { live: true, ts: { $lt: new Date( 1234119308272 ) }, cls: "entry", verticals: " alleyinsider" } ).sort( { ts: -1 } ).hint( { ts: 1 } ).explain();
|
|
assert.eq( e.startKey.ts.getTime(), new Date( 1234119308272 ).getTime() , "A" );
|
|
assert.eq( 0 , e.endKey.ts.getTime() , "B" );
|