blob: 99e9976e88114037e830d1d8d9cc412330a6351b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
|
/**
* Tests that building geo indexes using the hybrid method handles the unindexing of invalid
* geo documents.
*
* @tags: [
* requires_replication,
* ]
*/
(function() {
'use strict';
load('jstests/noPassthrough/libs/hybrid_geo_index.js');
const options = {};
const invalidKey = 0;
HybridGeoIndexTest.run(options, options, invalidKey, invalidKey, Operation.UPDATE);
})();
|