mirror of
https://github.com/django/django.git
synced 2025-12-04 00:55:36 +00:00
Refs #33482 -- Fixed QuerySet selecting and filtering againts negated Exists() with empty queryset.
Regression in b7d1da5a62.
This commit is contained in:
parent
25514b604a
commit
6f185a53a2
2 changed files with 12 additions and 1 deletions
|
|
@ -1918,6 +1918,14 @@ class ExistsTests(TestCase):
|
|||
)
|
||||
self.assertSequenceEqual(qs, [manager])
|
||||
|
||||
def test_select_negated_empty_exists(self):
|
||||
manager = Manager.objects.create()
|
||||
qs = Manager.objects.annotate(
|
||||
not_exists=~Exists(Manager.objects.none())
|
||||
).filter(pk=manager.pk)
|
||||
self.assertSequenceEqual(qs, [manager])
|
||||
self.assertIs(qs.get().not_exists, True)
|
||||
|
||||
|
||||
class FieldTransformTests(TestCase):
|
||||
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue