summaryrefslogtreecommitdiffstats
path: root/mysql-test/suite/rpl/r/rpl_strict_password_validation.result
blob: 579f576d881d2ee80697ad6505b22f7609d33ab8 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
include/master-slave.inc
[connection master]
connection slave;
install soname "simple_password_check";
select @@strict_password_validation;
@@strict_password_validation
1
connection master;
create user foo1 identified by password '11111111111111111111111111111111111111111';
set password for foo1 = PASSWORD('PLAINtext-password!!99');
drop user foo1;
connection slave;
connection slave;
create user foo1 identified by password '11111111111111111111111111111111111111111';
ERROR HY000: The MariaDB server is running with the --strict-password-validation option so it cannot execute this statement
uninstall plugin simple_password_check;
include/rpl_end.inc