summaryrefslogtreecommitdiff
path: root/jstests/core/array_match4.js
blob: dafbca8f4f9a3cf1e4fc28d86897c0f4704424df (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
// @tags: [requires_fcv_44]
var t = db.array_match4;

t.drop();
t.save({a: [1, 2]});

var query_gte = {a: {$gte: [1, 2]}};

//
// without index
//

assert.eq(1, t.find({a: [1, 2]}).count(), '$eq (without index)');
assert.eq(1, t.find(query_gte).itcount(), '$gte (without index)');

//
// with index
//

t.ensureIndex({a: 1});
assert.eq(1, t.find({a: [1, 2]}).count(), '$eq (with index)');

// display explain output (for index bounds)
var explain = t.find(query_gte).explain();
print('explain for ' + tojson(query_gte, '', true) + ' = ' + tojson(explain));

// number of documents returned by indexes query should be consistent
// with non-indexed case.
assert.eq(1, t.find(query_gte).itcount(), '$gte (with index)');