Changeset 7286
- Timestamp:
- 03/18/08 05:33:37 (7 months ago)
- Files:
Legend:
- Unmodified
- Added
- Removed
- Modified
- Copied
- Moved
django/branches/queryset-refactor/tests/regressiontests/queries/models.py
r7285 r7286 427 427 # ForeignKey) is legal, but the results might not make sense. That isn't 428 428 # Django's problem. Garbage in, garbage out. 429 >>> Item.objects.all().order_by('tags' )430 [ ...]429 >>> Item.objects.all().order_by('tags', 'id') 430 [<Item: one>, <Item: two>, <Item: one>, <Item: two>, <Item: four>] 431 431 432 432 # If we replace the default ordering, Django adjusts the required tables
