Getting the following error: ``` Error 1105: unknown error: unsupported feature: LIMIT with non-integer literal ``` Even though the query I'm running actually does use an integer, it's just interpolated. Minimal repo: ```go _, err := db.Query(`SELECT * FROM foo LIMIT ?`, 10) // err is "Error 1105: unknown error: unsupported feature: LIMIT with non-integer literal" ``` (maybe the error means non-literal integers are not supported? using `LIMIT 10` instead of interpolating works.)