--source include/have_innodb.inc # bool readonly # # show values; # select @@global.innodb_use_mtflush; --error ER_INCORRECT_GLOBAL_LOCAL_VAR select @@session.innodb_use_mtflush; show global variables like 'innodb_use_mtflush'; show session variables like 'innodb_use_mtflush'; select * from information_schema.global_variables where variable_name='innodb_use_mtflush'; select * from information_schema.session_variables where variable_name='innodb_use_mtflush'; # # show that it's read-only # --error ER_INCORRECT_GLOBAL_LOCAL_VAR set global innodb_use_mtflush=1; --error ER_INCORRECT_GLOBAL_LOCAL_VAR set session innodb_use_mtflush=1;