mirror of
https://github.com/MariaDB/server.git
synced 2025-01-25 00:04:33 +01:00
10 lines
496 B
Text
10 lines
496 B
Text
|
|
||
|
#
|
||
|
# MDEV-4029 SELECT on information_schema using a subquery locks up the information_schema table due to incorrect mutexes handling
|
||
|
#
|
||
|
select variable_name from information_schema.session_status where variable_name =
|
||
|
(select variable_name from information_schema.session_status where variable_name = 'uptime');
|
||
|
select variable_name from information_schema.session_variables where variable_name =
|
||
|
(select variable_name from information_schema.session_variables where variable_name = 'basedir');
|
||
|
|