1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-10829: Port Innodb NUMA interleave test cases from MySQL

This commit is contained in:
Annamalai Gurusami
2016-09-20 09:51:22 +10:00
committed by Daniel Black
parent f566a4f83c
commit 26e3117ca9
3 changed files with 33 additions and 0 deletions

View File

@ -0,0 +1,14 @@
--source include/have_innodb.inc
--source include/have_numa.inc
--source include/have_64bit.inc
SELECT @@GLOBAL.innodb_numa_interleave;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
SET @@GLOBAL.innodb_numa_interleave=off;
SELECT @@GLOBAL.innodb_numa_interleave;
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
SELECT @@SESSION.innodb_numa_interleave;