diff options
| author | Tim Graham <timograham@gmail.com> | 2024-08-20 10:29:35 -0400 |
|---|---|---|
| committer | nessita <124304+nessita@users.noreply.github.com> | 2024-08-26 12:53:08 -0300 |
| commit | 6a85c888bff84134ed674ddfef935e0a9906fc9f (patch) | |
| tree | ac57fe4bdb172a4629894e35f3701b467f3c0549 /tests/aggregation | |
| parent | cdcd604ef8f650533eff6bd63a517ebb4ffddf96 (diff) | |
Added supports_select_union skips in queries and aggregation tests.
Diffstat (limited to 'tests/aggregation')
| -rw-r--r-- | tests/aggregation/tests.py | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/tests/aggregation/tests.py b/tests/aggregation/tests.py index a5914f1878..b6ba728e77 100644 --- a/tests/aggregation/tests.py +++ b/tests/aggregation/tests.py @@ -2365,6 +2365,7 @@ class AggregateAnnotationPruningTests(TestCase): ).aggregate(count=Count("id", filter=Q(id__in=[F("max_book_author"), 0]))) self.assertEqual(aggregates, {"count": 1}) + @skipUnlessDBFeature("supports_select_union") def test_aggregate_combined_queries(self): # Combined queries could have members in their values select mask while # others have them in their annotation mask which makes annotation |
