mirror of
https://github.com/django/django.git
synced 2025-10-31 09:41:08 +00:00
Fixed #33772 -- Added QuerySet.first()/last() error message on unordered queryset with aggregation.
This commit is contained in:
committed by
Mariusz Felisiak
parent
db588d4f0e
commit
d287294885
@@ -62,6 +62,7 @@ class GeoExpressionsTests(TestCase):
|
||||
)
|
||||
qs = (
|
||||
City.objects.values("name")
|
||||
.order_by("name")
|
||||
.annotate(
|
||||
distance=Min(
|
||||
functions.Distance("multifields__point", multi_field.city.point)
|
||||
|
||||
Reference in New Issue
Block a user