mirror of
https://github.com/MariaDB/server.git
synced 2025-12-24 11:21:21 +03:00
The testcase checks to see if the create user command sets the is_role column to 'N' by default
7 lines
185 B
Plaintext
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';
|