From 12b7956fc3735101fcad597047b80b57efb5048a Mon Sep 17 00:00:00 2001 From: Mariusz Felisiak Date: Fri, 19 Apr 2019 11:40:04 +0200 Subject: [PATCH] Refs #25507 -- Added tests for using QuerySet.count() with a RawSQL annotation. Fixed in 3f32154f40a855afa063095e3d091ce6be21f2c5 --- tests/expressions/tests.py | 4 ++++ 1 file changed, 4 insertions(+) diff --git a/tests/expressions/tests.py b/tests/expressions/tests.py index c20b88ff83..c22ff34ee8 100644 --- a/tests/expressions/tests.py +++ b/tests/expressions/tests.py @@ -70,6 +70,10 @@ class BasicExpressionsTests(TestCase): ['', '', ''], ) + def test_annotate_values_count(self): + companies = Company.objects.annotate(foo=RawSQL('%s', ['value'])) + self.assertEqual(companies.count(), 3) + @unittest.skipIf(connection.vendor == 'oracle', "Oracle doesn't support using boolean type in SELECT") def test_filtering_on_annotate_that_uses_q(self): self.assertEqual(