Skip to content
Advertisement

jooq multiset jsonb column fails with Cannot construct instance of `org.jooq.JSONB`

i’m having my first hands on experience with jooqs new multiset feature. There is a product table, each product can be assigned a variable number of storages. Each storage may have a storage_coordinate_instance, whereas a storage_coordinate_instance has a column hierarchy which holds the resolved recursive representation of the storage location. (Updates are very rare, and the stored hierarchy avoids resolving a recursive query each time the storage location is needed).

All went fine until i tried to add the hierarchy column to the multiset.

Here’s the query:

JavaScript

and thats the class the storage items are mapped to:

JavaScript

The query performs without errors in case the current filtering does not return products with assigned storage_coordinate_instance.

Otherwise it yields

JavaScript

Are there problems in the query? Or could it be a problem related to jooq’s multiset emulation for postgres based on JSON?

Java 11 Jooq 3.15.3 Postgres driver 42.2.24

Thanks for your help!

Kind regards, Andreas

Small Edit: How to order the result set by the size of of the multiset? Either by size actually, or by pseudo: put those with at least one storage first and those with none behind.

Advertisement

Answer

There seems to be a bug in jOOQ 3.15.3 that tries to map JSON data to JSON or JSONB via Jackson, instead of going through jOOQ’s own serialiser, internally, see:

The bug will be fixed in 3.16.0 and 3.15.4. As a workaround, you could cast your JSONB document to TEXT for the time being.

User contributions licensed under: CC BY-SA
6 People found this is helpful
Advertisement