pggeodb.nancy.inra.fr/db_robot - db_robot on pggeodb.nancy.inra.fr
Previous topic Chapter index Next topic

Function: createtopology

 

 

Schema

topology

 

Owner

albenard

 

Descriptions

args: topology_schema_name - Creates a new topology schema and registers this new schema in the topology.topology table.

 

Options

Option

Value

Returns

integer

Language

sql

Parameters

varchar

 

Definition

CREATE OR REPLACE FUNCTION topology.createtopology (
 varchar
)
RETURNS integer AS
$span$
SELECT
topology.CreateTopology($1, ST_SRID('POINT EMPTY'::geometry), 0);
$span$
LANGUAGE
'sql'
VOLATILE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST
100;

COMMENT ON FUNCTION topology.createtopology(varchar)
IS 'args: topology_schema_name - 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 26/02/2014 11:51
Previous topic Chapter index Next topic