diff options
author | Mathias Stearn <mathias@10gen.com> | 2014-09-17 18:41:18 -0400 |
---|---|---|
committer | Mathias Stearn <mathias@10gen.com> | 2014-10-17 20:33:13 -0400 |
commit | 08319d688517af8ac88fe7054ea10f1f08c5bf2d (patch) | |
tree | d54d5079773b1a9d43bedb43276968664b9a0732 /jstests/multiVersion | |
parent | 7aadbc29c07ee73c62ccfa3696fbd6262fb3d70e (diff) | |
download | mongo-08319d688517af8ac88fe7054ea10f1f08c5bf2d.tar.gz |
SERVER-15273 Only quantize to exact bucket sizes
Prep for new freelist implementation.
Diffstat (limited to 'jstests/multiVersion')
-rw-r--r-- | jstests/multiVersion/libs/verify_collection_data.js | 6 |
1 files changed, 6 insertions, 0 deletions
diff --git a/jstests/multiVersion/libs/verify_collection_data.js b/jstests/multiVersion/libs/verify_collection_data.js index 98d5ec592af..dfd07c453ea 100644 --- a/jstests/multiVersion/libs/verify_collection_data.js +++ b/jstests/multiVersion/libs/verify_collection_data.js @@ -115,6 +115,12 @@ function CollectionDataValidator() { delete collectionStats.systemFlags; delete newCollectionStats.systemFlags; + // as of 2.7.7, we no longer use paddingFactor and introduced paddingFactorNote + delete collectionStats.paddingFactor; + delete collectionStats.paddingFactorNote; + delete newCollectionStats.paddingFactor; + delete newCollectionStats.paddingFactorNote; + // Delete keys that appear just because we shard delete newCollectionStats["primary"]; delete newCollectionStats["sharded"]; |