Changes between Initial Version and Version 3 of Ticket #10060
- Timestamp:
- Jan 18, 2009, 6:00:15 AM (16 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #10060
- Property Triage Stage Unreviewed → Accepted
-
Ticket #10060 – Description
initial v3 1 1 Annotating across multiple tables results in wrong answers. i.e. 2 2 3 {{{ 3 4 In [110]: total = Branch.objects.all().annotate(total=Sum('center__client__loan__amount')) 4 5 … … 19 20 Out[116]: 98816000 20 21 ^^^^^^^^^^^ 22 }}} 21 23 22 24 Compare the output of total in 116 vs. 111 (the correct answer).