SERVER-78556 changed the internal batch size we use on insert. The bulk insert executed by random_DDL_CRUD_operations.js gets broken down in multiple batches internally. In case of a rename happening after the first batch, but before the second, the read would only see the second batch. However, the tests expects to see all or nothing.
The test should be improved to:
- be more verbose (as part of BF-31993 this was quite hard to verify as the assertion does not print any information on the nss and what is the expected value).
- make the a bulk insert size less then the internalInsertMaxBatchSize
- is caused by
-
SERVER-78556 Return default of internalInsertMaxBatchSize to 64
- Closed