Schema
Owner
postgres
Descriptions
args: schema_name, table_name, geocolumn_name - 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 |
Definition
CREATE OR REPLACE FUNCTION public.st_estimatedextent (
text,
text,
text
)
RETURNS public.box2d AS
'$libdir/postgis-2.2', 'gserialized_estimated_extent'
LANGUAGE 'c'
IMMUTABLE
RETURNS NULL ON NULL INPUT
SECURITY DEFINER
COST 1;
COMMENT ON FUNCTION public.st_estimatedextent(text, text, text)
IS 'args: schema_name, table_name, geocolumn_name - 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 13/03/2014 13:23 |