I'm have some issues the way that jooq is dealing with UDTs from and oracle database.
Oracle version 11.2.0.3 jooq version 3.6.1 If I define a table UDT as below: create or replace type schema.tableTypeName as table of objectTypeName And then reference that table type in a UDT in a different schema (having granted execute with grant option on the type to said schema) as below: create or replace type differentSchema.differentOjectTypeName as object (field 1number(10,2), periodic_premium number(10,2)) -- 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.
