Re: [BUGS] BUG #2212: Extracting array from 2 dim array may be incorrect

2006-01-26 Thread Tom Lane
"Walter Roeland" <[EMAIL PROTECTED]> writes: > Select (Array[5,8,1])[2] as E; > returns 8 (ok, dimension is lowerd from 1 to 0). > Select (Array[Array[3,2,2],Array[7,4,4],Array[5,8,1]])[3:3] as V; > returns {{5,8,1}} (I suppose this is ok, same dimension). > But: > Select (Array[Array[3,2,2],Arra

[BUGS] BUG #2212: Extracting array from 2 dim array may be incorrect

2006-01-26 Thread Walter Roeland
The following bug has been logged online: Bug reference: 2212 Logged by: Walter Roeland Email address: [EMAIL PROTECTED] PostgreSQL version: 8.1.2 Operating system: Windows XP professional Description:Extracting array from 2 dim array may be incorrect Details: Selec