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

Function: st_estimatedextent

 

 

Schema

public

 

Owner

postgres

 

Descriptions

args: schema_name, table_name, geocolumn_name, parent_ony - Return the estimated extent of the given spatial table. The estimated is taken from the geometry columns statistics. The current schema will be used if not specified.

 

Options

Option

Value

Returns

public.box2d

Language

c

Parameters

text

text

text

boolean

 

Definition

CREATE OR REPLACE FUNCTION public.st_estimatedextent (
 text,
 text,
 text,
 boolean
)
RETURNS public.box2d AS
'$libdir/postgis-2.3', 'gserialized_estimated_extent'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY DEFINER
COST
1;

COMMENT ON FUNCTION public.st_estimatedextent(text, text, text, boolean)
IS 'args: schema_name, table_name, geocolumn_name, parent_ony - Return the estimated extent of the given spatial table. The estimated is taken from the geometry columns statistics. The current schema will be used if not specified.';

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