I am using the camel sql(version 2.20.1) and running an sql query using the template
SELECT column1,column2 FROM my_table WHERE column2 IN (:#in:ids)
.
Everything here is working fine, but my doubt is like how does it handle the case: if the count of ids greater than 1000
.
Does camel handle this case internally or should I create sublist of size 1000 in this case?
Since I am new to this camel implementation looking for a more optimized solution if there is any.