I'm using Avatica as a JDBC driver to query a Druid DB but I found it doesn't support MYSQL-like paging syntax:
SELECT * FROM tableA limit 4, 5
It only supports syntax like
SELECT * FROM tableA limit 2
How do I write the paging SQL with Avatica?