These two Postgres function calls return the same, whereas I would expect the latter to retain its nested array structure. How do I do that?
SELECT * FROM unnest('{1, 10, 100, 2, 11, 101}'::integer[]);
SELECT * FROM unnest('{{1, 10, 100}, {2, 11, 101}}'::integer[]);
I need this for manipulating array of arrays.