mariadb/mysql-test/suite/roles/default_create_user_not_role.result
Sergei Golubchik 4abb8216a0 MDEV-17658 change the structure of mysql.user table
Implement User_table_json.
Fix scripts to use mysql.global_priv.
Fix tests.
2018-12-12 00:31:44 +01:00

8 lines
238 B
Text

connect mysql, localhost, root,,;
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';
disconnect mysql;