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