Changes between Initial Version and Version 1 of Ticket #14879, comment 7
- Timestamp:
- Jan 11, 2013, 12:43:35 AM (12 years ago)
Legend:
- Unmodified
- Added
- Removed
- Modified
-
Ticket #14879, comment 7
initial v1 1 1 I 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. 2 2 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