MINI MINI MANI MO

Path : /opt/mysql/mysql-test/suite/sys_vars/r/
File Upload :
Current File : //opt/mysql/mysql-test/suite/sys_vars/r/pfs_max_index_stat_basic.result

select @@global.performance_schema_max_index_stat;
@@global.performance_schema_max_index_stat
123
select @@session.performance_schema_max_index_stat;
ERROR HY000: Variable 'performance_schema_max_index_stat' is a GLOBAL variable
show global variables like 'performance_schema_max_index_stat';
Variable_name	Value
performance_schema_max_index_stat	123
show session variables like 'performance_schema_max_index_stat';
Variable_name	Value
performance_schema_max_index_stat	123
select * from information_schema.global_variables
where variable_name='performance_schema_max_index_stat';
VARIABLE_NAME	VARIABLE_VALUE
PERFORMANCE_SCHEMA_MAX_INDEX_STAT	123
select * from information_schema.session_variables
where variable_name='performance_schema_max_index_stat';
VARIABLE_NAME	VARIABLE_VALUE
PERFORMANCE_SCHEMA_MAX_INDEX_STAT	123
set global performance_schema_max_index_stat=1;
ERROR HY000: Variable 'performance_schema_max_index_stat' is a read only variable
set session performance_schema_max_index_stat=1;
ERROR HY000: Variable 'performance_schema_max_index_stat' is a read only variable

OHA YOOOO