From 024917783680492f67e8f94fc9104b454e98a498 Mon Sep 17 00:00:00 2001 From: Malcolm Tredinnick Date: Mon, 2 Mar 2009 05:19:51 +0000 Subject: [PATCH] [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 --- tests/regressiontests/queries/models.py | 2 -- 1 file changed, 2 deletions(-) diff --git a/tests/regressiontests/queries/models.py b/tests/regressiontests/queries/models.py index e3aebd7915..d2abd21df8 100644 --- a/tests/regressiontests/queries/models.py +++ b/tests/regressiontests/queries/models.py @@ -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')) -[] Bug #10028 -- ordering by model related to nullable relations(!) should use outer joins, so that all results are included.