Files
mongo/jstests/core/geo_update_btree.js
2016-05-28 17:55:12 -04:00

35 lines
863 B
JavaScript

// Tests whether the geospatial search is stable under btree updates
var coll = db.getCollection("jstests_geo_update_btree");
coll.drop();
coll.ensureIndex({loc: '2d'});
var big = new Array(3000).toString();
if (testingReplication) {
coll.setWriteConcern({w: 2});
}
Random.setRandomSeed();
var parallelInsert = startParallelShell(
"Random.setRandomSeed();" + "for ( var i = 0; i < 1000; i++ ) {" +
" var doc = { loc: [ Random.rand() * 180, Random.rand() * 180 ], v: '' };" +
" db.jstests_geo_update_btree.insert(doc);" + "}");
for (i = 0; i < 1000; i++) {
coll.update({
loc:
{$within: {$center: [[Random.rand() * 180, Random.rand() * 180], Random.rand() * 50]}}
},
{$set: {v: big}},
false,
true);
if (i % 10 == 0)
print(i);
}
parallelInsert();