summaryrefslogtreecommitdiff
path: root/mysql-test/suite/roles/default_create_user_not_role.result
blob: 171015f6e822162772c52231132af03203db157b (plain)
1
2
3
4
5
6
7
8
connect  mysql, localhost, root,,;
use mysql;
create user 'test'@'localhost';
select user, host, is_role from user where user='test' and host='localhost';
user	host	is_role
test	localhost	N
drop user 'test'@'localhost';
disconnect mysql;