Schema
Owner
postgres
Descriptions
args: atopology, anedge - Removes an isolated edge and returns description of action. If the edge is not isolated, then an exception is thrown.
Options
Option | Value |
---|---|
Returns |
text |
Language |
c |
Parameters |
atopology varchar anedge integer |
Definition
CREATE OR REPLACE FUNCTION topology.st_removeisoedge (
atopology varchar,
anedge integer
)
RETURNS text AS
'$libdir/postgis_topology-2.3', 'ST_RemIsoEdge'
LANGUAGE 'c'
VOLATILE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1;
COMMENT ON FUNCTION topology.st_removeisoedge(atopology varchar, anedge integer)
IS 'args: atopology, anedge - Removes an isolated edge and returns description of action. If the edge is not isolated, then an exception is thrown.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |