Is there a column type that takes a `Collection` o...
# exposed
t
Is there a column type that takes a
Collection
of
String
? I am having issue with inserting data into postgresql array column Or do I to parse it to an acceptable format myself? I am getting this error:
Copy code
Caused by: org.postgresql.util.PSQLException: ERROR: column "images" is of type character varying[] but expression is of type character varying
In case anyone is facing thesame issue, checkout this commit https://github.com/lirispp/Exposed/commit/143b706684a70e8e1e83c3bed221a624160d5cd7, I think it is pgsql specific
v
Have you done and tested that solution? I wish I could implement this as an extension instead of changing the library itself