-
Type: Improvement
-
Resolution: Unresolved
-
Priority: Major - P3
-
None
-
Affects Version/s: None
-
Component/s: Querying
-
None
-
Query Optimization
Support expressions($not, $gte, $elemMatch, etc) in $all clauses.
> db.t3.save({_id:1, attr1:[1,2,3]})
> db.t3.find({attr1:{$all:[{$gte:1}]}})
> db.t3.save({_id:2, attr:[
,
{b:1},
{c:3}]})
> db.t3.find({attr:{$all:[{a:{$gte:1}}]}})
- is duplicated by
-
SERVER-3408 querying with a combination of $all and $exists does not work
- Closed