Re: TABLE FUNCTION, ERROR: WRONG RECORD TYPE IN RETURN NEXT
| От | Maksim Likharev |
|---|---|
| Тема | Re: TABLE FUNCTION, ERROR: WRONG RECORD TYPE IN RETURN NEXT |
| Дата | |
| Msg-id | 56510AAEF435D240958D1CE8C6B1770A014A0C4F@mailc03.aurigin.com обсуждение исходный текст |
| Ответ на | TABLE FUNCTION, ERROR: WRONG RECORD TYPE IN RETURN NEXT ("Maksim Likharev" <mlikharev@aurigin.com>) |
| Список | pgsql-general |
Ok, found what the problem is, count() aggregate returns bigint.
-----Original Message-----
From: Maksim Likharev
Sent: Wednesday, June 11, 2003 4:37 PM
To: pgsql-general@postgresql.org
Subject: [GENERAL] TABLE FUNCTION, ERROR: WRONG RECORD TYPE IN RETURN
NEXT
Hi,
I having some problem with table function that returns set of 'type',
Error says: Wrong record type supplied in return next, why it so?
Thanks.
type:
public.my_type ( name varchar(800), ncount int4, total int4 )
function:
CREATE FUNCTION public.doit() RETURNS SETOF public.my_type AS '
DECLARE
rec RECORD;
BEGIN
FOR rec IN
SELECT public.getname( fullname ) AS fullname,
COUNT( userid ) AS ncount,
ROUND(10000.0 * CAST( COUNT( userid ) AS bigint
) / 10000, 0) AS total
....
LOOP
RETURN NEXT rec;
END LOOP;
RETURN;
END;
---------------------------(end of broadcast)---------------------------
TIP 1: subscribe and unsubscribe commands go to majordomo@postgresql.org
В списке pgsql-general по дате отправления: