I wasn't aware of such a Sybase (ASE or SQL Anywhere?) limitation. Can you provide a documentation link explaining this? What would need to be adapted by jOOQ?
Cheers Lukas Am Mittwoch, 13. Juni 2012 schrieb digulla <[email protected]>: > Sybase has a limit, too: It limits the number of logic operations in a single WHERE and replaces IN() with "field = value1 OR field = value2 OR ..." > This case doesn't seem to be handled. Is that an omission or by design? > > Am Mittwoch, 13. Juni 2012 17:05:48 UTC+2 schrieb Lukas Eder: >> >> 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 >> >
