summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/thread_pool_size_high.test
blob: d1e68f026f02b759224a99f03f462741a9f1ec19 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
--source include/not_windows.inc
--source include/not_embedded.inc
--source include/have_pool_of_threads.inc
call mtr.add_suppression("Could not increase number of max_open_files to more than");

SELECT @@global.thread_pool_size;

# Set lower value
SET @@global.thread_pool_size=150;
# Set original value
SET @@global.thread_pool_size=200;
# Try higher value
SET @@global.thread_pool_size=201;

SELECT @@global.thread_pool_size;