Re: Fixed issue "Error Message is displayed when the Package is Clicked"

From: Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com>
To: Dave Page <dpage(at)pgadmin(dot)org>
Cc: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Re: Fixed issue "Error Message is displayed when the Package is Clicked"
Date: 2012-03-19 14:35:38
Message-ID: CANxoLDez=-zmDtJ7JQHZPGA6fFf1TQ2rfX=vhMBuSyPLpjqrow@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

Hi

On Mon, Mar 19, 2012 at 7:29 PM, Dave Page <dpage(at)pgadmin(dot)org> wrote:

> Hi
>
> On Thu, Mar 15, 2012 at 2:59 PM, Akshay Joshi
> <akshay(dot)joshi(at)enterprisedb(dot)com> wrote:
> > Hi Dave
> >
> > I have fixed one issue "Error Message is displayed when the Package is
> > Clicked". I have performed the following on enterprisedb database
> >
> > create or replace package pkgFoo is
> > procedure foo(
> > arg1 IN varchar default 'Nothing',
> > arg2 IN integer default 100
> > );
> > end pkgFoo;
> >
> > create or replace package body pkgFoo is
> > procedure foo(
> > arg1 IN varchar default 'Nothing',
> > arg2 IN integer default 100
> > ) is
> > begin
> > dbms_output.put_line(arg1);
> > dbms_output.put_line(arg2);
> > end;
> > end pkgFoo;
> >
> > Now click on pkgFoo, we will get the error message.It only happens the
> first
> > time.
>
> I cannot reproduce the error, using GIT Master with PPAS 9.0 on CentOS 5.
>

I am able to reproduce this every first time after launching pgAdmin
using GIT Master with PPAS9.1 on Windows 7. Attached is the screen shot.

>
> > Attached is the patch file, please review it. If it looks good then
> please
> > commit it.
>
> The patch is wrong. The restriction is supposed to be " = 'void'" for
> procedures, and " != 'void'" for functions, as it already is.
>

OK. I am not much aware of that code, but we have to provide some other
fix for the mentioned issue.

>
> --
> Dave Page
> Blog: http://pgsnake.blogspot.com
> Twitter: @pgsnake
>
> EnterpriseDB UK: http://www.enterprisedb.com
> The Enterprise PostgreSQL Company
>

--
*Akshay Joshi
Senior Software Engineer
EnterpriseDB Corporation
The Enterprise PostgreSQL Company
Phone: +91 20-3058-9522
Mobile: +91 976-788-8246*

Attachment Content-Type Size
package_error.png image/png 96.5 KB

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2012-03-19 14:42:52 Re: Fixed issue "Error Message is displayed when the Package is Clicked"
Previous Message Dave Page 2012-03-19 13:59:34 Re: Fixed issue "Error Message is displayed when the Package is Clicked"