On Tue, Aug 18, 2009 at 9:21 PM, mettwoch<mettw...@pt.lu> wrote:
>
> Hi,
>
> Some time ago I asked if there is a way to aggregate on an expression
> and I was told that it's not possible at the moment. I managed to use
> a mix of aggregation and some arithmetics to reduce processing time by
> a factor of 20 in critical areas of my application. While doing so, I
> felt that some kind of a new field-type could be useful and perhaps
> lead to make aggregation on expressions possible. Something like an
> ExpressionField (or SQLField or whatever ...) that does some SQL
> processing directly on the database and that could be used like this:
>
> class InvoiceLine():
>    price = DecimalField()
>    quantity = DecimalField()
>    total = ExpressionField('price*quantity')
>    invoice = ForeignKey(Invoice)
>
> One could do:
>
> invoice.invoiceline_set.objects.aggregate(Sum('total'))
>
> Is this a reasonable approach

At this point you haven't really explained what the approach _is_. To
pick just one aspect - what does "ExpressionField" do?. It could be a
denormalization - that is, a column that is stored in the database
that is automatically updated with as 'price' and 'quantity' are
updated. It could be part of turning InvoiceLine from a SQL table to a
SQL view. It could be a pseudoattribute that only appears in Django's
ORM and is computed on request from the current value of price and
quantity.

You haven't really given a proposal. You've given a example usage of
an API which is either ambiguous or buggy - InvoiceLine doesn't have a
base class; the 'objects' manager is being used on a related _set
object for no apparent reason. You also haven't explained how that API
you have proposed would be interpreted as SQL.

> and is it perhaps already in the
> timeline?

The idea of adding denormalization fields has been discussed in the
past. Some code has been written, but nothing has been committed to
trunk. Search the archives for the discussion.

There have also been proposals to allow F() objects inside aggregates,
and to allow annotation of data that isn't an aggregate onto a model.
I suspect these may be closer to what you are trying to achieve. These
ideas have open tickets, but I'm not aware of anyone actively working
on these topics at the moment.

Yours,
Russ Magee %-)

--~--~---------~--~----~------------~-------~--~----~
You received this message because you are subscribed to the Google Groups 
"Django users" group.
To post to this group, send email to django-users@googlegroups.com
To unsubscribe from this group, send email to 
django-users+unsubscr...@googlegroups.com
For more options, visit this group at 
http://groups.google.com/group/django-users?hl=en
-~----------~----~----~----~------~----~------~--~---

Reply via email to