Is there any plan to extend `drill.query()` so that sql parameters can be passed? In general, this is done with an additional argument in `cursor.execute`, as ``` cursor.execute("SELECT ?, ?, ? FROM table", (var1, var2, var3)) ```
Is there any plan to extend
drill.query()so that sql parameters can be passed?In general, this is done with an additional argument in
cursor.execute, as