Schema
public
Owner
albenard
Descriptions
args: a_polygon - Returns a set of geometry_dump rows, representing the exterior and interior rings of a polygon.
Options
Option | Value |
---|---|
Returns |
Set of public.geometry_dump |
Language |
c |
Parameters |
public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_dumprings (
public.geometry
)
RETURNS SETOF public.geometry_dump AS
'$libdir/postgis-2.3', 'LWGEOM_dump_rings'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1 ROWS 1000;
COMMENT ON FUNCTION public.st_dumprings(public.geometry)
IS 'args: a_polygon - Returns a set of geometry_dump rows, representing the exterior and interior rings of a polygon.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51 |