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
Anchors inside queries aren't working. If you go to https://demo.phpmyadmin.net/master-config/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html#operator_or you will be redirected to https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html instead of https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html#operator_or.
Steps to reproduce the behavior:
SELECT * FROM accounts WHERE 1 = 1 OR 1 = 1;
OR
Anchors should work.
The text was updated successfully, but these errors were encountered:
Thank you for the report ! Does it affect 5.1 too ?
Sorry, something went wrong.
Yes.
This is because # should be URL encoded as %23 in order to be part of the redirect URL
#
%23
Add a ChangeLog entry for #16966
cf6522f
Signed-off-by: William Desportes <williamdes@wdes.fr>
46af95f
williamdes
No branches or pull requests
Describe the bug
Anchors inside queries aren't working. If you go to https://demo.phpmyadmin.net/master-config/url.php?url=https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html#operator_or you will be redirected to https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html instead of https://dev.mysql.com/doc/refman/8.0/en/logical-operators.html#operator_or.
To Reproduce
Steps to reproduce the behavior:
SELECT * FROM accounts WHERE 1 = 1 OR 1 = 1;ORoperator inside query.Expected behavior
Anchors should work.
Client configuration
The text was updated successfully, but these errors were encountered: