mariadb/mysql-test/suite/roles/default_create_user_not_role.test
2013-10-21 19:57:25 -07:00

11 lines
297 B
Text

source include/not_embedded.inc;
connect (mysql, localhost, root,,);
use mysql;
create user 'test'@'localhost';
#check to see if a created user is not a role by default
select user, host, is_role from user where user='test' and host='localhost';
drop user 'test'@'localhost';
disconnect mysql;