How to expose new SQL function in JOOQ

Viewed 244

I want to use REGEXP_REPLACE sql function (I'm targeting Postgres), but after quick inspection of DSL class in JOOQ it seems that it is not exposed yet.

How should I approach the problem of adding new function?

  • I can try extending AbstractFunction, similarly to org.jooq.impl.Replace
  • Is there any more general way to calling functions not exposed by JOOQ's DSL?
1 Answers
Related