Re: PGAdmin4 debugger - unable to call ltree functions

From: Adrian Klaver <adrian(dot)klaver(at)aklaver(dot)com>
To: ib(at)ianbellsoftware(dot)com
Cc: pgsql-general(at)lists(dot)postgresql(dot)org
Subject: Re: PGAdmin4 debugger - unable to call ltree functions
Date: 2018-04-26 22:04:27
Message-ID: 88081112-ec59-341e-3c6d-a6f01c325263@aklaver.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

On 04/26/2018 02:54 PM, Ian Bell wrote:
> Hello Adrian,
>
> I just tried your suggestion and it generates the same error.  For
> verification, here is the function run in the debugger.
>
> create or replace function TestLtreeV2( MyArg text ) returns void
>
> as $$
>
> declare
>
>      _testVar integer;
>
> begin
>
> SELECT 1 INTO _testvar FROM TableLtree WHERE MyPath = text2ltree( MyArg
> ) LIMIT 1;
>
> raise notice '_testVar = %', _testVar;
>
> end;
>
> $$ language plpgsql;

I'm tapped out. You might want to get hold of the pgAdmin folks directly:

https://www.pgadmin.org/support/list/

>
> Ian

--
Adrian Klaver
adrian(dot)klaver(at)aklaver(dot)com

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Tom Lane 2018-04-26 22:18:14 Re: PGAdmin4 debugger - unable to call ltree functions
Previous Message Ian Bell 2018-04-26 21:54:28 RE: PGAdmin4 debugger - unable to call ltree functions