Changes between Initial Version and Version 1 of Ticket #14879, comment 7


Ignore:
Timestamp:
Jan 11, 2013, 12:43:35 AM (11 years ago)
Author:
Nick Sandford

Legend:

Unmodified
Added
Removed
Modified
  • Ticket #14879, comment 7

    initial v1  
    11I can't reproduce this on Django 1.5b2 and PostgreSQL 9.1.7. It appears convert_values was changed in commit 12a96bfa263d514884ef11009913b2f8bb163472 and this would have fixed the issue.
    22
    3 In [2]: User.objects.all().aggregate(Max('username'))
    4 Out[2]: {'username__max': u'test'}
     3
     4{{{
     5    In [2]: User.objects.all().aggregate(Max('username'))
     6    Out[2]: {'username__max': u'test'}
     7}}}
     8
Back to Top