blob: 4fb663ef700da12114b547e74ef197584eb18d3b (
plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
|
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" );
|