Schema
Owner
postgres
Descriptions
There is no description for function st_approxcount
Options
Option | Value |
---|---|
Returns |
bigint |
Language |
sql |
Parameters |
rastertable text rastercolumn text nband integer sample_percent double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_approxcount (
rastertable text,
rastercolumn text,
nband integer,
sample_percent double precision
)
RETURNS bigint AS
$span$
SELECT public._ST_count($1, $2, $3, TRUE, $4)
$span$
LANGUAGE 'sql'
STABLE
RETURNS NULL ON NULL INPUT
SECURITY INVOKER
COST 100;
This file was generated with SQL Manager for PostgreSQL (www.pgsqlmanager.com) at 07/12/2018 13:23 |