diff options
| author | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2019-07-11 13:40:36 +0200 |
|---|---|---|
| committer | GitHub <noreply@github.com> | 2019-07-11 13:40:36 +0200 |
| commit | 7a42cfcfdc94c1e7cd653f3140b9eb30492bae4f (patch) | |
| tree | 6bf03d51b438e982dbf15a7de56afb016baa6b7f /tests/ordering | |
| parent | 8c5f9906c56ac72fc4f13218dd90bdf9bc8a248b (diff) | |
Refs #30557 -- Fixed crash of ordering by ptr fields when Meta.ordering contains F() expressions.
Thanks Can Sarıgöl for the report.
Follow up to 8c5f9906c56ac72fc4f13218dd90bdf9bc8a248b.
Diffstat (limited to 'tests/ordering')
| -rw-r--r-- | tests/ordering/models.py | 2 | ||||
| -rw-r--r-- | tests/ordering/tests.py | 2 |
2 files changed, 2 insertions, 2 deletions
diff --git a/tests/ordering/models.py b/tests/ordering/models.py index 4a3e340e71..62df09351f 100644 --- a/tests/ordering/models.py +++ b/tests/ordering/models.py @@ -33,7 +33,7 @@ class Article(models.Model): class Meta: ordering = ( '-pub_date', - 'headline', + models.F('headline'), models.F('author__name').asc(), OrderBy(models.F('second_author__name')), ) diff --git a/tests/ordering/tests.py b/tests/ordering/tests.py index afc8791a05..5ee3c60324 100644 --- a/tests/ordering/tests.py +++ b/tests/ordering/tests.py @@ -485,7 +485,7 @@ class OrderingTests(TestCase): def test_deprecated_values_annotate(self): msg = ( "Article QuerySet won't use Meta.ordering in Django 3.1. Add " - ".order_by('-pub_date', 'headline', OrderBy(F(author__name), " + ".order_by('-pub_date', F(headline), OrderBy(F(author__name), " "descending=False), OrderBy(F(second_author__name), " "descending=False)) to retain the current query." ) |
