2024-02-14 15:55:48 +00:00
|
|
|
/**
|
|
|
|
|
* Tests that when initial syncing a collection with recordIdsReplicated:true, the recordIds
|
|
|
|
|
* are preserved across the logical initial sync.
|
|
|
|
|
*
|
|
|
|
|
* @tags: [
|
|
|
|
|
* featureFlagRecordIdsReplicated
|
|
|
|
|
* ]
|
|
|
|
|
*/
|
|
|
|
|
|
2025-08-21 10:17:44 -07:00
|
|
|
import {testPreservingRecordIdsDuringInitialSync} from "jstests/libs/collection_write_path/replicated_record_ids_utils.js";
|
2024-02-14 15:55:48 +00:00
|
|
|
|
2024-02-16 19:12:40 +00:00
|
|
|
testPreservingRecordIdsDuringInitialSync(
|
2025-08-21 10:17:44 -07:00
|
|
|
"logical",
|
|
|
|
|
"initialSyncHangBeforeCopyingDatabases",
|
|
|
|
|
"initialSyncHangAfterDataCloning",
|
|
|
|
|
);
|