Schema
Owner
postgres
Descriptions
args: linestring, zerobasedposition, point - Replace point N of linestring with given point. Index is 0-based.
Options
Option | Value |
---|---|
Returns |
public.geometry |
Language |
c |
Parameters |
public.geometry integer public.geometry |
Definition
CREATE OR REPLACE FUNCTION public.st_setpoint (
public.geometry,
integer,
public.geometry
)
RETURNS public.geometry AS
'$libdir/postgis-2.2', 'LWGEOM_setpoint_linestring'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION public.st_setpoint(public.geometry, integer, public.geometry)
IS 'args: linestring, zerobasedposition, point - Replace point N of linestring with given point. Index is 0-based.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |