I've ran into the same problem as mentioned above.
I've updated my project to jOOQ 3.4.4, but there is another problem:
SQL [insert into "data"."select_groups" ("group_type", "group_label") 
values (?::group_type[], ?) returning "data"."select_groups"."id"]; ERROR: 
type "group_type[]" does not exist

I've tested the sql-code in pgAdmin, the solution was to prefix the type 
name with the schema name: ::group_type[] --> ::data.group_type[]
Is there a way, to add this functionality to jOOQ?

Currently, one workaround is to update the search path:
context.fetch("SET search_path TO data, public;");

Best regards,
Andrej

Am Montag, 28. April 2014 14:34:43 UTC+2 schrieb Lukas Eder:
>
>
>
>
> 2014-04-28 14:08 GMT+02:00 Lukas Eder <[email protected] <javascript:>>:
>
>> Thanks for reporting. Yes, this is a bug. I have registered #3214 for 
>> this.
>> https://github.com/jOOQ/jOOQ/issues/3214
>>
>
> This issue is now fixed on GitHub master and will be released in jOOQ 
> 3.4.0, 3.3.2, 3.2.5.
>
> Thanks again for reporting,
> Lukas
>

-- 
You received this message because you are subscribed to the Google Groups "jOOQ 
User Group" group.
To unsubscribe from this group and stop receiving emails from it, send an email 
to [email protected].
For more options, visit https://groups.google.com/d/optout.

Reply via email to