Re: Are arrays broken in 7.0.3?

From: Tom Lane <tgl(at)sss(dot)pgh(dot)pa(dot)us>
To: Jason Aten <jaten(at)CS(dot)UCLA(dot)EDU>
Cc: pgsql-general(at)postgresql(dot)org
Subject: Re: Are arrays broken in 7.0.3?
Date: 2000-12-18 22:20:00
Message-ID: 2008.977178000@sss.pgh.pa.us
Views: Raw Message | Whole Thread | Download mbox | Resend email
Thread:
Lists: pgsql-general

Jason Aten <jaten(at)CS(dot)UCLA(dot)EDU> writes:
> Is there some way to find the dimensions of an array once it
> has been inserted into a table?

regression=# select array_dims(f) from arr;
array_dims
------------
[1:4][1:5]
(1 row)

The result is a text string, which isn't too helpful for a program;
might be nice to have some more program-friendly functions someday.

regards, tom lane

In response to

Browse pgsql-general by date

  From Date Subject
Next Message Brett W. McCoy 2000-12-18 22:32:33 Re: a "huge" table with small rows and culumns
Previous Message Jason Aten 2000-12-18 22:15:30 Re: Are arrays broken in 7.0.3?