summaryrefslogtreecommitdiff
path: root/jstests/core/hint1.js
blob: 09d328350c3da7b26150ed5e8c0e70ea4490b95f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
let p = db.jstests_hint1;
p.drop();

p.save({ts: new Date(1), cls: "entry", verticals: "alleyinsider", live: true});
p.createIndex({ts: 1});

assert.eq(
    1,
    p.find(
         {live: true, ts: {$lt: new Date(1234119308272)}, cls: "entry", verticals: "alleyinsider"})
        .sort({ts: -1})
        .hint({ts: 1})
        .count());