summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/perfschema/t/grant.test
blob: 446965dfe9dffc4aa27d6587e177563e30580059 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
--source include/not_embedded.inc
--source include/have_perfschema.inc
#
# MDEV-22884 Assertion `grant_table || grant_table_role' failed on perfschema
#
create user a@localhost;
connect a,localhost,a;
select * from performance_schema.global_status where variable_name='b';
connection default;
disconnect a;
drop user a@localhost;