Re: [External] Re: BUG #16023: in PgAdmin4.13, unable to recompile functions that have "search_path" set at the function level

From: William Burke <william(dot)burke(at)collins(dot)com>
To: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
Cc: pgsql-bugs(at)lists(dot)postgresql(dot)org
Subject: Re: [External] Re: BUG #16023: in PgAdmin4.13, unable to recompile functions that have "search_path" set at the function level
Date: 2019-09-26 16:15:53
Message-ID: CALhuBa8bCueGxuFMF8D3Nk9H34+aaU0-svyTBFVkZ8N19pedTg@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-bugs

Hi Tom,

Thanks for the quick response. I will update my PostgreSQL version, retest,
and let you know.

Methinks the issue may be in pgAdmin4 because I tested the same thing in
pgAdmin3 and do not have the issue there. In the meantime I can still use
pgAdmin3 as a workaround.

I have opened an bug report on the pgAdmin list as well.

Thanks again for your help,
William

On Wed, Sep 25, 2019 at 6:26 PM Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us> wrote:

> PG Bug reporting form <noreply(at)postgresql(dot)org> writes:
> > PostgreSQL version: 9.4.0
>
> > Sample Function as shown in pgAdmin4.13:
> > CREATE OR REPLACE FUNCTION schema1.function1(
> > parameter1 text,
> > parameter2 text,
> > parameter3 text)
> > RETURNS record
> > LANGUAGE 'plpgsql'
> > COST 100
> > VOLATILE SECURITY DEFINER
> > SET search_path='schema1, pg_temp'
> > AS $BODY$
> > DECLARE
> > v_typeValue customType;
>
> If this is really a 9.4.0 server, updating might help this, as
> there were relevant fixes in 9.4.18 and again in 9.4.19.
> (Not to mention all the other bug fixes you're missing.)
>
> I get sane-looking behavior in 9.4.24:
>
> regression=# create function foo() returns int as 'select 1' language sql;
> CREATE FUNCTION
> regression=# alter function foo() SET search_path=schema1, pg_temp;
> ALTER FUNCTION
> regression=# \sf foo()
> CREATE OR REPLACE FUNCTION public.foo()
> RETURNS integer
> LANGUAGE sql
> SET search_path TO 'schema1', 'pg_temp'
> AS $function$select 1$function$
> regression=# \q
>
> Now, psql's \sf depends on pg_get_functiondef(), but I don't know
> whether pgAdmin does or not. So it may be that the quoting foulup is
> actually pgAdmin's fault, in which case you need to complain on
> the pgadmin lists. This list is just for bugs in core Postgres.
>
> regards, tom lane
>

--
*William Burke | Sr. Software Engineer | **Information Management Services
| CANS Engineering*

*COLLINS AEROSPACE*

2551 Riva Road, ANNAPOLIS, MD 21401 USA

*Tel:* +1 410 573 3180 | *FAX:* +1 410 573 3106
*william(dot)burke(at)collins(dot)com <william(dot)burke(at)collins(dot)com>* | *collinsaerospace.com
<http://collinsaerospace.com/>*

In response to

Browse pgsql-bugs by date

  From Date Subject
Next Message Peter Eisentraut 2019-09-26 16:28:39 Re: BUG #16020: ICU Collations querys
Previous Message Jeffrey Sturm 2019-09-26 16:03:42 RE: BUG #16027: Invalid output of to_timestamp