Re: Multidimensional arrays in plpgsql

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: "Celia McInnis" <celia(at)drmath(dot)ca>
Cc: pgsql-novice(at)postgresql(dot)org
Subject: Re: Multidimensional arrays in plpgsql
Date: 2005-03-18 18:26:03
Message-ID: 9282.1111170363@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-novice

"Celia McInnis" <celia(at)drmath(dot)ca> writes:
> Tom, are you recommending that I don't use multidimensional arrays until some
> later version of postgres?

No, just that you not try to put nulls in them ;-)

Something like
myarray1 INT[2][2]:=array[[0,0],[0,0]];
woulda worked fine.

regards, tom lane

In response to

Responses

Browse pgsql-novice by date

  From Date Subject
Next Message Erik Dahlstrand 2005-03-18 19:11:54 Re: [despammed] Destination table by variable?
Previous Message Celia McInnis 2005-03-18 18:23:42 Re: Multidimensional arrays in plpgsql