summaryrefslogtreecommitdiff
path: root/mysql-test/suite/sys_vars/r/thread_stack_basic.result
blob: d5a30bbaf6e02382873cced57fd209d051fefc17 (plain)
1
2
3
4
5
6
7
8
9
10
11
12
13
14
15
16
17
18
19
20
21
select @@global.thread_stack;
@@global.thread_stack
295936
select @@session.thread_stack;
ERROR HY000: Variable 'thread_stack' is a GLOBAL variable
show global variables like 'thread_stack';
Variable_name	Value
thread_stack	295936
show session variables like 'thread_stack';
Variable_name	Value
thread_stack	295936
select * from information_schema.global_variables where variable_name='thread_stack';
VARIABLE_NAME	VARIABLE_VALUE
THREAD_STACK	295936
select * from information_schema.session_variables where variable_name='thread_stack';
VARIABLE_NAME	VARIABLE_VALUE
THREAD_STACK	295936
set global thread_stack=1;
ERROR HY000: Variable 'thread_stack' is a read only variable
set session thread_stack=1;
ERROR HY000: Variable 'thread_stack' is a read only variable