summaryrefslogtreecommitdiff
path: root/jstests/noPassthroughWithMongod
diff options
context:
space:
mode:
authorMaria van Keulen <maria.vankeulen@mongodb.com>2019-11-13 15:56:56 +0000
committerevergreen <evergreen@mongodb.com>2019-11-13 15:56:56 +0000
commitad213148eb323491a9dccfd41aff4d58cb861c56 (patch)
treeb5520338677dd7b145c903c83582451f138bb2a8 /jstests/noPassthroughWithMongod
parentb08f7a6989c3e6b3af944201f618c8c928cc4077 (diff)
downloadmongo-ad213148eb323491a9dccfd41aff4d58cb861c56.tar.gz
SERVER-44403 Allow creation attempts of existing indexes in transactions
Diffstat (limited to 'jstests/noPassthroughWithMongod')
-rw-r--r--jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js1
1 files changed, 0 insertions, 1 deletions
diff --git a/jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js b/jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js
index 7859ddf8f51..3305382feca 100644
--- a/jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js
+++ b/jstests/noPassthroughWithMongod/create_existing_indexes_no_conflict.js
@@ -12,7 +12,6 @@ const dbName = "test";
const collName = "ensure_index_no_conflicts";
const testDB = db.getSiblingDB(dbName);
testDB.dropDatabase();
-assert.commandWorked(testDB.adminCommand({clearLog: 'global'}));
assert.commandWorked(testDB.createCollection(collName));
const testColl = testDB.getCollection(collName);
assert.commandWorked(testColl.createIndex({a: 1}));