config root man

Current Path : /home/usr.opt/mysql57/mysql-test/r/

FreeBSD hs32.drive.ne.jp 9.1-RELEASE FreeBSD 9.1-RELEASE #1: Wed Jan 14 12:18:08 JST 2015 root@hs32.drive.ne.jp:/sys/amd64/compile/hs32 amd64
Upload File :
Current File : //home/usr.opt/mysql57/mysql-test/r/plugin_auth_expire.result

#
# Bug #22551523: ALTER USER IDENTIFIED WITH AUTH_PAM DISABLES USER ACCOUNT
#
CREATE USER b22551523@localhost;
# Must be N
SELECT password_expired from mysql.user where user='b22551523' and host = 'localhost';
password_expired
N
ALTER USER b22551523@localhost IDENTIFIED with 'test_plugin_server';
# Must still be N
SELECT password_expired from mysql.user where user='b22551523' and host = 'localhost';
password_expired
N
ALTER USER b22551523@localhost IDENTIFIED with 'mysql_native_password';
# Must be Y
SELECT password_expired from mysql.user where user='b22551523' and host = 'localhost';
password_expired
Y
DROP USER b22551523@localhost;

Man Man