diff options
Diffstat (limited to 'jstests/geo10.js')
-rw-r--r-- | jstests/geo10.js | 21 |
1 files changed, 0 insertions, 21 deletions
diff --git a/jstests/geo10.js b/jstests/geo10.js deleted file mode 100644 index 39da09fb9ef..00000000000 --- a/jstests/geo10.js +++ /dev/null @@ -1,21 +0,0 @@ -// Test for SERVER-2746 - -coll = db.geo10 -coll.drop(); - -db.geo10.ensureIndex( { c : '2d', t : 1 }, { min : 0, max : Math.pow( 2, 40 ) } ) -assert( db.getLastError() == null, "B" ) -assert( db.system.indexes.count({ ns : "test.geo10" }) == 2, "A3" ) - -printjson( db.system.indexes.find().toArray() ) - -db.geo10.insert( { c : [ 1, 1 ], t : 1 } ) -assert.eq( db.getLastError(), null, "C" ) - -db.geo10.insert( { c : [ 3600, 3600 ], t : 1 } ) -assert( db.getLastError() == null, "D" ) - -db.geo10.insert( { c : [ 0.001, 0.001 ], t : 1 } ) -assert( db.getLastError() == null, "E" ) - -printjson( db.geo10.find({ c : { $within : { $box : [[0.001, 0.001], [Math.pow(2, 40) - 0.001, Math.pow(2, 40) - 0.001]] } }, t : 1 }).toArray() ) |