Files
mongo/jstests/replsets/apply_ops_concurrent_same_db.js
2022-11-10 22:27:34 +00:00

14 lines
255 B
JavaScript

/**
* @tags: [
* # 6.2 removes support for atomic applyOps
* requires_fcv_62,
* ]
*/
(function() {
'use strict';
load('jstests/replsets/libs/apply_ops_concurrent.js');
new ApplyOpsConcurrentTest({ns1: 'test.coll1', ns2: 'test.coll2'}).run();
}());