diff options
| author | varunnaganathan <varunnaganathan912@gmail.com> | 2015-12-24 21:12:49 +0530 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-01-02 07:06:54 -0500 |
| commit | 3eba9638ee69138c73efb1d1c1d1b806ddafc6cf (patch) | |
| tree | dd79667757cbb670e24d1fa8aa25f3e9bbf49648 | |
| parent | f0ad641628a3ddc4e1c208e481b9cd0e9304dc3d (diff) | |
Fixed #25316 -- Fixed a crash with order_by() and values() after annotate().
| -rw-r--r-- | django/db/models/expressions.py | 3 | ||||
| -rw-r--r-- | docs/releases/1.8.8.txt | 4 | ||||
| -rw-r--r-- | docs/releases/1.9.1.txt | 4 | ||||
| -rw-r--r-- | tests/expressions_case/tests.py | 12 |
4 files changed, 22 insertions, 1 deletions
diff --git a/django/db/models/expressions.py b/django/db/models/expressions.py index fecd3936ce..203aabeff4 100644 --- a/django/db/models/expressions.py +++ b/django/db/models/expressions.py @@ -758,7 +758,8 @@ class When(Expression): def resolve_expression(self, query=None, allow_joins=True, reuse=None, summarize=False, for_save=False): c = self.copy() c.is_summary = summarize - c.condition = c.condition.resolve_expression(query, allow_joins, reuse, summarize, False) + if hasattr(c.condition, 'resolve_expression'): + c.condition = c.condition.resolve_expression(query, allow_joins, reuse, summarize, False) c.result = c.result.resolve_expression(query, allow_joins, reuse, summarize, for_save) return c diff --git a/docs/releases/1.8.8.txt b/docs/releases/1.8.8.txt index a888925841..2a8dc5792d 100644 --- a/docs/releases/1.8.8.txt +++ b/docs/releases/1.8.8.txt @@ -54,3 +54,7 @@ Bugfixes * Made ``loaddata`` skip disabling and enabling database constraints when it doesn't load any fixtures (:ticket:`23372`). + +* Fixed a crash in ``QuerySet.values()/values_list()`` after an ``annotate()`` + and ``order_by()`` when ``values()/values_list()`` includes a field not in + the ``order_by()`` (:ticket:`25316`). diff --git a/docs/releases/1.9.1.txt b/docs/releases/1.9.1.txt index 46e4f25807..b8980e0dd2 100644 --- a/docs/releases/1.9.1.txt +++ b/docs/releases/1.9.1.txt @@ -79,3 +79,7 @@ Bugfixes * Restored ``contrib.auth`` hashers compatibility with py-bcrypt (:ticket:`26016`). + +* Fixed a crash in ``QuerySet.values()/values_list()`` after an ``annotate()`` + and ``order_by()`` when ``values()/values_list()`` includes a field not in + the ``order_by()`` (:ticket:`25316`). diff --git a/tests/expressions_case/tests.py b/tests/expressions_case/tests.py index c0c299126e..d386cabbc9 100644 --- a/tests/expressions_case/tests.py +++ b/tests/expressions_case/tests.py @@ -252,6 +252,18 @@ class CaseExpressionTests(TestCase): transform=attrgetter('integer', 'test') ) + def test_annotate_values_not_in_order_by(self): + self.assertEqual( + list(CaseTestModel.objects.annotate(test=Case( + When(integer=1, then=Value('one')), + When(integer=2, then=Value('two')), + When(integer=3, then=Value('three')), + default=Value('other'), + output_field=models.CharField(), + )).order_by('test').values_list('integer', flat=True)), + [1, 4, 3, 3, 3, 2, 2] + ) + def test_combined_expression(self): self.assertQuerysetEqual( CaseTestModel.objects.annotate( |
