1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-01 03:47:19 +03:00
Files
mariadb/mysql-test/suite/roles/default_create_user_not_role.test
2013-10-21 19:57:25 -07:00

12 lines
297 B
Plaintext

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;