Re: Debugger hung on dummy function

From: Heikki Linnakangas <heikki(dot)linnakangas(at)enterprisedb(dot)com>
To: Dave Page <dpage(at)pgadmin(dot)org>
Cc: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: Debugger hung on dummy function
Date: 2009-04-06 20:21:20
Message-ID: 49DA6440.3010707@enterprisedb.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Heikki Linnakangas wrote:
> Dave Page wrote:
>> Hi Heikki
>>
>> On Fri, Apr 3, 2009 at 4:43 PM, Heikki Linnakangas
>> <heikki(dot)linnakangas(at)enterprisedb(dot)com> wrote:
>>> CREATE FUNCTION onelinefunc() RETURNS void AS $$ begin null; end; $$
>>> LANGUAGE plpgsql;
>>
>> Debugging that won't work terribly well anyway, as the plugin will
>> just skip the entire function iirc. For slightly saner testing, try
>> replacing null; with raise notice 'foo';. I'm not inclined to spend
>> the time fixing the first case at the moment as it seems unlikely to
>> ever cause anyone problems.
>
> It's reproducible with any other function too, by stepping to the end of
> the function.

Correction: not with *any* other function, but with any function with no
arguments.

--
Heikki Linnakangas
EnterpriseDB http://www.enterprisedb.com

In response to

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2009-04-06 20:35:32 Re: Debugger hung on dummy function
Previous Message Heikki Linnakangas 2009-04-06 20:20:44 Re: Debugger hung on dummy function