mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
MDEV-24098: SHOW CREATE USER invalid for both PASSWORD and LOCKED
The parser of CREATE USER accepts ACCOUNT LOCK before PASSWORD EXPIRE but not the other way around. This just changes the SHOW CREATE USER to output a sql syntax that is valid. Thanks to Robert Bindar for analysis.
This commit is contained in:
@ -8950,6 +8950,9 @@ bool mysql_show_create_user(THD *thd, LEX_USER *lex_user)
|
||||
append_identifier(thd, &result, username, strlen(username));
|
||||
add_user_parameters(thd, &result, acl_user, false);
|
||||
|
||||
if (acl_user->account_locked)
|
||||
result.append(STRING_WITH_LEN(" ACCOUNT LOCK"));
|
||||
|
||||
if (acl_user->password_expired)
|
||||
result.append(STRING_WITH_LEN(" PASSWORD EXPIRE"));
|
||||
else if (!acl_user->password_lifetime)
|
||||
@ -8961,9 +8964,6 @@ bool mysql_show_create_user(THD *thd, LEX_USER *lex_user)
|
||||
result.append(STRING_WITH_LEN(" DAY"));
|
||||
}
|
||||
|
||||
if (acl_user->account_locked)
|
||||
result.append(STRING_WITH_LEN(" ACCOUNT LOCK"));
|
||||
|
||||
protocol->prepare_for_resend();
|
||||
protocol->store(result.ptr(), result.length(), result.charset());
|
||||
if (protocol->write())
|
||||
|
Reference in New Issue
Block a user