Re: OUT parameter

From: "Owen Jacobson" <ojacobson(at)osl(dot)com>
To: <pgsql-sql(at)postgresql(dot)org>
Subject: Re: OUT parameter
Date: 2006-03-22 22:39:13
Message-ID: 144D12D7DD4EC04F99241498BB4EEDCC25EAD1@nelson.osl.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-sql

Daniel Caune wrote:

> Is there any suggestion against using OUT parameter for local
> calculation such as using a local variable?
>
> CREATE OR REPLACE FUNCTION foo(a IN int,
> b1 OUT int,
> b2 OUT int)
> AS $$
> BEGIN
> FOR (...) LOOP
> b1 = (...);
> b2 = (...);
> END LOOP;
> END;
> $$ LANGUAGE PLPGSQL;

I'd say there's no problem with this, PROVIDED you can ensure you'll never abort before completing the computation. It's not a good idea to modify out parameters partway; programmers (myself included) have this nasty habit of assuming, rightly or wrongly, that a failed function call won't have destroyed the parameters.

If you can't ensure you'll always complete, use locals.

-Owen

Responses

Browse pgsql-sql by date

  From Date Subject
Next Message Christian Paul B. Cosinas 2006-03-23 01:33:33 Re: Function Parameters in GROUP BY clause cause errors
Previous Message Daniel Caune 2006-03-22 22:34:23 OUT parameter