mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 10:31:54 +01:00
4abb8216a0
Implement User_table_json. Fix scripts to use mysql.global_priv. Fix tests.
8 lines
238 B
Text
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;
|