summaryrefslogtreecommitdiff
path: root/jstests/geo8.js
blob: 301f3bcc0d1d896a18d12f1144702ab8d00ce12f (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13

t = db.geo8
t.drop()

t.insert( { loc : [ 5 , 5 ] } )
t.insert( { loc : [ 5 , 6 ] } )
t.insert( { loc : [ 5 , 7 ] } )
t.insert( { loc : [ 4 , 5 ] } )
t.insert( { loc : [ 100 , 100 ] } )

t.ensureIndex( { loc : "2d" } )

t.runCommand( "geoWalk" );