mongo/jstests/core/explain_db_mismatch.js

7 lines
295 B
JavaScript

// 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);
}());