summaryrefslogtreecommitdiff
path: root/jstests/core/error2.js
blob: d9c2fdf7f63fa28a4ab9dfd6cd530a6d3c015859 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
// Test that client gets stack trace on failed invoke
// @tags: [
//   requires_non_retryable_commands,
// ]

f = db.jstests_error2;

f.drop();

f.save({a: 1});

assert.throws(function() {
    c = f.find({
        $where: function() {
            return a();
        }
    });
    c.next();
});