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

Function: createtopology

 

 

Schema

topology

 

Owner

postgres

 

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 13/03/2014 13:23
Previous topic Chapter index Next topic