1source include/not_embedded.inc;
2
3connect (mysql, localhost, root,,);
4use mysql;
5create user 'test'@'localhost';
6
7#check to see if a created user is not a role by default
8select user, host, is_role from user where user='test' and host='localhost';
9
10drop user 'test'@'localhost';
11disconnect mysql;
12