Schema
Owner
wetlands
Descriptions
There is no description for function build_histogram2d
Options
Option | Value |
|---|---|
Returns |
|
Language |
|
Parameters |
text text text |
Definition
CREATE OR REPLACE FUNCTION "public"."build_histogram2d" ("public"."histogram2d", text, text, text) RETURNS "public"."histogram2d" AS
$body$
BEGIN
EXECUTE 'SET local search_path = '||$2||',public';
RETURN public.build_histogram2d($1,$3,$4);
END
$body$
LANGUAGE 'plpgsql' STABLE RETURNS NULL ON NULL INPUT SECURITY INVOKER;
Pete Giencke pgiencke@glc.org |
|