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

22 lines
588 B
JavaScript

// Tests that the validate command works with partial indexes and a document that does not have
// an indexed field. For details, see SERVER-23730.
'use strict';
(function() {
var t = db.index_partial_validate;
t.drop();
var res = t.createIndex({a: 1}, {partialFilterExpression: {a: {$lte: 1}}});
assert.commandWorked(res);
res = t.createIndex({b: 1});
assert.commandWorked(res);
res = t.insert({non_indexed_field: 'x'});
assert.commandWorked(res);
res = t.validate({full: true});
assert.commandWorked(res);
assert(res.valid, 'Validate failed with response:\n' + tojson(res));
})();