I'm trying to run a query through the SQL tab in phpMyAdmin 5.2.0 on a local MariaDB 10.5.10 server, my PHP version is 8.1.14, and my box is an EC2 instance running Amazon Linux 2 and Apache 2.4.54 with PHP-FPM
I'm pasting the query SELECT SLEEP(x)
, where x >= 0.5
, in the query box of the SQL pane; or any query that takes longer than 0.5s to run
When I click Go a spinner appears for the relevant number of seconds and then the whole SQL pane goes blank except for a button that says Show query box
There are no errors visible, no JS errors if I inspect the page, and I can't find anything untoward in my server logs; /var/log/httpd/*.log
or /var/log/php-fpm/*.log
If I run SELECT SLEEP(y)
where y <= 0.4
; or a query that takes less than 0.4s to run; everything appears to work as expected. All queries also run correctly if I run mysql from the command line
What's going on? Where should I look to debug this?