[EMAIL PROTECTED] writes:
> SELECT INTO l_service service* FROM service
> WHERE service.service_id = l_service_id;
Shouldn't that just be
SELECT INTO l_service * FROM service
WHERE service.service_id = l_service_id;
Or possibly
SELECT INTO l_s
Daniel Brozek ([EMAIL PROTECTED]) reports a bug with a severity of 2
The lower the number the more severe it is.
Short Description
problem with returning setof with double precision values
Long Description
I have got the table and the function (look at example code). After executing this
functio