diff --git a/django/contrib/gis/db/models/sql/query.py b/django/contrib/gis/db/models/sql/query.py
index 3b8245e..8f78f2b 100644
a
|
b
|
class GeoQuery(sql.Query):
|
72 | 72 | value = Area(**{field.area_att : value}) |
73 | 73 | elif isinstance(field, (GeomField, GeometryField)) and value: |
74 | 74 | value = Geometry(value) |
| 75 | else: |
| 76 | return super(GeoQuery, self).convert_values(value, field, connection) |
75 | 77 | return value |
76 | 78 | |
77 | 79 | def get_aggregation(self, using): |
diff --git a/django/contrib/gis/tests/geoapp/test_regress.py b/django/contrib/gis/tests/geoapp/test_regress.py
index 0e9c5c4..15e8555 100644
a
|
b
|
from datetime import datetime
|
5 | 5 | |
6 | 6 | from django.contrib.gis.tests.utils import no_mysql, no_spatialite |
7 | 7 | from django.contrib.gis.shortcuts import render_to_kmz |
8 | | from django.db.models import Count |
| 8 | from django.db.models import Count, Min |
9 | 9 | from django.test import TestCase |
10 | 10 | |
11 | 11 | from .models import City, PennsylvaniaCity, State, Truth |
… |
… |
class GeoRegressionTests(TestCase):
|
50 | 50 | mansfield = PennsylvaniaCity.objects.create(name='Mansfield', county='Tioga', point='POINT(-77.071445 41.823881)', |
51 | 51 | founded=founded) |
52 | 52 | self.assertEqual(founded, PennsylvaniaCity.objects.dates('founded', 'day')[0]) |
| 53 | self.assertEqual(founded, PennsylvaniaCity.objects.aggregate(Min('founded'))['founded__min']) |
53 | 54 | |
54 | 55 | def test_empty_count(self): |
55 | 56 | "Testing that PostGISAdapter.__eq__ does check empty strings. See #13670." |