New issue
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
Analyze Explain at mariadb.org doesn't have a redirect link #17006
Comments
|
Thank you! Bug confirmed, seems like the url is wrong for some reason |
I'm trying to fix this, but I'm not able to reproduce it, is it sometime work and sometime not? @williamdes the exception is that i'm using mac, but It doesn't matter I think. |
Hi @iifawzi , you can't reproduce it, because you've selected the MariaDB. You have |
|
I've found that the cause of the error is this check phpmyadmin/libraries/classes/Html/Generator.php Lines 1154 to 1155 in a0410aa
The maximum is set to 1000: phpmyadmin/libraries/config.default.php Lines 2825 to 2833 in a0410aa
I've tested with 2000 and it worked, but I couldn't find any details about the mentioned bug to take a look. @williamdes |
|
Thank you all for your comments and work ! |
|
I could confirm the bug by changing EXPLAIN SELECT actor_id AS actor_id, (SELECT first_name FROM sakila.actor WHERE actor_id = actor_id ORDER BY actor_id DESC LIMIT 1) AS first_name FROM sakila.actor GROUP BY actor_id;into EXPLAIN SELECT actor_id AS actor_id, (SELECT first_name FROM sakila.actor WHERE actor_id = actor_id ORDER BY actor_id DESC LIMIT 1) AS first_name, (SELECT first_name FROM sakila.actor WHERE actor_id = actor_id ORDER BY actor_id DESC LIMIT 1) AS first_name2 FROM sakila.actor GROUP BY actor_id;(just adding more length) |
|
|
Signed-off-by: William Desportes <williamdes@wdes.fr>

Describe the bug
Analyze Explain at mariadb.org doesn't work as expected.
For simple queries like
EXPLAIN SELECT actor_id FROM sakila.actorworks.For complex queries like
EXPLAIN SELECT actor_id AS actor_id, (SELECT first_name FROM sakila.actor WHERE actor_id = actor_id ORDER BY actor_id DESC LIMIT 1) AS first_name FROM sakila.actor GROUP BY actor_idit doesn't work. The supposed redirect link is empty.To Reproduce
Steps to reproduce the behavior:
EXPLAIN SELECT actor_id AS actor_id, (SELECT first_name FROM sakila.actor WHERE actor_id = actor_id ORDER BY actor_id DESC LIMIT 1) AS first_name FROM sakila.actor GROUP BY actor_idAnalyze Explain at mariadb.orgExpected behavior
It should be redirected to mariadb.org with the query.
Screenshots
Client configuration
The text was updated successfully, but these errors were encountered: