simplify character count query

Co-Authored-By: Trenton H <797416+stumpylog@users.noreply.github.com>
This commit is contained in:
shamoon 2023-03-18 14:31:27 -07:00
parent 2bc7f0b8e0
commit 2bdf0aae14

View File

@ -20,6 +20,7 @@ from django.db.models import Case
from django.db.models import Count from django.db.models import Count
from django.db.models import IntegerField from django.db.models import IntegerField
from django.db.models import Max from django.db.models import Max
from django.db.models import Sum
from django.db.models import When from django.db.models import When
from django.db.models.functions import Length from django.db.models.functions import Length
from django.db.models.functions import Lower from django.db.models.functions import Lower
@ -814,14 +815,11 @@ class StatisticsView(APIView):
) )
character_count = ( character_count = (
sum( Document.objects.annotate(
Document.objects.annotate(characters=Length("content")).values_list( characters=Length("content"),
"characters",
flat=True,
),
) )
if documents_total > 0 .aggregate(Sum("characters"))
else 0 .get("characters__sum")
) )
return Response( return Response(