Commit 02491778 authored by Malcolm Tredinnick's avatar Malcolm Tredinnick
Browse files

[1.0.X] Removed a test that was accidentally merged as part of r9927.

This was testing a feature that doesn't exist in the 1.0.X branch.

git-svn-id: http://code.djangoproject.com/svn/django/branches/releases/1.0.X@9948 bcc190cf-cafb-0310-a4f2-bffc1f526a37
parent 32be1180
Loading
Loading
Loading
Loading
+0 −2
Original line number Diff line number Diff line
@@ -1056,8 +1056,6 @@ cases).
Bug #9985 -- qs.values_list(...).values(...) combinations should work.
>>> Note.objects.values_list("note", flat=True).values("id").order_by("id")
[{'id': 1}, {'id': 2}, {'id': 3}]
>>> Annotation.objects.filter(notes__in=Note.objects.filter(note="n1").values_list('note').values('id'))
[<Annotation: a1>]

Bug #10028 -- ordering by model related to nullable relations(!) should use
outer joins, so that all results are included.