diff options
| author | Sergey Fedoseev <fedoseev.sergey@gmail.com> | 2016-11-30 22:22:56 +0600 |
|---|---|---|
| committer | Tim Graham <timograham@gmail.com> | 2016-11-30 11:22:56 -0500 |
| commit | 4464b9b9ad9da921f8b50b4e7e26bb4233e05ca0 (patch) | |
| tree | 754135766dd9c194add6b3bc43f87b8b7ef33c5c /docs | |
| parent | e17f40f4b55f5bf624a190e67a0c83af4be043b8 (diff) | |
Fixed #27556 -- Added Oracle support for IsValid function and isvalid lookup.
Diffstat (limited to 'docs')
| -rw-r--r-- | docs/ref/contrib/gis/db-api.txt | 4 | ||||
| -rw-r--r-- | docs/ref/contrib/gis/functions.txt | 4 | ||||
| -rw-r--r-- | docs/releases/1.11.txt | 4 |
3 files changed, 8 insertions, 4 deletions
diff --git a/docs/ref/contrib/gis/db-api.txt b/docs/ref/contrib/gis/db-api.txt index 2b2e02ac16..670b23cd78 100644 --- a/docs/ref/contrib/gis/db-api.txt +++ b/docs/ref/contrib/gis/db-api.txt @@ -347,7 +347,7 @@ Lookup Type PostGIS Oracle MySQL [#]_ SpatiaLite :lookup:`equals` X X X X C :lookup:`exact` X X X X B :lookup:`intersects` X X X X B -:lookup:`isvalid` X X (LWGEOM) +:lookup:`isvalid` X X X (LWGEOM) :lookup:`overlaps` X X X X B :lookup:`relate` X X X C :lookup:`same_as` X X X X B @@ -390,7 +390,7 @@ Function PostGIS Oracle MySQL SpatiaLite :class:`ForceRHR` X :class:`GeoHash` X X (LWGEOM) :class:`Intersection` X X X (≥ 5.6.1) X -:class:`IsValid` X X (LWGEOM) +:class:`IsValid` X X X (LWGEOM) :class:`Length` X X X X :class:`MakeValid` X X (LWGEOM) :class:`MemSize` X diff --git a/docs/ref/contrib/gis/functions.txt b/docs/ref/contrib/gis/functions.txt index b3f989126b..6a1bf10434 100644 --- a/docs/ref/contrib/gis/functions.txt +++ b/docs/ref/contrib/gis/functions.txt @@ -298,14 +298,14 @@ intersection between them. .. versionadded:: 1.10 -*Availability*: PostGIS, SpatiaLite (LWGEOM) +*Availability*: PostGIS, Oracle, SpatiaLite (LWGEOM) Accepts a geographic field or expression and tests if the value is well formed. Returns ``True`` if its value is a valid geometry and ``False`` otherwise. .. versionchanged:: 1.11 - SpatiaLite support was added. + SpatiaLite and Oracle support was added. ``Length`` ========== diff --git a/docs/releases/1.11.txt b/docs/releases/1.11.txt index acc2fe10e2..7bf206c678 100644 --- a/docs/releases/1.11.txt +++ b/docs/releases/1.11.txt @@ -159,6 +159,10 @@ Minor features :class:`~django.contrib.gis.db.models.functions.MakeValid` function, and :lookup:`isvalid` lookup. +* Added Oracle support for the + :class:`~django.contrib.gis.db.models.functions.IsValid` function and + :lookup:`isvalid` lookup. + :mod:`django.contrib.messages` ~~~~~~~~~~~~~~~~~~~~~~~~~~~~~~ |
