summaryrefslogtreecommitdiff
path: root/jstests/core/query/not/not1.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/core/query/not/not1.js')
-rw-r--r--jstests/core/query/not/not1.js20
1 files changed, 20 insertions, 0 deletions
diff --git a/jstests/core/query/not/not1.js b/jstests/core/query/not/not1.js
new file mode 100644
index 00000000000..0726895ebbd
--- /dev/null
+++ b/jstests/core/query/not/not1.js
@@ -0,0 +1,20 @@
+// @tags: [requires_fastcount]
+
+t = db.not1;
+t.drop();
+
+t.insert({a: 1});
+t.insert({a: 2});
+t.insert({});
+
+function test(name) {
+ assert.eq(3, t.find().count(), name + "A");
+ assert.eq(1, t.find({a: 1}).count(), name + "B");
+ assert.eq(2, t.find({a: {$ne: 1}}).count(), name + "C"); // SERVER-198
+ assert.eq(1, t.find({a: {$in: [1]}}).count(), name + "D");
+ assert.eq(2, t.find({a: {$nin: [1]}}).count(), name + "E"); // SERVER-198
+}
+
+test("no index");
+t.createIndex({a: 1});
+test("with index");