summaryrefslogtreecommitdiff
path: root/jstests/core/evale.js
blob: 1ddc8519fc6c9b6dc809263d37c38702356834b1 (plain)
1
2
3
4
5
6
7
8
9
10
11
t = db.jstests_evale;
t.drop();

db.eval(function() {
    return db.jstests_evale.count({
        $where: function() {
            return true;
        }
    });
});
db.eval("db.jstests_evale.count( { $where:function() { return true; } } )");