Opened 15 years ago

Closed 15 years ago

Last modified 11 years ago

#10666 closed (fixed)

Aggregate with inherited columns does not work as expected

Reported by: Julian Bez Owned by:
Component: Database layer (models, ORM) Version: dev
Severity: Keywords:
Cc: Triage Stage: Accepted
Has patch: no Needs documentation: no
Needs tests: no Patch needs improvement: no
Easy pickings: no UI/UX: no

Description

class Thing(models.Model):
    user = models.ForeignKey("auth.user")
    creation_date = models.DateTimeField(_('Creation date'), default=datetime.datetime.now)
    amount = models.PositiveIntegerField()
    
class Book(Thing):
    blabla = models.ForeignKey("xyz")

# does not work
Book.objects.filter(user=request.user).aggregate(Sum('amount'))
# does work
Book.objects.filter(user=request.user).annotate(Sum('amount'))
# does work
Book.objects.filter(user=request.user).aggregate(Sum('book_ptr__amount'))

Change History (4)

comment:1 by Alex Gaynor, 15 years ago

milestone: 1.1 beta1.1
Triage Stage: UnreviewedAccepted

comment:2 by Russell Keith-Magee, 15 years ago

Resolution: fixed
Status: newclosed

(in [10466]) Fixed #10666 -- Corrected the handling of inherited fields with aggregate() and annotate(). Thanks to julienb for the report.

comment:3 by Jacob, 13 years ago

milestone: 1.1

Milestone 1.1 deleted

comment:4 by Anssi Kääriäinen, 11 years ago

Component: ORM aggregationDatabase layer (models, ORM)
Note: See TracTickets for help on using tickets.
Back to Top