summaryrefslogtreecommitdiff
path: root/jstests/null.js
diff options
context:
space:
mode:
Diffstat (limited to 'jstests/null.js')
-rw-r--r--jstests/null.js26
1 files changed, 0 insertions, 26 deletions
diff --git a/jstests/null.js b/jstests/null.js
deleted file mode 100644
index f4bdeb44a4d..00000000000
--- a/jstests/null.js
+++ /dev/null
@@ -1,26 +0,0 @@
-
-t = db.null1;
-t.drop();
-
-t.save( { x : 1 } );
-t.save( { x : null } );
-
-assert.eq( 1 , t.find( { x : null } ).count() , "A" );
-assert.eq( 1 , t.find( { x : { $ne : null } } ).count() , "B" );
-
-t.ensureIndex( { x : 1 } );
-
-assert.eq( 1 , t.find( { x : null } ).count() , "C" );
-assert.eq( 1 , t.find( { x : { $ne : null } } ).count() , "D" );
-
-// -----
-
-assert.eq( 2, t.find( { y : null } ).count(), "E" );
-
-t.ensureIndex( { y : 1 } );
-assert.eq( 2, t.find( { y : null } ).count(), "E" );
-
-t.dropIndex( { y : 1 } );
-
-t.ensureIndex( { y : 1 }, { sparse : true } );
-assert.eq( 2, t.find( { y : null } ).count(), "E" );