mirror of
				https://github.com/MariaDB/server.git
				synced 2025-11-03 14:33:32 +03: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.
 | 
						|
}
 | 
						|
 |