config root man

Current Path : /usr/opt/mysql57/mysql-test/suite/sys_vars/t/

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 : //usr/opt/mysql57/mysql-test/suite/sys_vars/t/innodb_tmpdir_basic.test

--source include/have_innodb.inc

SET @start_global_value = @@global.innodb_tmpdir;
SELECT @start_global_value;

#
# exists as global and session
#
select @@session.innodb_tmpdir;

show global variables like 'innodb_tmpdir';
show session variables like 'innodb_tmpdir';

--disable_warnings
select * from information_schema.global_variables where variable_name='innodb_tmpdir';
select * from information_schema.session_variables where variable_name='innodb_tmpdir';
--enable_warnings
#
# Show that it is writable
#

set global innodb_tmpdir=@@global.tmpdir;
set session innodb_tmpdir=@@global.tmpdir;

#
# incorrect types
#
--error ER_WRONG_TYPE_FOR_VAR
set global innodb_tmpdir=1.1;
--error ER_WRONG_TYPE_FOR_VAR
set global innodb_tmpdir=1e1;

#
# path len more than 512
#
--error ER_WRONG_VALUE_FOR_VAR
set global innodb_tmpdir=repeat('a',1000);
show warnings;

#
# Cleanup
#

SET @@global.innodb_tmpdir = @start_global_value;
SELECT @@global.innodb_tmpdir;

Man Man