summaryrefslogtreecommitdiff
path: root/jstests/core/hint1.js
blob: d584144e6417044e5d7d454453f2bce84e56cbb4 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
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());