I had some very long queries that were panic'ing on array out-of-bounds on the following line: ``` // value of each parameter [n bytes] paramValues := data[pos:pos] ``` The query basically had some 2100+ placeholders like `Select * from myTable where id in (?,?,?,?,....?)`. The following change seems to have fixed it: https://github.com/jaekwon/mysql/commit/25a9fdb04454968384da266a9ce032cc2ac47d31 It's hacky though so perhaps a refactoring is in order. Is there a better way to pass in many id's in a SELECT-IN query?