summaryrefslogtreecommitdiff
path: root/mysql-test/suite/roles/ip-6401.test
blob: 34d8553afa3361dfb2c40da74488dd0eb9053ac8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
--source include/not_embedded.inc
create role r1;
create user foo@'127.0.0.1';
grant r1 to foo@'127.0.0.1';

--connect (con1,127.0.0.1,foo,,)
show grants;
set role r1;
select * from information_schema.enabled_roles;

connection default;
drop user foo@'127.0.0.1';
drop role r1;