Files
mongo/jstests/core/arrayfind3.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

15 lines
405 B
JavaScript

t = db.arrayfind3;
t.drop();
t.save({a: [1, 2]});
t.save({a: [1, 2, 6]});
t.save({a: [1, 4, 6]});
assert.eq(2, t.find({a: {$gte: 3, $lte: 5}}).itcount(), "A1");
assert.eq(1, t.find({a: {$elemMatch: {$gte: 3, $lte: 5}}}).itcount(), "A2");
t.createIndex({a: 1});
assert.eq(2, t.find({a: {$gte: 3, $lte: 5}}).itcount(), "B1");
assert.eq(1, t.find({a: {$elemMatch: {$gte: 3, $lte: 5}}}).itcount(), "B2");