django-mongoengine icon indicating copy to clipboard operation
django-mongoengine copied to clipboard

Empty Query Set not really empty

Open nithyamary opened this issue 9 years ago • 1 comments

I have a use case where I need to return empty query set. I used MyModel.objects.none() query. But, the resulting queryset doesnt give proper result for functions like .sum()

For eg. I have a model called Plot with a field area. If I have a queryset with n number of plots, and do .sum('area'), it gives me sum of area of objects in the qureyset as expected. But, when the queryset is empty, it returns sum of area of all objects in Plot, rather than the expected 0.

nithyamary avatar Jun 21 '16 07:06 nithyamary

Yeah, i've seen similar bug but not have time to dig around. If you can - take a look at sources and try to figure out what's happening.

last-partizan avatar Jun 22 '16 22:06 last-partizan