summaryrefslogtreecommitdiff
path: root/src/mongo/db/s/check_sharding_index_command.cpp
diff options
context:
space:
mode:
Diffstat (limited to 'src/mongo/db/s/check_sharding_index_command.cpp')
-rw-r--r--src/mongo/db/s/check_sharding_index_command.cpp9
1 files changed, 6 insertions, 3 deletions
diff --git a/src/mongo/db/s/check_sharding_index_command.cpp b/src/mongo/db/s/check_sharding_index_command.cpp
index 36f86f31908..16dbbf8a2fe 100644
--- a/src/mongo/db/s/check_sharding_index_command.cpp
+++ b/src/mongo/db/s/check_sharding_index_command.cpp
@@ -37,6 +37,7 @@
#include "mongo/db/commands.h"
#include "mongo/db/db_raii.h"
#include "mongo/db/keypattern.h"
+#include "mongo/db/s/shard_key_index_util.h"
namespace mongo {
namespace {
@@ -93,9 +94,11 @@ public:
return false;
}
- auto catalog = collection->getIndexCatalog();
- auto shardKeyIdx = catalog->findShardKeyPrefixedIndex(
- opCtx, *collection, keyPattern, /*requireSingleKey=*/true);
+ auto shardKeyIdx = findShardKeyPrefixedIndex(opCtx,
+ *collection,
+ collection->getIndexCatalog(),
+ keyPattern,
+ /*requireSingleKey=*/true);
if (!shardKeyIdx) {
errmsg = "couldn't find valid index for shard key";
return false;