Files
mongo/jstests/core/array_match4.js
Rishab Joshi 4329ffafa3 SERVER-50442 Remove ensureIndex shell function
This commit replaces all the usages of ensureIndex() with createIndex() in JS tests and JS shell""
2020-11-17 14:23:10 +00:00

29 lines
690 B
JavaScript

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.createIndex({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)');