Re: Django ORM enchantments

2011-07-04 Thread Cal Leeming [Simplicity Media Ltd]
Very nice work Akaariai. I'll check this out over the next couple of days :) Cal On Mon, Jul 4, 2011 at 10:10 PM, akaariai wrote: > I have implemented proof of concept versions of conditional > aggregation, F-lookups in aggregates and annotating fields to a model > (qs.field_annotate(age_x2=F('

Django ORM enchantments

2011-07-04 Thread akaariai
I have implemented proof of concept versions of conditional aggregation, F-lookups in aggregates and annotating fields to a model (qs.field_annotate(age_x2=F('age')*2), note: no aggregation here). See ticket #11305 for more details. I would also hope to implement a patch which would allow to annot