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