Files
mongo/jstests/core/query/delete/remove_many.js
Zac 591928c619 SERVER-108478 JS formatted by prettier and remove clang-format (#39656)
GitOrigin-RevId: 6c8f6aded47f260aa4f7c231b17dae3302cb1e04
2025-08-21 17:27:09 +00:00

35 lines
984 B
JavaScript

// @tags: [requires_non_retryable_writes, requires_fastcount]
// Test removal of a substantial proportion of inserted documents.
const t = db[jsTestName()];
Random.setRandomSeed();
for (let v = 0; v < 2; ++v) {
// Try each index version.
t.drop();
const indexCreateRes = t.createIndex({a: 1}, {v: v});
if (v === 0) {
assert.commandFailedWithCode(indexCreateRes, ErrorCodes.CannotCreateIndex);
} else {
assert.commandWorked(indexCreateRes);
}
const S = 100;
const B = 100;
for (let x = 0; x < S; x++) {
let batch = [];
for (let y = 0; y < B; y++) {
let i = y + B * x;
batch.push({a: i});
}
assert.commandWorked(t.insert(batch));
}
assert.eq(t.count(), S * B);
let toDrop = [];
for (let i = 0; i < S * B; ++i) {
toDrop.push(Random.randInt(10000)); // Dups in the query will be ignored.
}
assert.commandWorked(t.remove({a: {$in: toDrop}}));
}