summaryrefslogtreecommitdiff
diff options
context:
space:
mode:
authorMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-02 05:19:51 +0000
committerMalcolm Tredinnick <malcolm.tredinnick@gmail.com>2009-03-02 05:19:51 +0000
commit024917783680492f67e8f94fc9104b454e98a498 (patch)
tree6f9c0a623a307832811fcffda998dc31e2eba1dd
parent32be118081fab4ec62412d2dcb97b7d835b8d109 (diff)
[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
-rw-r--r--tests/regressiontests/queries/models.py2
1 files changed, 0 insertions, 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'))
-[<Annotation: a1>]
Bug #10028 -- ordering by model related to nullable relations(!) should use
outer joins, so that all results are included.