drop schema if exists test_set_password_for_user;
NOTICE: schema "test_set_password_for_user" does not exist, skipping
create schema test_set_password_for_user;
set current_schema = test_set_password_for_user;
set b_compatibility_user_host_auth to on;
drop user if exists 'test'@'127.0.0.1';
NOTICE: role "test@127.0.0.1" does not exist, skipping
create user 'test'@'127.0.0.1' identified by 'Aa@123456';
set password for 'test'@'127.0.0.1' = 'Test@456';
set password for current_user = 'Test@123';
set password for current_user() = 'Test@456';
drop user 'test'@'127.0.0.1';
drop schema test_set_password_for_user;
reset current_schema;