blob: 14dc0b16e2a5b1b36b40afcd35de342011d724c7 (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
|
'use strict';
/**
* update_replace_noindex.js
*
* Executes the update_replace.js workload after dropping all non-_id indexes
* on the collection.
*/
load('jstests/concurrency/fsm_libs/extend_workload.js'); // for extendWorkload
load('jstests/concurrency/fsm_workloads/update_replace.js'); // for $config
load('jstests/concurrency/fsm_workload_modifiers/drop_all_indexes.js'); // for dropAllIndexes
var $config = extendWorkload($config, dropAllIndexes);
|