Arrays in Postgres

From: Tommie Jones (tommie.jones_at_retek.com)
Date: 01/19/04


Date: Mon, 19 Jan 2004 03:32:18 -0600
To: "DBI List" <dbi-users@perl.org>

Hello All,

I am attempting to use Arrays in Postgres/DBD-Pg. Specifically I am trying to use the range form or

as in "select data[1:5] from table". However this coredumps. I can do

"select data[1],data[2],data[4] from table" where I get each element explicitly however I would rather do the range.

Has anyone else noticed this issue.