summaryrefslogtreecommitdiff
path: root/jstests/exists7.js
diff options
context:
space:
mode:
authorAaron <aaron@10gen.com>2011-04-04 18:14:58 -0700
committerAaron <aaron@10gen.com>2011-04-05 13:14:16 -0700
commit3a5326d9b4a54f6df5d4307f4fc73bcc94212d43 (patch)
tree2e77fa46573c19de7d545584cf6981e5327d095a /jstests/exists7.js
parenta7360cc67fffc5951f1f5e898f90e2fc3575e396 (diff)
downloadmongo-3a5326d9b4a54f6df5d4307f4fc73bcc94212d43.tar.gz
SERVER-2322 Allow specification of non boolean value with exists operator
Diffstat (limited to 'jstests/exists7.js')
-rw-r--r--jstests/exists7.js17
1 files changed, 17 insertions, 0 deletions
diff --git a/jstests/exists7.js b/jstests/exists7.js
new file mode 100644
index 00000000000..afc54b7ca06
--- /dev/null
+++ b/jstests/exists7.js
@@ -0,0 +1,17 @@
+// Test that non boolean value types are allowed with $explain spec. SERVER-2322
+
+t = db.jstests_explain7;
+t.drop();
+
+function testIntegerExistsSpec() {
+ t.drop();
+ t.save( {} );
+ t.save( {a:1} );
+
+ assert.eq( 1, t.count( {a:{$exists:1}} ) );
+ assert.eq( 1, t.count( {a:{$exists:0}} ) );
+}
+
+testIntegerExistsSpec();
+t.ensureIndex( {a:1} );
+testIntegerExistsSpec();