summaryrefslogtreecommitdiff
path: root/mysql-test/suite/roles/drop_current_user-5176.test
blob: e022d3e8a865488ad1ea02f4e3af0ea40ba4a34d (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
#
# MDEV-5176 Server crashes in fill_schema_applicable_roles on select from APPLICABLE_ROLES after a suicide
#
--source include/not_embedded.inc

grant create user on *.* to foo@localhost;
--connect (foo,localhost,foo,,)
drop user foo@localhost;
select * from information_schema.applicable_roles;
--error ER_NONEXISTING_GRANT
show grants;
select current_user();