summaryrefslogtreecommitdiff
path: root/jstests/sharding/cleanup_orphaned_compound.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/sharding/cleanup_orphaned_compound.js')
-rw-r--r--jstests/sharding/cleanup_orphaned_compound.js18
1 files changed, 0 insertions, 18 deletions
diff --git a/jstests/sharding/cleanup_orphaned_compound.js b/jstests/sharding/cleanup_orphaned_compound.js
deleted file mode 100644
index ebf7163c77d..00000000000
--- a/jstests/sharding/cleanup_orphaned_compound.js
+++ /dev/null
@@ -1,18 +0,0 @@
-//
-// Shards data from the key range, then inserts orphan documents, runs cleanupOrphans
-// and makes sure that orphans are removed. Uses a compound shard key.
-//
-
-load('./jstests/libs/cleanup_orphaned_util.js');
-
-testCleanupOrphaned({
- shardKey: {a: 1, b: 1},
- keyGen: function() {
- var ids = [];
- for (var i = -50; i < 50; i++) {
- ids.push({a: i, b: Math.random()});
- }
-
- return ids;
- }
-});