mirror of
https://github.com/MariaDB/server.git
synced 2025-01-27 01:04:19 +01:00
4c610d10d4
The C preprocessor symbol WITH_NUMA is never defined. Instead, the symbol HAVE_LIBNUMA is used for checking if the feature is to be used. If cmake -DWITH_NUMA=OFF is specified, HAVE_LIBNUMA will not be defined at compilation time even if the library is available. If cmake -DWITH_NUMA=ON is specified but the library is not available at configuration time, the compilation will be aborted.
15 lines
592 B
Text
15 lines
592 B
Text
--source include/have_innodb.inc
|
|
--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
|
|
where variable_name like 'innodb%' and
|
|
variable_name not in (
|
|
'innodb_disallow_writes', # only available WITH_WSREP
|
|
'innodb_numa_interleave', # only available WITH_NUMA
|
|
'innodb_sched_priority_cleaner', # linux only
|
|
'innodb_use_native_aio') # default value depends on OS
|
|
order by variable_name;
|