mirror of
https://github.com/MariaDB/server.git
synced 2025-01-15 19:42:28 +01:00
9 lines
244 B
PHP
9 lines
244 B
PHP
let $numa_support = `SELECT COUNT(VARIABLE_VALUE) = 1 FROM
|
|
INFORMATION_SCHEMA.GLOBAL_VARIABLES
|
|
WHERE VARIABLE_NAME='innodb_numa_interleave'`;
|
|
|
|
if ( $numa_support == 0 )
|
|
{
|
|
--skip Test requires: Binary must be built with NUMA support.
|
|
}
|
|
|