mirror of
https://github.com/MariaDB/server.git
synced 2025-01-18 21:12:26 +01:00
11 lines
297 B
Text
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;
|