Fixed #27556 -- Added Oracle support for IsValid function and isvalid lookup.

This commit is contained in:
Sergey Fedoseev 2016-11-30 22:22:56 +06:00 committed by Tim Graham
parent e17f40f4b5
commit 4464b9b9ad
7 changed files with 32 additions and 11 deletions

View file

@ -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

View file

@ -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``
==========