Skip to content

Commit

Permalink
append public schema to search path as per https://git.postgresql.org…
Browse files Browse the repository at this point in the history
  • Loading branch information
pancost committed Jan 22, 2025
1 parent cea979e commit bdaa0f8
Showing 1 changed file with 3 additions and 1 deletion.
4 changes: 3 additions & 1 deletion cdb4/ddl_scripts/postgresql/010_functions.sql
Original file line number Diff line number Diff line change
Expand Up @@ -2750,7 +2750,9 @@ perform_snapping integer DEFAULT 0, -- i.e. default is 0 ("do nothing"), oth
digits integer DEFAULT 3, -- number of digits after comma for precision
area_min numeric DEFAULT 0.0001 -- minimum acceptable area of a polygon
)
RETURNS geometry AS $$
RETURNS geometry
SET search_path TO public, pg_catalog, pg_temp
AS $$
DECLARE
dec_prec numeric;
srid_id integer;
Expand Down

0 comments on commit bdaa0f8

Please sign in to comment.