I am using the MongoDB C# driver to create an index
When my app starts up, it creates the index as below
await collection.Indexes.CreateOneAsync(new BsonDocument("code", 1), new CreateIndexOptions() { Unique = true, Sparse = true });
My question is this: If the index already exists, the index will not be re-created/indexed again, correct?