Re: out parameters and SETOF - Mailing list pgsql-general

From Michael Fuhr
Subject Re: out parameters and SETOF
Date
Msg-id 20060119232910.GA16741@winnie.fuhr.org
Whole thread Raw
In response to out parameters and SETOF  (Jaime Casanova <systemguards@gmail.com>)
Responses Re: out parameters and SETOF
List pgsql-general
On Thu, Jan 19, 2006 at 04:03:41PM -0500, Jaime Casanova wrote:
> there is a way to use OUT parameters in conjunction with SETOF?

Do you want to return a set of the OUT parameters or a set of
something else?  I don't think you can do the latter; for the former
use SETOF record:

CREATE FUNCTION foo(OUT x integer, OUT y integer)
RETURNS SETOF record AS $$
BEGIN
    x := 1; y := 2; RETURN NEXT;
    x := 3; y := 4; RETURN NEXT;
    x := 4; y := 5; RETURN NEXT;
END;
$$ LANGUAGE plpgsql;

SELECT * FROM foo();
 x | y
---+---
 1 | 2
 3 | 4
 4 | 5
(3 rows)

--
Michael Fuhr

pgsql-general by date:

Previous
From: Tom Lane
Date:
Subject: Re: Upgrade Problem: 7.4.3 -> 8.1.2
Next
From: Rich Shepard
Date:
Subject: Re: Upgrade Problem: 7.4.3 -> 8.1.2