BUG - Mailing list pgadmin-support

From Mendola Gaetano
Subject BUG
Date
Msg-id 005b01c308d3$3b28b0f0$152aa8c0@GMENDOLA2
Whole thread Raw
List pgadmin-support
Hi all,
I'm using pgAdmin 1.4.12 and Postgres 7.3.2

I create a function that return a SETOF:

CREATE OR REPLACE FUNCTION foo ( )
RETURNS SETOF public.foo_type AS'
DECLARE
BEGIN

    RETURN ;
END;
' LANGUAGE 'plpgsql';


if I try to edit this function inside pgAdmin the redefinition
fail, pgAdmin try to recreate this function in the following way:


CREATE OR REPLACE FUNCTION public.foo( )
RETURNS public.foo_type AS '
DECLARE
BEGIN

    RETURN ;
END;
' LANGUAGE 'plpgsql';


the SETOF is not there anymore

and correctly postgres say that the new definition change
the return type.


Gaetano


pgadmin-support by date:

Previous
From: "Julie May"
Date:
Subject: large object oid value not showing up in pgAdmin
Next
From: "Dave Page"
Date:
Subject: Re: BUG