summaryrefslogtreecommitdiff
path: root/mysql-test/suite/roles/grant_proxy-5526.test
blob: eadc763b966bdc81a22224e72d3598c5a1351592 (plain)
1
2
3
4
5
6
7
8
9
10
11
--source include/not_embedded.inc
#
# MDEV-5526 Assertion `proxied_user->host.length' fails on GRANT PROXY ON <role>
#
create role r1;
create user user;
grant proxy on r1 to user;
show grants for user;
drop user user;
drop role r1;