Schema
Owner
postgres
Descriptions
args: geom, flags - Returns a valid_detail (valid,reason,location) row stating if a geometry is valid or not and if not valid, a reason why and a location where.
Options
Option | Value |
---|---|
Returns |
public.valid_detail |
Language |
c |
Parameters |
public.geometry integer |
Definition
CREATE OR REPLACE FUNCTION public.st_isvaliddetail (
public.geometry,
integer
)
RETURNS public.valid_detail AS
'$libdir/postgis-2.3', 'isvaliddetail'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1000;
COMMENT ON FUNCTION public.st_isvaliddetail(public.geometry, integer)
IS 'args: geom, flags - Returns a valid_detail (valid,reason,location) row stating if a geometry is valid or not and if not valid, a reason why and a location where.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |