summaryrefslogtreecommitdiff
path: root/jstests/core/index/index_partial_validate.js
blob: 14a8c7a8d82ff32ae4df7f919e4aea162aaab9f4 (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
// Tests that the validate command works with partial indexes and a document that does not have
// an indexed field. For details, see SERVER-23730.
// @tags: [
//   uses_full_validation,
// ]
'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));
})();