summaryrefslogtreecommitdiff
path: root/jstests/core/geo9.js
blob: 598de3d2dc11354ba5d88ab56896f87047ad8c5e (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
25
26
27
28
29
// Cannot implicitly shard accessed collections because of use of $near query instead of geoNear
// command.
// @tags: [assumes_unsharded_collection]

t = db.geo9;
t.drop();

t.save({_id: 1, a: [10, 10], b: [50, 50]});
t.save({_id: 2, a: [11, 11], b: [51, 52]});
t.save({_id: 3, a: [12, 12], b: [52, 52]});

t.save({_id: 4, a: [50, 50], b: [10, 10]});
t.save({_id: 5, a: [51, 51], b: [11, 11]});
t.save({_id: 6, a: [52, 52], b: [12, 12]});

t.ensureIndex({a: "2d"});
t.ensureIndex({b: "2d"});

function check(field) {
    var q = {};
    q[field] = {$near: [11, 11]};
    arr = t.find(q).limit(3).map(function(z) {
        return Geo.distance([11, 11], z[field]);
    });
    assert.eq(2 * Math.sqrt(2), Array.sum(arr), "test " + field);
}

check("a");
check("b");