Re: working with multidimensional arrays in plpgsql - Mailing list pgsql-sql

From Richard Huxton
Subject Re: working with multidimensional arrays in plpgsql
Date
Msg-id 41F76311.5030608@archonet.com
Whole thread Raw
In response to working with multidimensional arrays in plpgsql  (Sibtay Abbas <sibtay@gmail.com>)
Responses Re: working with multidimensional arrays in plpgsql  (Sibtay Abbas <sibtay@gmail.com>)
List pgsql-sql
Sibtay Abbas wrote:
> hello everyone
> 
> i am having problem with multidimensional arrays in plpgsql following
> is the source code of the function which i am trying to run


> DECLARE
>   x INTEGER[10][10];

> x[3][1] := '20';               ------i have even tried x[3][1] = 20

> As you might have observed here, the actual problem is
> how to do assignment to multidimensional array locations using the
> subscript operater.

Actually, the problem is that the array "x" has been initialised to 
NULL. Therefore, you can't set individual values. Try a line like:  x := '{}';

--  Richard Huxton  Archonet Ltd


pgsql-sql by date:

Previous
From: Martin Schäfer
Date:
Subject: Re: How to find out programmatically whether a query on a view will use an index?
Next
From: "Andrei Bintintan"
Date:
Subject: Re: [PERFORM] OFFSET impact on Performance???