MDEV-19519 mysql_install_db.exe doesn't set password_last_changed for newly created password

This commit is contained in:
Vladislav Vaintroub 2020-03-25 18:16:36 +01:00
parent 497a4169df
commit 3a1075b93e

View File

@ -364,11 +364,12 @@ static int create_myini()
static const char update_root_passwd_part1[]=
"UPDATE mysql.global_priv SET priv=json_set(priv,"
"'$.password_last_changed', UNIX_TIMESTAMP(),"
"'$.plugin','mysql_native_password',"
"'$.authentication_string',PASSWORD(";
static const char update_root_passwd_part2[]=
")) where User='root';\n";
static const char remove_default_user_cmd[]=
static const char remove_default_user_cmd[]=
"DELETE FROM mysql.user where User='';\n";
static const char allow_remote_root_access_cmd[]=
"CREATE TEMPORARY TABLE tmp_user LIKE global_priv;\n"