@@ -71,13 +71,13 @@ ENUM_VALUE_LIST NULL
71
71
READ_ONLY NO
72
72
COMMAND_LINE_ARGUMENT REQUIRED
73
73
create user foo1 identified by 'pwd';
74
- ERROR HY000: Your password does not satisfy the current policy requirements
74
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
75
75
create user foo1;
76
- ERROR HY000: Your password does not satisfy the current policy requirements
76
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
77
77
grant select on *.* to foo1 identified by 'pwd';
78
- ERROR HY000: Your password does not satisfy the current policy requirements
78
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
79
79
grant select on *.* to `FooBar1!` identified by 'FooBar1!';
80
- ERROR HY000: Your password does not satisfy the current policy requirements
80
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
81
81
grant select on *.* to `BarFoo1!` identified by 'FooBar1!';
82
82
drop user `BarFoo1!`;
83
83
create user foo1 identified by 'aA.12345';
@@ -99,28 +99,28 @@ simple_password_check_other_characters 3
99
99
create user foo1 identified by '123:qwe:ASD!';
100
100
drop user foo1;
101
101
create user foo1 identified by '-23:qwe:ASD!';
102
- ERROR HY000: Your password does not satisfy the current policy requirements
102
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
103
103
create user foo1 identified by '123:4we:ASD!';
104
- ERROR HY000: Your password does not satisfy the current policy requirements
104
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
105
105
create user foo1 identified by '123:qwe:4SD!';
106
- ERROR HY000: Your password does not satisfy the current policy requirements
106
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
107
107
create user foo1 identified by '123:qwe:ASD4';
108
- ERROR HY000: Your password does not satisfy the current policy requirements
108
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
109
109
create user foo1 identified by '123:qwe:ASD!';
110
110
set password for foo1 = password('qwe:-23:ASD!');
111
- ERROR HY000: Your password does not satisfy the current policy requirements
111
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
112
112
set password for foo1 = old_password('4we:123:ASD!');
113
- ERROR HY000: Your password does not satisfy the current policy requirements
113
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
114
114
set password for foo1 = password('qwe:123:4SD!');
115
- ERROR HY000: Your password does not satisfy the current policy requirements
115
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
116
116
set password for foo1 = old_password('qwe:123:ASD4');
117
- ERROR HY000: Your password does not satisfy the current policy requirements
117
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
118
118
set password for foo1 = password('qwe:123:ASD!');
119
119
select @@strict_password_validation;
120
120
@@strict_password_validation
121
121
1
122
122
set password for foo1 = '';
123
- ERROR HY000: Your password does not satisfy the current policy requirements
123
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
124
124
set password for foo1 = '2222222222222222';
125
125
ERROR HY000: The MariaDB server is running with the --strict-password-validation option so it cannot execute this statement
126
126
set password for foo1 = '11111111111111111111111111111111111111111';
@@ -134,13 +134,13 @@ ERROR HY000: The MariaDB server is running with the --strict-password-validation
134
134
grant select on *.* to foo2 identified with mysql_old_password using '2222222222222222';
135
135
ERROR HY000: The MariaDB server is running with the --strict-password-validation option so it cannot execute this statement
136
136
create user foo2 identified with mysql_native_password using '';
137
- ERROR HY000: Your password does not satisfy the current policy requirements
137
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
138
138
grant select on *.* to foo2 identified with mysql_old_password;
139
139
ERROR 28000: Can't find any matching row in the user table
140
140
update mysql.user set password='xxx' where user='foo1';
141
141
set global strict_password_validation=0;
142
142
set password for foo1 = '';
143
- ERROR HY000: Your password does not satisfy the current policy requirements
143
+ ERROR HY000: Your password does not satisfy the current policy requirements (simple_password_check)
144
144
set password for foo1 = '2222222222222222';
145
145
set password for foo1 = '11111111111111111111111111111111111111111';
146
146
create user foo2 identified by password '11111111111111111111111111111111111111111';
0 commit comments