summaryrefslogtreecommitdiff
path: root/jstests/core/orf.js
blob: 5d58e59c74f31fde7f8b6c47e84bbf21dcbcec0d (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
// Test a query with 200 $or clauses

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

var a = [];
var expectBounds = [];
for (var i = 0; i < 200; ++i) {
    a.push({_id: i});
    expectBounds.push([i, i]);
}
a.forEach(function(x) {
    t.save(x);
});

// This $or query is answered as an index scan over
// a series of _id index point intervals.
explain = t.find({$or: a}).hint({_id: 1}).explain(true);
printjson(explain);
assert.eq(200, explain.executionStats.nReturned, 'n');
assert.eq(200, explain.executionStats.totalKeysExamined, 'keys examined');
assert.eq(200, explain.executionStats.totalDocsExamined, 'docs examined');

assert.eq(200, t.count({$or: a}));