Schema
Owner
postgres
Descriptions
args: topology_schema_name, srid - Creates a new topology schema and registers this new schema in the topology.topology table.
Options
Option | Value |
---|---|
Returns |
integer |
Language |
sql |
Parameters |
varchar integer |
Definition
CREATE OR REPLACE FUNCTION topology.createtopology (
varchar,
integer
)
RETURNS integer AS
$span$
SELECT topology.CreateTopology($1, $2, 0);
$span$
LANGUAGE 'sql'
VOLATILE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
COMMENT ON FUNCTION topology.createtopology(varchar, integer)
IS 'args: topology_schema_name, srid - Creates a new topology schema and registers this new schema in the topology.topology table.';
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |