summaryrefslogtreecommitdiff
path: root/jstests/concurrency/fsm_workload_helpers/server_types.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/concurrency/fsm_workload_helpers/server_types.js')
-rw-r--r--jstests/concurrency/fsm_workload_helpers/server_types.js9
1 files changed, 0 insertions, 9 deletions
diff --git a/jstests/concurrency/fsm_workload_helpers/server_types.js b/jstests/concurrency/fsm_workload_helpers/server_types.js
index 1207d43e9de..7487bd53561 100644
--- a/jstests/concurrency/fsm_workload_helpers/server_types.js
+++ b/jstests/concurrency/fsm_workload_helpers/server_types.js
@@ -71,15 +71,6 @@ function isEphemeral(db) {
}
/**
- * Returns true if the current storage engine supports document-level concurrency, and false
- * otherwise.
- */
-function supportsDocumentLevelConcurrency(db) {
- var engine = getStorageEngineName(db);
- return ['wiredTiger', 'rocksdb', 'inMemory'].indexOf(engine) !== -1;
-}
-
-/**
* Returns true if the current storage engine supports committed reads.
*
* Throws an error if db is connected to a mongos, or if there is no reported storage engine.