summaryrefslogtreecommitdiff
path: root/tests/gis_tests
diff options
context:
space:
mode:
authorClaude Paroz <claude@2xlibre.net>2022-06-21 09:53:44 +0200
committerMariusz Felisiak <felisiak.mariusz@gmail.com>2022-06-21 10:10:37 +0200
commitde74a74b4b889c986cabab837bb03e2113880afe (patch)
treed2f5d1dffb0fb4a14af4c0fe687f587cc2189614 /tests/gis_tests
parenta0608c4b111555023c24ab7333a42ec53dca6b42 (diff)
downloaddjango-de74a74b4b889c986cabab837bb03e2113880afe.tar.gz
Fixed #33794 -- Fixed string-casting of GIS queries on PostgreSQL.
Regression in 64c3f049ea3bcb1c82f35ae09f1dd5349a826a5c.
Diffstat (limited to 'tests/gis_tests')
-rw-r--r--tests/gis_tests/geoapp/tests.py8
1 files changed, 8 insertions, 0 deletions
diff --git a/tests/gis_tests/geoapp/tests.py b/tests/gis_tests/geoapp/tests.py
index 0a71639c84..fd5fc3c793 100644
--- a/tests/gis_tests/geoapp/tests.py
+++ b/tests/gis_tests/geoapp/tests.py
@@ -212,6 +212,14 @@ class GeoModelTest(TestCase):
with self.assertNumQueries(0): # Ensure point isn't deferred.
self.assertIsInstance(cities2[0].point, Point)
+ def test_gis_query_as_string(self):
+ """GIS queries can be represented as strings."""
+ query = City.objects.filter(point__within=Polygon.from_bbox((0, 0, 2, 2)))
+ self.assertIn(
+ connection.ops.quote_name(City._meta.db_table),
+ str(query.query),
+ )
+
def test_dumpdata_loaddata_cycle(self):
"""
Test a dumpdata/loaddata cycle with geographic data.