Re: Instaltiating an ARRAY within a function

From: "Pavel Stehule" <pavel(dot)stehule(at)gmail(dot)com>
To: "Abraham, Danny" <danny_abraham(at)bmc(dot)com>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Instaltiating an ARRAY within a function
Date: 2007-12-12 13:48:04
Message-ID: 162867790712120548h284fc461tcbf6c76a84a0fc1c@mail.gmail.com
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Hello

problem is elsewhere. PostgreSQL doesn't support by ref variables. In
your sample you have to do:

CREATE OR REPLACE FUNCTION callarr()
returns integer
AS
$Z$
DECLARE
x varchar[6];
BEGIN
x := arr(x); <-------!!!!!!!!!
RAISE NOTICE 'x[1]=%',x[1];
return 0;
end;
$Z$ LANGUAGE 'plpgsql' VOLATILE;

Pavel

On 12/12/2007, Abraham, Danny <danny_abraham(at)bmc(dot)com> wrote:
> ===========================================
>
> CREATE OR REPLACE FUNCTION arr( inout x varchar[] )
> AS
> $Z$
> DECLARE
> i integer;
> BEGIN
> select ARRAY['Danny','Eissam','Moshe'] into x;
> end;
> $Z$ LANGUAGE 'plpgsql' VOLATILE;
>
> ===========================================
>
> CREATE OR REPLACE FUNCTION callarr()
> returns integer
> AS
> $Z$
> DECLARE
> x varchar[6];
> BEGIN
> perform arr(x);
> RAISE NOTICE 'x[1]=%',x[1];
> return 0;
> end;
> $Z$ LANGUAGE 'plpgsql' VOLATILE;
>
> ===========================================
>
> select callarr();
> NOTICE: x[1]=<NULL> ??? Should have been DANNY
>
>
> Should it work?
>
> Thanks
>
> Danny
>
> ---------------------------(end of broadcast)---------------------------
> TIP 5: don't forget to increase your free space map settings
>

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Richard Huxton 2007-12-12 13:49:56 Re: Multiple clusters on one box for PITR
Previous Message Pavel Stehule 2007-12-12 13:43:55 Re: executing a procedure with delay