I try to use arrays, and get stuck with using numeric arrays and string arrays. Double arrays work as specified in the test, but numeric, or strings fails with the following error: org.postgresql.util.PSQLException: ERROR: wrong element type
Column definition is a simple:
create table my_table (
my_strings varchar[],
my_numeric numeric[]
);
Rings a bell and am I overseeing something, or is this a missing feature? :-)
I try to use arrays, and get stuck with using numeric arrays and string arrays. Double arrays work as specified in the test, but numeric, or strings fails with the following error:
org.postgresql.util.PSQLException: ERROR: wrong element typeColumn definition is a simple:
Rings a bell and am I overseeing something, or is this a missing feature? :-)