diff options
Diffstat (limited to 'jstests/core/geo_update1.js')
-rw-r--r-- | jstests/core/geo_update1.js | 40 |
1 files changed, 20 insertions, 20 deletions
diff --git a/jstests/core/geo_update1.js b/jstests/core/geo_update1.js index c3d2623d3de..e966afa7ea9 100644 --- a/jstests/core/geo_update1.js +++ b/jstests/core/geo_update1.js @@ -2,35 +2,35 @@ t = db.geo_update1; t.drop(); -for(var x = 0; x < 10; x++ ) { - for(var y = 0; y < 10; y++ ) { - t.insert({"loc": [x, y] , x : x , y : y , z : 1 }); - } -} - -t.ensureIndex( { loc : "2d" } ); - -function p(){ - print( "--------------" ); - for ( var y=0; y<10; y++ ){ - var c = t.find( { y : y } ).sort( { x : 1 } ); +for (var x = 0; x < 10; x++) { + for (var y = 0; y < 10; y++) { + t.insert({"loc": [x, y], x: x, y: y, z: 1}); + } +} + +t.ensureIndex({loc: "2d"}); + +function p() { + print("--------------"); + for (var y = 0; y < 10; y++) { + var c = t.find({y: y}).sort({x: 1}); var s = ""; - while ( c.hasNext() ) + while (c.hasNext()) s += c.next().z + " "; - print( s ); + print(s); } - print( "--------------" ); + print("--------------"); } p(); -var res = t.update({ loc: { $within: { $center: [[ 5, 5 ], 2 ]}}}, { $inc: { z: 1 }}, false, true); -assert.writeOK( res ); +var res = t.update({loc: {$within: {$center: [[5, 5], 2]}}}, {$inc: {z: 1}}, false, true); +assert.writeOK(res); p(); -assert.writeOK(t.update({}, {'$inc' : { 'z' : 1}}, false, true)); +assert.writeOK(t.update({}, {'$inc': {'z': 1}}, false, true)); p(); -res = t.update({ loc: { $within: { $center: [[ 5, 5 ], 2 ]}}}, { $inc: { z: 1 }}, false, true); -assert.writeOK( res ); +res = t.update({loc: {$within: {$center: [[5, 5], 2]}}}, {$inc: {z: 1}}, false, true); +assert.writeOK(res); p(); |