mirror of
https://github.com/MariaDB/server.git
synced 2025-01-30 02:30:06 +01:00
10 lines
244 B
PHP
10 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.
|
||
|
}
|
||
|
|