summaryrefslogtreecommitdiff
path: root/jstests/core/hint1.js
blob: 6542f9752bc0d83ccadb77907d6d4f3a13a1d8b5 (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.ensureIndex({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());