I'm using Avatica calcite as a JDBC driver to query Druid DB. I found the 'IN' syntax CAN NOT followed by more than 19 elements. e.g
SELECT * FROM ds1 WHERE city_id IN
(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19)
this works, but this one errors:
SELECT * FROM ds1 WHERE city_id IN
(1,2,3,4,5,6,7,8,9,10,11,12,13,14,15,16,17,18,19,20)
how can I use the 'IN' syntax with more than 19 elements ?
OR
as workground ,just want to know that will thisIN
issue be added to the fixing plan of Avatica ? – rellocs wood Sep 22 '17 at 00:59