summaryrefslogtreecommitdiff
path: root/jstests/core/queryoptimizer6.js
diff options
context:
space:
mode:
authorJames Wahlin <james.wahlin@mongodb.com>2019-11-20 20:31:43 +0000
committerevergreen <evergreen@mongodb.com>2019-11-20 20:31:43 +0000
commitd86e8a5bf40f1c6edbab37bef38cd0f1d5dc062d (patch)
tree0f99f9836a2ef225cb8716c4812b3008fc996da2 /jstests/core/queryoptimizer6.js
parent2a77dcb092a7061e87744c53b290dc554b5e6f11 (diff)
downloadmongo-r4.3.2.tar.gz
SERVER-32567 Replace queryoptimizer3.js with yield_with_drop.js FSM testr4.3.2
Diffstat (limited to 'jstests/core/queryoptimizer6.js')
-rw-r--r--jstests/core/queryoptimizer6.js16
1 files changed, 0 insertions, 16 deletions
diff --git a/jstests/core/queryoptimizer6.js b/jstests/core/queryoptimizer6.js
deleted file mode 100644
index 8e00772aa4e..00000000000
--- a/jstests/core/queryoptimizer6.js
+++ /dev/null
@@ -1,16 +0,0 @@
-// Test that $ne constraints are accounted for in QueryPattern. SERVER-4665
-
-t = db.jstests_queryoptimizer6;
-t.drop();
-
-t.save({a: 1});
-
-// There is a bug in the 2.4.x indexing where the first query below returns 0 results with this
-// index, but 1 result without it.
-//
-// t.ensureIndex( {b:1}, {sparse:true} );
-
-// The sparse index will be used, and recorded for this query pattern.
-assert.eq(1, t.find({a: 1, b: {$ne: 1}}).itcount());
-// The query pattern should be different, and the sparse index should not be used.
-assert.eq(1, t.find({a: 1}).itcount());