summaryrefslogtreecommitdiff
path: root/jstests/core/ora.js
blob: f50f0d13027bef6a587d919e2a23d7a4475741e7 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
var t = db.jstests_ora;

// $where
t.drop();
for (var i = 0; i < 10; i += 1) {
    t.save({x: i, y: 10 - i});
}
assert.eq.automsg("1", "t.find({$or: [{$where: 'this.x === 2'}]}).count()");
assert.eq.automsg("2",
                  "t.find({$or: [{$where: 'this.x === 2'}, {$where: 'this.y === 2'}]}).count()");
assert.eq.automsg("1",
                  "t.find({$or: [{$where: 'this.x === 2'}, {$where: 'this.y === 8'}]}).count()");
assert.eq.automsg("10", "t.find({$or: [{$where: 'this.x === 2'}, {x: {$ne: 2}}]}).count()");

// geo
t.drop();
t.ensureIndex({loc: "2d"});

assert.throws(function() {
    t.find({$or: [{loc: {$near: [11, 11]}}]}).limit(1).next()['_id'];
});