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/have_profiling_basic.result

select @@global.have_profiling="1";
@@global.have_profiling="1"
0
Warnings:
Warning	1287	'@@have_profiling' is deprecated and will be removed in a future release.
select @@session.have_profiling;
ERROR HY000: Variable 'have_profiling' is a GLOBAL variable
show global variables like 'have_profiling';
Variable_name	Value
have_profiling	#
show session variables like 'have_profiling';
Variable_name	Value
have_profiling	#
select * from information_schema.global_variables where variable_name='have_profiling';
VARIABLE_NAME	VARIABLE_VALUE
HAVE_PROFILING	#
select * from information_schema.session_variables where variable_name='have_profiling';
VARIABLE_NAME	VARIABLE_VALUE
HAVE_PROFILING	#
set global have_profiling=1;
ERROR HY000: Variable 'have_profiling' is a read only variable
set session have_profiling=1;
ERROR HY000: Variable 'have_profiling' is a read only variable

Man Man