Exact type information can be found in Postgres
I noticed that the type information is a bit inaccurate regarding miltidimensional arrays:
create table test (xid int[][] primary key);
insert into test values (array [[2, 4, 2, 7], [1, 5, 6, 0]])
select pg_typeof(xid) from test -- returns integer[]
How do I get back the exact type integer[][]
?
This is the standard bevahior according to the manual :