mariadb/mysql-test/suite/roles/default_create_user_not_role.test

12 lines
297 B
Text
Raw Normal View History

2013-10-19 03:56:28 +02:00
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;