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