summaryrefslogtreecommitdiff
path: root/docs
diff options
context:
space:
mode:
Diffstat (limited to 'docs')
-rw-r--r--docs/ref/contrib/gis/geoquerysets.txt14
1 files changed, 11 insertions, 3 deletions
diff --git a/docs/ref/contrib/gis/geoquerysets.txt b/docs/ref/contrib/gis/geoquerysets.txt
index 29856e10ab..12c7460b97 100644
--- a/docs/ref/contrib/gis/geoquerysets.txt
+++ b/docs/ref/contrib/gis/geoquerysets.txt
@@ -314,7 +314,8 @@ SpatiaLite ``Intersects(poly, geom)``
.. versionadded:: 1.10
-*Availability*: `PostGIS <https://postgis.net/docs/ST_IsValid.html>`__
+*Availability*: `PostGIS <https://postgis.net/docs/ST_IsValid.html>`__,
+Oracle, SpatiaLite
Tests if the geometry is valid.
@@ -322,9 +323,16 @@ Example::
Zipcode.objects.filter(poly__isvalid=True)
-PostGIS equivalent::
+=================== ================================================================
+Backend SQL Equivalent
+=================== ================================================================
+PostGIS, SpatiaLite ``ST_IsValid(poly)``
+Oracle ``SDO_GEOM.VALIDATE_GEOMETRY_WITH_CONTEXT(poly, 0.05) = 'TRUE'``
+=================== ================================================================
+
+.. versionchanged:: 1.11
- SELECT ... WHERE ST_IsValid(poly)
+ Oracle and SpatiaLite support was added.
.. fieldlookup:: overlaps