Problem with return type of function ???

From: Denis BUCHER <dbucherml(at)hsolutions(dot)ch>
To: pgsql-sql(at)postgresql(dot)org
Subject: Problem with return type of function ???
Date: 2009-10-22 11:31:59
Message-ID: 4AE042AF.9020507@hsolutions.ch
Views: Whole Thread | Raw Message | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Hello,

I have a strange problem, because it worked in a fonction for a table,
and now I created the same (?) function for another table and it doesn't
work...

The function is accepted but at runtime I get :

ERREUR: wrong record type supplied in RETURN NEXT
CONTEXTE : PL/pgSQL function "hds_bw_find_sn_live" line 26 at return next

Does someone maybe knows what it could be ?

This is (a part of) my function :

> CREATE OR REPLACE FUNCTION rma.find_sn_live (varchar(30)) RETURNS SETOF rma.serial_number
> AS $_$
> DECLARE
> serialnumber ALIAS FOR $1;
> row RECORD;
> BEGIN
>
> FOR row IN
> SELECT * FROM rma.serial_number WHERE sn=serialnumber
> LOOP
> RETURN NEXT row;
> END LOOP;
>
> END;
> $_$
> LANGUAGE plpgsql STRICT;

Thanks a lot for any help !

Denis

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Richard Huxton 2009-10-22 11:40:54 Re: Problem with return type of function ???
Previous Message Thomas Pundt 2009-10-22 11:15:57 Re: @@Error equivalent in Postgresql