Files
mongo/jstests/replsets/record_ids_init_sync.js
Vishnu Kaushik 7662b9ed44 SERVER-86139 test that FCBIS preserves recordIds for collections with recordIdsReplicated:true
GitOrigin-RevId: d09f0a05a3d736219178828ea5f6ca0f48a9f85b
2024-02-16 23:31:44 +00:00

16 lines
454 B
JavaScript

/**
* Tests that when initial syncing a collection with recordIdsReplicated:true, the recordIds
* are preserved across the logical initial sync.
*
* @tags: [
* featureFlagRecordIdsReplicated
* ]
*/
import {
testPreservingRecordIdsDuringInitialSync,
} from "jstests/libs/replicated_record_ids_utils.js";
testPreservingRecordIdsDuringInitialSync(
"logical", "initialSyncHangBeforeCopyingDatabases", "initialSyncHangAfterDataCloning");