Schema
Owner
postgres
Descriptions
args: input - Attempts to make an invalid geometry valid without losing vertices.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_makevalid (
public.geometry
)
RETURNS public.geometry AS
'$libdir/postgis-2.3', 'ST_MakeValid'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_makevalid(public.geometry)
IS 'args: input - Attempts to make an invalid geometry valid without losing vertices.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |