We read every piece of feedback, and take your input very seriously.
To see all available qualifiers, see our documentation.
Have a question about this project? Sign up for a free GitHub account to open an issue and contact its maintainers and the community.
By clicking “Sign up for GitHub”, you agree to our terms of service and privacy statement. We’ll occasionally send you account related emails.
Already on GitHub? Sign in to your account
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:
_, 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.)
LIMIT 10
The text was updated successfully, but these errors were encountered:
Thanks for the report, this is definitely a bug
I have a fix, should get it released in the next few days
Sorry, something went wrong.
awesome, thank you!
Successfully merging a pull request may close this issue.
Getting the following error:
Even though the query I'm running actually does use an integer, it's just interpolated.
Minimal repo:
(maybe the error means non-literal integers are not supported? using
LIMIT 10
instead of interpolating works.)The text was updated successfully, but these errors were encountered: