summaryrefslogtreecommitdiff
path: root/jstests/core/distinct_index1.js
blob: 63f61b8292c2122bc92b2716a2837ea3cf19e695 (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
25
26
27
28
29
30
31
32
33
34
35
36
37
38
39
40
41
42
43
44
45
46
47
48
49
50
51
52
53
54
55
56
57
58
59
60
61
62
63
64
65
66
67
68
69
70
71
72
73
74

t = db.distinct_index1;
t.drop();

load("jstests/libs/analyze_plan.js");

function r(x) {
    return Math.floor(Math.sqrt(x * 123123)) % 10;
}

function d(k, q) {
    return t.explain("executionStats").distinct(k, q || {});
}

for (i = 0; i < 1000; i++) {
    o = {a: r(i * 5), b: r(i)};
    t.insert(o);
}

x = d("a");
// Collection scan looks at all 1000 documents and gets 1000
// distinct values. Looks at 0 index keys.
assert.eq(1000, x.executionStats.nReturned, "AA1");
assert.eq(0, x.executionStats.totalKeysExamined, "AA2");
assert.eq(1000, x.executionStats.totalDocsExamined, "AA3");

x = d("a", {a: {$gt: 5}});
// Collection scan looks at all 1000 documents and gets 398
// distinct values which match the query. Looks at 0 index keys.
assert.eq(398, x.executionStats.nReturned, "AB1");
assert.eq(0, x.executionStats.totalKeysExamined, "AB2");
assert.eq(1000, x.executionStats.totalDocsExamined, "AB3");

x = d("b", {a: {$gt: 5}});
// Collection scan looks at all 1000 documents and gets 398
// distinct values which match the query. Looks at 0 index keys.
assert.eq(398, x.executionStats.nReturned, "AC1");
assert.eq(0, x.executionStats.totalKeysExamined, "AC2");
assert.eq(1000, x.executionStats.totalDocsExamined, "AC3");

t.ensureIndex({a: 1});

x = d("a");
// There are only 10 values.  We use the fast distinct hack and only examine each value once.
assert.eq(10, x.executionStats.nReturned, "BA1");
assert.eq(10, x.executionStats.totalKeysExamined, "BA2");

x = d("a", {a: {$gt: 5}});
// Only 4 values of a are >= 5 and we use the fast distinct hack.
assert.eq(4, x.executionStats.nReturned, "BB1");
assert.eq(4, x.executionStats.totalKeysExamined, "BB2");
assert.eq(0, x.executionStats.totalDocsExamined, "BB3");

x = d("b", {a: {$gt: 5}});
// We can't use the fast distinct hack here because we're distinct-ing over 'b'.
assert.eq(398, x.executionStats.nReturned, "BC1");
assert.eq(398, x.executionStats.totalKeysExamined, "BC2");
assert.eq(398, x.executionStats.totalDocsExamined, "BC3");

// Test that a distinct over a trailing field of the index can be covered.
t.dropIndexes();
t.ensureIndex({a: 1, b: 1});
x = d("b", {a: {$gt: 5}, b: {$gt: 5}});
printjson(x);
assert.lte(x.executionStats.nReturned, 171);
assert.eq(0, x.executionStats.totalDocsExamined, "BD3");

// Should use an index scan over the hashed index.
t.dropIndexes();
t.ensureIndex({a: "hashed"});
x = d("a", {$or: [{a: 3}, {a: 5}]});
assert.eq(188, x.executionStats.nReturned, "DA1");
var indexScanStage = getPlanStage(x.executionStats.executionStages, "IXSCAN");
assert.eq("hashed", indexScanStage.keyPattern.a);