1#
2# MDEV-5176 Server crashes in fill_schema_applicable_roles on select from APPLICABLE_ROLES after a suicide
3#
4--source include/not_embedded.inc
5
6create user foo@localhost;
7grant create user on *.* to foo@localhost;
8--connect (foo,localhost,foo,,)
9drop user foo@localhost;
10select * from information_schema.applicable_roles;
11--error ER_NONEXISTING_GRANT
12show grants;
13select current_user();
14
15