Re: pgAdmin debugger failure when search_path set

From: Aditya Toshniwal <aditya(dot)toshniwal(at)enterprisedb(dot)com>
To: Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com>
Cc: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: pgAdmin debugger failure when search_path set
Date: 2020-08-11 06:47:15
Message-ID: CAM9w-_=62a3xr85vxEKsn+YdDJuBswPdq8ka07BQ1q=fzqDhOw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hi Akshay,

On Tue, Aug 11, 2020 at 12:13 PM Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com>
wrote:

> Hi Aditya
>
> On Thu, Aug 6, 2020 at 4:48 PM Aditya Toshniwal <
> aditya(dot)toshniwal(at)enterprisedb(dot)com> wrote:
>
>> Hi Dave/Team,
>>
>> I've been working on an issue to make debugger work no matter what the
>> search patch is set. I've managed to call the appropriate functions from
>> pgAdmin using a schema qualified name with no issues. However, the internal
>> calls in the function don't look schema qualified.
>> For instance,
>> I have two schemas "public" where the debugger is installed and "other"
>> where my user defined function is. I set the search_path to "other" on the
>> database. Calling plpgsql_oid_debug directly fails because of the search
>> path set, but I can call the debugger functions with
>> public.plpgsql_oid_debug, but it fails with:
>> ERROR: function pldbg_oid_debug(oid) does not exist LINE 1: SELECT
>> pldbg_oid_debug($1) ^ HINT: No function matches the given name and argument
>> types. You might need to add explicit type casts. QUERY: SELECT
>> pldbg_oid_debug($1) CONTEXT: SQL function "plpgsql_oid_debug" during
>> inlining
>>
>> How to approach this ? It is inconvenient for users to remove their
>> search_path to make debugger work.
>>
>
> To solve the above problem I would suggest, get the existing search
> path and append *'public' *in that and set it only for the Debugger
> session and reset back when a debugger is closed.
>
Good idea !! I'll give a try.

>
>> --
>> Thanks,
>> Aditya Toshniwal
>> pgAdmin hacker | Sr. Software Engineer | *edbpostgres.com*
>> <http://edbpostgres.com>
>> "Don't Complain about Heat, Plant a TREE"
>>
>
>
> --
> *Thanks & Regards*
> *Akshay Joshi*
> *pgAdmin Hacker | Sr. Software Architect*
> *EDB Postgres <http://edbpostgres.com>*
>
> *Mobile: +91 976-788-8246*
>

--
Thanks,
Aditya Toshniwal
pgAdmin hacker | Sr. Software Engineer | *edbpostgres.com*
<http://edbpostgres.com>
"Don't Complain about Heat, Plant a TREE"

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Yogesh Mahajan 2020-08-11 09:10:08 [pgAdmin][Patch] - Bug #5567 - Conversion of bytea to binary string representation works in psql but results in error in pgadmin
Previous Message Akshay Joshi 2020-08-11 06:43:24 Re: pgAdmin debugger failure when search_path set