Closed t9t closed 4 years ago
Since jOOQ 1.12 there are now native JSON and JSONB types, so the ones in this library can be dropped and replaced with the native types.
JSON
JSONB
See also: https://www.jooq.org/notes#3.12.0
Note that this either will have to be a breaking change in the API, or there should be two different kinds of JsonDSL/JsonbDSL, or those classes need to have overloads for both the native and custom types.
JsonDSL
JsonbDSL
This was done in #5 and release in 1.0.0 and I have no idea why I didn't close this issue then.
Since jOOQ 1.12 there are now native
JSON
andJSONB
types, so the ones in this library can be dropped and replaced with the native types.See also: https://www.jooq.org/notes#3.12.0
Note that this either will have to be a breaking change in the API, or there should be two different kinds of
JsonDSL
/JsonbDSL
, or those classes need to have overloads for both the native and custom types.