0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/geo8.js

14 lines
248 B
JavaScript
Raw Normal View History

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" );