summaryrefslogtreecommitdiff
path: root/jstests/core/index5.js
blob: 11cfa1882e439e1ba37a642950e2b0fd5a9d7c35 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
23
24
// 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();