0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00
mongodb/jstests/null.js
2009-10-08 11:12:08 -04:00

15 lines
342 B
JavaScript

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" );