[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
This commit is contained in:
Malcolm Tredinnick 2009-03-02 05:19:51 +00:00
parent 32be118081
commit 0249177836
1 changed files with 0 additions and 2 deletions

View File

@ -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.