summaryrefslogtreecommitdiff
path: root/jstests/aggregation/bugs/server6335.js
blob: b4569f1b6b1bcb2f27773dbd641f99e6a5e4413d (plain)
1
2
3
4
5
6
7
8
// server-6335: don't allow $where clauses in a $match

// load the test utilities
load('jstests/aggregation/extras/utils.js');

assertErrorCode(db.foo, {$match: {$where: "return true"}}, 16395);
assertErrorCode(db.foo, {$match: {$and:[{$where: "return true"}]}}, 16395);