diff options
Diffstat (limited to 'tests/aggregation')
| -rw-r--r-- | tests/aggregation/tests.py | 20 |
1 files changed, 20 insertions, 0 deletions
diff --git a/tests/aggregation/tests.py b/tests/aggregation/tests.py index 5135458668..366b8434e5 100644 --- a/tests/aggregation/tests.py +++ b/tests/aggregation/tests.py @@ -2187,3 +2187,23 @@ class AggregateAnnotationPruningTests(TestCase): mod_count=Count("*") ) self.assertEqual(queryset.count(), 1) + + def test_referenced_subquery_requires_wrapping(self): + total_books_qs = ( + Author.book_set.through.objects.values("author") + .filter(author=OuterRef("pk")) + .annotate(total=Count("book")) + ) + with self.assertNumQueries(1) as ctx: + aggregate = ( + Author.objects.annotate( + total_books=Subquery(total_books_qs.values("total")) + ) + .values("pk", "total_books") + .aggregate( + sum_total_books=Sum("total_books"), + ) + ) + sql = ctx.captured_queries[0]["sql"].lower() + self.assertEqual(sql.count("select"), 3, "Subquery wrapping required") + self.assertEqual(aggregate, {"sum_total_books": 3}) |
