Details
-
Bug
-
Status: Closed (View Workflow)
-
Minor
-
Resolution: Fixed
-
10.1(EOL)
-
None
Description
MariaDB [test]> set global |
-> simple_password_check_digits = 1,
|
-> simple_password_check_letters_same_case = 1,
|
-> simple_password_check_other_characters = 1;
|
Query OK, 0 rows affected (0.00 sec) |
|
MariaDB [test]>
|
MariaDB [test]> set global |
-> simple_password_check_minimal_length = 0;
|
Query OK, 0 rows affected (0.00 sec) |
|
MariaDB [test]> show warnings;
|
Empty set (0.00 sec) |
|
MariaDB [test]> select @@simple_password_check_minimal_length; |
+----------------------------------------+ |
| @@simple_password_check_minimal_length |
|
+----------------------------------------+ |
| 4 |
|
+----------------------------------------+ |
1 row in set (0.00 sec) |
simple_password_check_minimal_length gets adjusted depending on other variables, which is very smart, but please produce a warning when it's done.