summaryrefslogtreecommitdiff
path: root/jstests/core/explain_db_mismatch.js
blob: 09950f489d01389503f7a9028513723cac40227e (plain)
1
2
3
4
5
6
// Ensure that explain command errors if the inner command has a $db field that doesn't match the
// outer command.
(function() {
assert.commandFailedWithCode(db.runCommand({explain: {find: 'some_collection', $db: 'not_my_db'}}),
                             ErrorCodes.InvalidNamespace);
}());