summaryrefslogtreecommitdiff
path: root/jstests/geo_s2sparse.js
blob: ee5d41ac9401e58aa18b6b5604cf9b210ae3b655 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
22
// Test the sparseness of 2dsphere indices.
t = db.geo_s2sparse;
t.drop();

// Insert a doc. that is indexed
pointA = { "type" : "Point", "coordinates": [ 40, 5 ] }
t.insert( {geo : pointA , nonGeo: "pointA"})
// Make a non-sparse index.
t.ensureIndex({geo: "2dsphere"});

// Save the size of the index with one obj.
var sizeWithOneIndexedObj = t.stats().indexSizes.geo_2dsphere;

// Insert a bunch of data that will be indexed with the "no geo field" key
var N = 1000;
for (var i = 0; i < N; ++i) {
    t.insert( {nonGeo: "pointA"})
}

// The size should be the same as we don't index the missing data.
var sizeAfter = t.stats().indexSizes.geo_2dsphere;
assert.eq(sizeAfter, sizeWithOneIndexedObj);