summaryrefslogtreecommitdiff
path: root/src/mongo/shell/data_consistency_checker.js
diff options
context:
space:
mode:
authorLouis Williams <louis.williams@mongodb.com>2021-02-18 11:29:08 -0500
committerEvergreen Agent <no-reply@evergreen.mongodb.com>2021-02-18 21:24:03 +0000
commit17e09e03f947742608379284e447806db9988117 (patch)
treeb8745e37e80aaa1f9dabb3e6e894f3826c73ec7e /src/mongo/shell/data_consistency_checker.js
parent0d8ef6ec9e4a1e9b11736d9ed1f7c1e0aee92acd (diff)
downloadmongo-17e09e03f947742608379284e447806db9988117.tar.gz
SERVER-53990 SortedDataInterface supports RecordIds in the binary string format
This implements secondary index support for time-series buckets collections
Diffstat (limited to 'src/mongo/shell/data_consistency_checker.js')
-rw-r--r--src/mongo/shell/data_consistency_checker.js2
1 files changed, 2 insertions, 0 deletions
diff --git a/src/mongo/shell/data_consistency_checker.js b/src/mongo/shell/data_consistency_checker.js
index 8fb7be3c634..0fcef3cca94 100644
--- a/src/mongo/shell/data_consistency_checker.js
+++ b/src/mongo/shell/data_consistency_checker.js
@@ -320,6 +320,8 @@ var {DataConsistencyChecker} = (function() {
// from index specs in 4.4.
if (sourceInfo.idIndex) {
delete sourceInfo.idIndex.ns;
+ }
+ if (syncingInfo.idIndex) {
delete syncingInfo.idIndex.ns;
}