Yes, thanks Sergey. This was recently discussed on the user group. jOOQ splits long IN clauses after 1000 elements for those dialects that have some limitation. This can be seen here:
https://github.com/jOOQ/jOOQ/blob/master/jOOQ/src/main/java/org/jooq/impl/InCondition.java Cheers, Lukas Am Freitag, 8. Juni 2012 schrieb Sergey Epik <[email protected]>: > jOOQ splits the IN argument into several OR-connected IN arguments > > On Fri, Jun 8, 2012 at 3:28 PM, digulla <[email protected]> wrote: >> >> Some databases like Oracle have a limit on the number of elements that you can specify in an IN(). >> Has jOOQ some built-in functionality to work around this limit or is that something which I have to handle in my own code? >
