Re: Bug in 1.10.3: Properties dialog for functions returning TABLE(..) is broken.

From: Erwin Brandstetter <brandstetter(at)falter(dot)at>
To: guillaume(at)lelarge(dot)info
Cc: pgadmin-hackers(at)postgresql(dot)org
Subject: Re: Bug in 1.10.3: Properties dialog for functions returning TABLE(..) is broken.
Date: 2010-05-14 11:32:08
Message-ID: 4BED34B8.907@falter.at
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgadmin-hackers

On 14.05.2010 08:49, guillaume(at)lelarge(dot)info wrote:
> Hi Erwin,
>
> Le 14/05/2010 04:35, Erwin Brandstetter a écrit :
>
>> [...]
>> On further testing 1.10.3 beta on Win XP Pro I found a bug that might be
>> a show-stopper.
>> See ticket #188.
>>
>>
> Can you give us the real statement to create that function?
>

I have tested with a variety of fuctions. Any function returning TABLE()
will trigger the error. Example:

CREATE FUNCTION foo (IN integer)
RETURNS TABLE(a integer, b integer) AS
$BODY$
SELECT 1,2;
$BODY$
LANGUAGE 'sql';

Then try changing anything via function properties.

Regards
Erwin

In response to

Responses

Browse pgadmin-hackers by date

  From Date Subject
Next Message Dave Page 2010-05-14 11:42:11 Re: Bug in 1.10.3: Properties dialog for functions returning TABLE(..) is broken.
Previous Message Dave Page 2010-05-14 08:06:15 Re: Re: SVN Commit by dpage: r8369 - in trunk/pgadmin3: . docs pgadmin pkg/win32