summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/t/thread_pool_size_high.test
blob: 761aeee2b0a160be5f165db58481f27979c82075 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
--source include/not_windows.inc
--source include/not_embedded.inc
--source include/have_pool_of_threads.inc

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;