1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-9940 CREATE ROLE blocked by password validation plugin

This commit is contained in:
Sergei Golubchik
2016-04-30 09:09:10 +02:00
parent 357f4d832b
commit 4db2ebb1fe
3 changed files with 9 additions and 1 deletions

View File

@ -147,6 +147,8 @@ grant select on *.* to foo2 identified with mysql_old_password using '2222222222
drop user foo2;
set global strict_password_validation=1;
drop user foo1;
create role r1;
drop role r1;
uninstall plugin simple_password_check;
create user foo1 identified by 'pwd';
drop user foo1;