mirror of
https://github.com/django/django.git
synced 2025-11-25 05:04:26 +00:00
Refs #31445 -- Added test for nesting QuerySet.union().
This was fixed in MySQL 8.0.31.
This commit is contained in:
parent
a91e59e4a0
commit
96bc4254ee
2 changed files with 19 additions and 0 deletions
|
|
@ -114,6 +114,15 @@ class QuerySetSetOperationTests(TestCase):
|
|||
[1, 2, 3, 4, 6, 7, 8, 9, 10, None],
|
||||
)
|
||||
|
||||
def test_union_nested(self):
|
||||
qs1 = Number.objects.all()
|
||||
qs2 = qs1.union(qs1)
|
||||
self.assertNumbersEqual(
|
||||
qs1.union(qs2),
|
||||
[0, 1, 2, 3, 4, 5, 6, 7, 8, 9],
|
||||
ordered=False,
|
||||
)
|
||||
|
||||
@skipUnlessDBFeature("supports_select_intersection")
|
||||
def test_intersection_with_empty_qs(self):
|
||||
qs1 = Number.objects.all()
|
||||
|
|
|
|||
Loading…
Add table
Add a link
Reference in a new issue