Schema
public
Owner
albenard
Descriptions
There is no description for function st_approxcount
Options
Option | Value |
---|---|
Returns |
bigint |
Language |
sql |
Parameters |
rastertable text rastercolumn text sample_percent double precision |
Definition
CREATE OR REPLACE FUNCTION public.st_approxcount (
rastertable text,
rastercolumn text,
sample_percent double precision
)
RETURNS bigint AS
$span$
SELECT public._ST_count($1, $2, 1, TRUE, $3)
$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 26/02/2014 11:51 |