diff options
author | Arun Banala <arun.banala@mongodb.com> | 2020-11-12 17:48:52 +0000 |
---|---|---|
committer | Evergreen Agent <no-reply@evergreen.mongodb.com> | 2020-11-12 18:15:38 +0000 |
commit | 7c196029e8529d8d217a4c9314d8a4e6069a91d2 (patch) | |
tree | dcac2d4dda9015804fbf538cffd4a15d9c02cd39 /jstests/sharding/delete_during_migrate.js | |
parent | ccd024d9fb5c0587e33a3a3321e7f9a0430d0190 (diff) | |
download | mongo-7c196029e8529d8d217a4c9314d8a4e6069a91d2.tar.gz |
Revert "SERVER-50442 Remove ensureIndex shell function This commit also replaces all the usages of ensureIndex() with createIndex() in JS tests and JS shell"
This reverts commit e69c967ff8b53634770438dfe9a5c7d13548351b.
Diffstat (limited to 'jstests/sharding/delete_during_migrate.js')
-rw-r--r-- | jstests/sharding/delete_during_migrate.js | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/jstests/sharding/delete_during_migrate.js b/jstests/sharding/delete_during_migrate.js index 3477f57bc85..108097bf808 100644 --- a/jstests/sharding/delete_during_migrate.js +++ b/jstests/sharding/delete_during_migrate.js @@ -28,7 +28,7 @@ for (var i = 0; i < 200000; i++) { assert.commandWorked(bulk.execute()); // enable sharding of the collection. Only 1 chunk. -t.createIndex({a: 1}); +t.ensureIndex({a: 1}); assert.commandWorked(st.s0.adminCommand({shardcollection: ns, key: {a: 1}})); |