summaryrefslogtreecommitdiff
path: root/jstests/replsets/apply_ops_concurrent_same_collection.js
blob: 7b9057f8eb5c4c7b5f7a7f52fefe746e1a9f8847 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
/**
 * @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.coll', ns2: 'test.coll'}).run();
}());