Schema
public
Owner
albenard
Descriptions
There is no description for function st_approxcount
Options
Option | Value |
---|---|
Returns |
bigint |
Language |
sql |
Parameters |
rast public.raster nband integer = 1 exclude_nodata_value boolean = true sample_percent double precision = 0.1 |
Definition
CREATE OR REPLACE FUNCTION public.st_approxcount (
rast public.raster,
nband integer = 1,
exclude_nodata_value boolean = true,
sample_percent double precision = 0.1
)
RETURNS bigint AS
$span$
SELECT public._ST_count($1, $2, $3, $4)
$span$
LANGUAGE 'sql'
IMMUTABLE
RETURNS NULL 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 |