summaryrefslogtreecommitdiff
path: root/jstests/replsets/initial_sync_move_forward.js
diff options
context:
space:
mode:
authorCharlie Swanson <charlie.swanson@mongodb.com>2022-05-03 15:31:53 +0000
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2022-05-03 18:08:50 +0000
commit69c6a3d495cd845834cd83902498a14813c2daf9 (patch)
tree792b5b81f85a4fd554dbdf6ef939d0264f8f0a72 /jstests/replsets/initial_sync_move_forward.js
parent73938f0e9a74b4e45b7b134473ad8e3b36322a66 (diff)
downloadmongo-69c6a3d495cd845834cd83902498a14813c2daf9.tar.gz
SERVER-65933 Enable creation of columnstore index
Adds a new feature flag which must be enabled to create one.
Diffstat (limited to 'jstests/replsets/initial_sync_move_forward.js')
-rw-r--r--jstests/replsets/initial_sync_move_forward.js4
1 files changed, 2 insertions, 2 deletions
diff --git a/jstests/replsets/initial_sync_move_forward.js b/jstests/replsets/initial_sync_move_forward.js
index 8a2c6589d41..746b1cb1fe7 100644
--- a/jstests/replsets/initial_sync_move_forward.js
+++ b/jstests/replsets/initial_sync_move_forward.js
@@ -15,7 +15,7 @@
"use strict";
load("jstests/libs/fail_point_util.js");
-load("jstests/libs/get_index_helpers.js");
+load("jstests/libs/index_catalog_helpers.js");
var rst = new ReplSetTest({name: "initial_sync_move_forward", nodes: 1});
rst.startSet();
@@ -81,7 +81,7 @@ assert.eq(1, secondaryColl.find({_id: 0, x: count}).itcount());
assert.eq(1, secondaryColl.find({_id: count, x: 1}).itcount());
// Check for unique index on secondary.
-var indexSpec = GetIndexHelpers.findByKeyPattern(secondaryColl.getIndexes(), {x: 1});
+var indexSpec = IndexCatalogHelpers.findByKeyPattern(secondaryColl.getIndexes(), {x: 1});
assert.neq(null, indexSpec);
assert.eq(true, indexSpec.unique);
rst.stopSet();