mariadb/mysql-test/suite/sys_vars/t/sysvars_innodb.test

16 lines
592 B
Text
Raw Normal View History

--source include/have_innodb.inc
2014-10-11 10:19:56 +02:00
--source include/have_debug.inc
--source include/not_valgrind.inc
--source include/word_size.inc
--vertical_results
--replace_regex /^\/\S+/PATH/ /\.\//PATH/
select * from information_schema.system_variables
2014-10-11 10:19:56 +02:00
where variable_name like 'innodb%' and
variable_name not in (
'innodb_disallow_writes', # only available WITH_WSREP
'innodb_numa_interleave', # only available WITH_NUMA
2014-10-11 10:19:56 +02:00
'innodb_sched_priority_cleaner', # linux only
'innodb_use_native_aio') # default value depends on OS
order by variable_name;