[postgis-tickets] r15032 - schema qualify raster function calls

Sandro Santilli strk at kbt.io
Fri Aug 5 02:43:32 PDT 2016


On Sun, Jul 31, 2016 at 10:15:44PM -0700, Regina Obe wrote:

>  CREATE OR REPLACE FUNCTION box3d(raster)
>      RETURNS box3d
> -    AS 'select box3d(st_convexhull($1))'
> +    AS 'select box3d( @extschema at .ST_convexhull($1))'
>      LANGUAGE 'sql' IMMUTABLE STRICT _PARALLEL;

Shouldn't the signature of the function being created also be
fully qualified ? As in:

  CREATE OR REPLACE FUNCTION @extschema at .box3d(raster)

Or does the script (non-extension) start with a "set search_path" ?

--strk;


More information about the postgis-tickets mailing list