Changeset 8054
- Timestamp:
- 07/22/08 13:56:50 (4 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/trunk/tests/regressiontests/queries/models.py
r8053 r8054 834 834 Bug #7791 -- there were "issues" when ordering and distinct-ing on fields 835 835 related via ForeignKeys. 836 >>> Note.objects.order_by('extrainfo__info').distinct()837 [<Note: n3>, <Note: n1>, <Note: n2>] 836 >>> len(Note.objects.order_by('extrainfo__info').distinct()) 837 3 838 838 839 839 """}
