Not sure if this is suppose to work or not. Assume I have a table A with a UDT field b of type B and that B has a field C of type String. The following doesn't work:
ARecord rec = ...; rec.get(A.B.C) => exception: field not contained in row type.. I found this https://github.com/jOOQ/jOOQ/issues/16721 but not sure if it's the same. I debugged my code and the full path of the field as available at runtime "a"."b"."c". I going to experiment with getQualifiedName and breakdown the name and do the nested access manually. -- 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]. To view this discussion visit https://groups.google.com/d/msgid/jooq-user/e65ab2db-b895-48e9-8e1c-c7363ae12a5an%40googlegroups.com.
