Mino Togna
Mino Togna

Reputation: 31

postgres 'WITH' clause with jooq

Hell, I can't find a way to use the postgres 'WITH' clause with JOOQ. Could you please let me know if it's supported by JOOQ? Thanks

Upvotes: 3

Views: 834

Answers (1)

Lukas Eder
Lukas Eder

Reputation: 220762

Common table expressions (the "WITH clause") are currently not supported in jOOQ. There is a pending feature request on the jOOQ road map for CTE's: #454. As of jOOQ 3.0, there are currently no plans of actually supporting it, though.

(Your best option to push things a little bit is to discuss this topic on the jOOQ user group)

Upvotes: 1

Related Questions