summaryrefslogtreecommitdiff
path: root/jstests/core/geo_s2nopoints.js
blob: 903487c7008890509e4e3f0387c441973f7c08cb (plain)
1
2
3
4
5
6
7
// See SERVER-7794.
t = db.geo_s2nopoints;
t.drop();

t.ensureIndex({loc: "2dsphere", x:1});
assert.eq(0, t.count({loc: {$near: {$geometry: {type: 'Point', coordinates:[0,0]},
                                    $maxDistance: 10}}}));