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
Possible regression in vtgate query parsing from Vitess 8 to 9 using index hints.
vtgate
Disclaimer: I didn't test the repro on vanilla Vitess but our internal version shouldn't differ a lot (at least in the query parsing)
Vitess 8.0
> SELECT id FROM blog_posts USE INDEX (PRIMARY) WHERE id = 10; +------+ | id | |------| | 10 | +------+ 1 row in set Time: 0.004s
Vitess 9.0
> SELECT id FROM blog_posts USE INDEX (PRIMARY) WHERE id = 10; (1105, "vtgate: http://vtgate:15000/: syntax error at position 67 near 'PRIMARY'")
See above.
The text was updated successfully, but these errors were encountered:
Thank you! 🙇
Sorry, something went wrong.
systay
GuptaManan100
Successfully merging a pull request may close this issue.
Overview of the Issue
Possible regression in
vtgate
query parsing from Vitess 8 to 9 using index hints.Reproduction Steps
Disclaimer: I didn't test the repro on vanilla Vitess but our internal version shouldn't differ a lot (at least in the query parsing)
Vitess 8.0
Vitess 9.0
Binary version
See above.
The text was updated successfully, but these errors were encountered: