|
1. renameCollection dropTarget doesn't use dropTarget UUID
renameCollection uses the namespace of the target collection, even when an oplog entry provides the correct UUID to drop. During initial sync it is possible that the target collection (by name) in the target database is not actually the collection that was dropped, and the UUID is required. This leads to dropping the wrong collection. During oplog application with UUIDs we should always drop the UUID mentioned if provided and never drop any other UUID.
2. Rename collection with dropTarget should drop the target even if the source doesn't exist
|