I'm trying to set up a table using pgAdmin4. Works like a charm... with one exception. pgAdmin4 only allows single dimension arrays.
And even when I try to get around it using a script with
"column_name" double precision[][] NOT NULL
It simply fails, while it works for the one dimensional array just fine.
Probably just a simple syntax problem but I fail to find the solution. Any hints?
EDIT: when trying to add the column via point 'n click it just fails to offer the option of multi dimensional arrays.
When trying to go around it with a script like this:
ALTER TABLE public.table_name DROP COLUMN "column_name";
ALTER TABLE public.table_name ADD COLUMN "column_name" double precision[][] NOT NULL;
I get a successfull change... but when I check the table again, it's still one-dimensional.
Explain gives no error code either.