2012-12-17 15:18:17 -05:00
|
|
|
// server-6530: disallow $near queries in $match operations
|
2012-12-18 13:26:26 -05:00
|
|
|
load('jstests/aggregation/extras/utils.js');
|
2012-08-01 14:06:26 -04:00
|
|
|
|
2016-03-09 12:17:50 -05:00
|
|
|
assertErrorCode(db.foo, {$match: {$near: [0, 0]}}, 16424);
|
|
|
|
|
assertErrorCode(db.foo, {$match: {$nearSphere: [2, 2]}}, 16426);
|