Commit d96e7fa7 authored by Vicențiu Ciorbaru's avatar Vicențiu Ciorbaru Committed by Sergei Golubchik

Added testcase for acl_roles.

The testcase checks to see if the create user command sets the is_role column
to 'N' by default
parent 45903359
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';
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;
Markdown is supported
0%
or
You are about to add 0 people to the discussion. Proceed with caution.
Finish editing this message first!
Please register or to comment