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

7 lines
185 B
Plaintext

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';