Introduces OverrideHelpers object with convenience methods for inspecting certain aggregation and map-reduce commands, as well as overriding startParallelShell(), Mongo.prototype.runCommand(), and Mongo.prototype.runCommandWithMetadata(). Also removes a number of tests that were incorrectly blacklisted from the read_concern_majority_passthrough.yml and read_concern_linearizable_passthrough.yml test suites.
24 lines
507 B
JavaScript
24 lines
507 B
JavaScript
// @tags: [
|
|
// # Cannot implicitly shard accessed collections because unsupported use of sharded collection
|
|
// # from db.eval.
|
|
// assumes_unsharded_collection,
|
|
// requires_eval_command,
|
|
// requires_non_retryable_commands,
|
|
// ]
|
|
|
|
t = db.eval_nolock;
|
|
t.drop();
|
|
|
|
for (i = 0; i < 10; i++)
|
|
t.insert({_id: i});
|
|
|
|
res = db.runCommand({
|
|
eval: function() {
|
|
db.eval_nolock.insert({_id: 123});
|
|
return db.eval_nolock.count();
|
|
},
|
|
nolock: true
|
|
});
|
|
|
|
assert.eq(11, res.retval, "A");
|