Schema
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 07/12/2018 13:23 |