Files
mongo/jstests/core/query/notablescan_capped.js
Brett Nawrocki 2cee0f7b89 SERVER-96155 Remove tenant_migration_incompatible tag (#28490)
GitOrigin-RevId: b31fcb7c93ff15df5f84a5b13eac886a10bb8c1c
2024-10-30 16:28:53 +00:00

34 lines
1.2 KiB
JavaScript

// check notablescan mode for capped collection / tailable cursor
//
// @tags: [
// # The test runs commands that are not allowed with security token: setParameter.
// not_allowed_with_signed_security_token,
// assumes_against_mongod_not_mongos,
// # This test attempts to perform read operations after having enabled the notablescan server
// # parameter. The former operations may be routed to a secondary in the replica set, whereas the
// # latter must be routed to the primary.
// assumes_read_preference_unchanged,
// assumes_superuser_permissions,
// does_not_support_stepdowns,
// requires_capped,
// ]
let t = db.test_notablescan_capped;
t.drop();
assert.commandWorked(db.createCollection(t.getName(), {capped: true, size: 100}));
try {
assert.commandWorked(db._adminCommand({setParameter: 1, notablescan: true}));
let err = assert.throws(function() {
t.find({a: 1}).tailable(true).next();
});
assert.includes(err.toString(), "tailable");
assert.includes(err.toString(), "notablescan");
} finally {
// We assume notablescan was false before this test started and restore that
// expected value.
assert.commandWorked(db._adminCommand({setParameter: 1, notablescan: false}));
}