summaryrefslogtreecommitdiff
path: root/mysql-test/t/information_schema2.test
blob: c2479087f47b284a108d74edaae5f81ad8ba9955 (plain)
1
2
3
4
5
6
7
8
9

#
# 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');