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

From: Akshay Joshi <akshay(dot)joshi(at)enterprisedb(dot)com>
To: pgadmin-hackers <pgadmin-hackers(at)postgresql(dot)org>
Subject: Fixed issue "Error Message is displayed when the Package is Clicked"
Date: 2012-03-15 14:59:24
Message-ID: CANxoLDdP+Jm0FnRJMfEHbHsRgw+wUFjwJWqHxRQNMPkvPhJgMw@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

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.

Attached is the patch file, please review it. If it looks good then please
commit it.
I have also faced linking error in xrcDialog.cpp on the latest pgadmin3
code on Windows, after running "embed-xrc" it has been fixed.

--
*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
Fixed_Bug.patch application/octet-stream 643 bytes

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Guillaume Lelarge 2012-03-15 22:22:19 Re: [PATCH] Support for ALTER TABLE ADD UNIQUE/PKEY USING INDEX
Previous Message BillR 2012-03-15 14:30:57 Re: [PATCH] Support for ALTER TABLE ADD UNIQUE/PKEY USING INDEX