r2dbc-postgresql calling a PLSQL function returning SETOF with TYPE has only one column
I am calling a POSTGRES PLSQL function from r2dbc, that returns a SETOF foo_type
, where foo_type
is a user-defined type. Basically this works, but the call returns rows with only a single String
column, that is CSV-like formatted, e.g. "(bar,1234)"
.