There is guarantee that function unnest()
will be return values in these order, how they are located?
That is, for exmple from this:
arr (INTEGER[])
---------------
{{3,5},{33,3}}
This query:
SELECT unnest(arr) FROM "table"
Always will be return
3
5
33
3
?
Or may be result will be ordered differently, than array elements are ordered?