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

Function: topoelementarray_append

 

 

Schema

topology

 

Owner

albenard

 

Descriptions

There is no description for function topoelementarray_append

 

Options

Option

Value

Returns

topology.topoelementarray

Language

sql

Parameters

topology.topoelementarray

topology.topoelement

 

Definition

CREATE OR REPLACE FUNCTION topology.topoelementarray_append (
 topology.topoelementarray,
 topology.topoelement
)
RETURNS topology.topoelementarray AS
$span$
SELECT CASE
WHEN
$1 IS NULL THEN
topology.TopoElementArray('{' || $2::text || '}')
ELSE
topology.TopoElementArray($1::int[][]||$2::int[])
END;
$span$
LANGUAGE
'sql'
IMMUTABLE
CALLED ON NULL INPUT
SECURITY INVOKER
COST
100;

This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 26/02/2014 11:51
Previous topic Chapter index Next topic