0
0
mirror of https://github.com/mongodb/mongo.git synced 2024-12-01 09:32:32 +01:00

add not bounded range test

This commit is contained in:
Aaron 2010-05-03 13:22:52 -07:00
parent 5eaf86ede0
commit b042060ce8

View File

@ -126,6 +126,8 @@ indexed( {i:{$not:{$lt:"b"}}}, "b", {} );
indexed( {i:{$lte:"b"}}, "", "b" ); indexed( {i:{$lte:"b"}}, "", "b" );
indexed( {i:{$not:{$lte:"b"}}}, "b", {} ); indexed( {i:{$not:{$lte:"b"}}}, "b", {} );
indexed( {i:{$not:{$lte:"b",$gte:"f"}}}, "b", "f" );
not( {i:{$not:{$all:["a"]}}} ); not( {i:{$not:{$all:["a"]}}} );
not( {i:{$not:{$mod:[2,1]}}} ); not( {i:{$not:{$mod:[2,1]}}} );
not( {i:{$not:{$type:2}}} ); not( {i:{$not:{$type:2}}} );