config root man

Current Path : /home/usr.opt/mysql57/mysql-test/suite/sys_vars/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/suite/sys_vars/r/old_passwords_func.result

SET @global_old_passwords = @@GLOBAL.old_passwords;
SET @session_old_passwords = @@SESSION.old_passwords;
'#------------------------FN_DYNVARS_115_01---------------------------#'
** Connection default **
SET GLOBAL old_passwords = 0;
Warnings:
Warning	1681	'old_passwords' is deprecated and will be removed in a future release.
SET SESSION old_passwords = 0;
Warnings:
Warning	1681	'old_passwords' is deprecated and will be removed in a future release.
CREATE USER 'userNewPass1'@'localhost' IDENTIFIED BY 'pass1';
CREATE USER 'userNewPass2'@'localhost' IDENTIFIED BY 'pass2';
** Connecting con1 using username 'userNewPass1' **
SELECT CURRENT_USER();
CURRENT_USER()
userNewPass1@localhost
userNewPass1@localhost Expected
** Connecting con2 using username 'userNewPass2' **
SELECT CURRENT_USER();
CURRENT_USER()
userNewPass2@localhost
userNewPass2@localhost Expected
** Connection default **
** Disconnecting con1, con2  **
DROP USER 'userNewPass1'@'localhost';
DROP USER 'userNewPass2'@'localhost';
SET @@GLOBAL.old_passwords = @global_old_passwords;
Warnings:
Warning	1681	'old_passwords' is deprecated and will be removed in a future release.
SET @@SESSION.old_passwords = @session_old_passwords;
Warnings:
Warning	1681	'old_passwords' is deprecated and will be removed in a future release.

Man Man