Re: [BUGS] problem with composed types in plpgsql

2002-10-07 Thread Masaru Sugawara
On Mon, 7 Oct 2002 11:22:31 +0200 (CEST) Pavel Stehule <[EMAIL PROTECTED]> wrote: > I play with new beta version (7.3b2). I trayed compose types created with > create type. > > CREATE TYPE tf AS (f1 varchar(10), f2 varchar(10)); > > I wanted this type as returned type from plpgsql function. Bu

[BUGS] problem with composed types in plpgsql

2002-10-07 Thread Pavel Stehule
Hello I play with new beta version (7.3b2). I trayed compose types created with create type. CREATE TYPE tf AS (f1 varchar(10), f2 varchar(10)); I wanted this type as returned type from plpgsql function. But I didn't find how use this type in plpgsql. When I have function CREATE OR REPLACE F