Schema
Owner
postgres
Descriptions
args: atopology, aface - Returns a set of ordered edges that bound aface.
Options
Option | Value |
---|---|
Returns |
Set of topology.getfaceedges_returntype |
Language |
c |
Parameters |
toponame varchar face_id integer |
Definition
CREATE OR REPLACE FUNCTION topology.st_getfaceedges (
toponame varchar,
face_id integer
)
RETURNS SETOF topology.getfaceedges_returntype AS
'$libdir/postgis_topology-2.3', 'ST_GetFaceEdges'
LANGUAGE 'c'
STABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST 1 ROWS 1000;
COMMENT ON FUNCTION topology.st_getfaceedges(toponame varchar, face_id integer)
IS 'args: atopology, aface - Returns a set of ordered edges that bound aface.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 13/03/2014 13:23 |