diff options
| author | David Wobrock <david.wobrock@gmail.com> | 2022-06-17 09:20:27 +0200 |
|---|---|---|
| committer | Mariusz Felisiak <felisiak.mariusz@gmail.com> | 2022-06-17 11:13:05 +0200 |
| commit | d44dc31fcb98935a9e1ec7c5fe60862d2ae4febc (patch) | |
| tree | 26d4af15b8696d165e9b016ba637a31192fbe6aa /tests/update | |
| parent | ccb243847e300283aca23af5eb3b6b4f2bdcfb28 (diff) | |
[4.1.x] Fixed #28897 -- Fixed QuerySet.update() on querysets ordered by annotations.
Backport of 3ef37a5245015f69a9b9f884ebc289a35d02c5f6 from main
Diffstat (limited to 'tests/update')
| -rw-r--r-- | tests/update/tests.py | 31 |
1 files changed, 23 insertions, 8 deletions
diff --git a/tests/update/tests.py b/tests/update/tests.py index 0c3a399514..2162f5164d 100644 --- a/tests/update/tests.py +++ b/tests/update/tests.py @@ -225,6 +225,16 @@ class AdvancedTests(TestCase): new_name=annotation, ).update(name=F("new_name")) + def test_update_ordered_by_m2m_aggregation_annotation(self): + msg = ( + "Cannot update when ordering by an aggregate: " + "Count(Col(update_bar_m2m_foo, update.Bar_m2m_foo.foo))" + ) + with self.assertRaisesMessage(FieldError, msg): + Bar.objects.annotate(m2m_count=Count("m2m_foo")).order_by( + "m2m_count" + ).update(x=2) + def test_update_ordered_by_inline_m2m_annotation(self): foo = Foo.objects.create(target="test") Bar.objects.create(foo=foo) @@ -232,6 +242,13 @@ class AdvancedTests(TestCase): Bar.objects.order_by(Abs("m2m_foo")).update(x=2) self.assertEqual(Bar.objects.get().x, 2) + def test_update_ordered_by_m2m_annotation(self): + foo = Foo.objects.create(target="test") + Bar.objects.create(foo=foo) + + Bar.objects.annotate(abs_id=Abs("m2m_foo")).order_by("abs_id").update(x=3) + self.assertEqual(Bar.objects.get().x, 3) + @unittest.skipUnless( connection.vendor == "mysql", @@ -259,14 +276,12 @@ class MySQLUpdateOrderByTest(TestCase): self.assertEqual(updated, 2) def test_order_by_update_on_unique_constraint_annotation(self): - # Ordering by annotations is omitted because they cannot be resolved in - # .update(). - with self.assertRaises(IntegrityError): - UniqueNumber.objects.annotate(number_inverse=F("number").desc(),).order_by( - "number_inverse" - ).update( - number=F("number") + 1, - ) + updated = ( + UniqueNumber.objects.annotate(number_inverse=F("number").desc()) + .order_by("number_inverse") + .update(number=F("number") + 1) + ) + self.assertEqual(updated, 2) def test_order_by_update_on_parent_unique_constraint(self): # Ordering by inherited fields is omitted because joined fields cannot |
