summaryrefslogtreecommitdiff
path: root/jstests/core/orf.js
blob: ba226a8f6e85b91cda1d4a24b9979269762396a9 (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
// Test a query with 200 $or clauses
// @tags: [
//   assumes_balancer_off,
//   sbe_incompatible,
// ]

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}));