Schema
Owner
postgres
Descriptions
args: linestring, point, position - Adds a point to a LineString before point
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
geom1 public.geometry geom2 public.geometry integer |
Definition
CREATE OR REPLACE FUNCTION public.st_addpoint (
geom1 public.geometry,
geom2 public.geometry,
integer
)
RETURNS public.geometry AS
'$libdir/postgis-2.2', 'LWGEOM_addpoint'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_addpoint(geom1 public.geometry, geom2 public.geometry, integer)
IS 'args: linestring, point, position - Adds a point to a LineString before point <position> (0-based index).';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |