1
0
mirror of https://github.com/MariaDB/server.git synced 2026-01-06 05:22:24 +03:00

stack too small on labrador (again!)

increase the thread stack a bit for main.signal_demo3
and sys_vars.max_sp_recursion_depth_func to stop failing
This commit is contained in:
Sergei Golubchik
2016-01-25 22:57:47 +01:00
parent c37107380a
commit d5b1b1ac60
6 changed files with 12 additions and 12 deletions

View File

@@ -1,20 +1,20 @@
select @@global.thread_stack;
@@global.thread_stack
294912
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 294912
thread_stack 295936
show session variables like 'thread_stack';
Variable_name Value
thread_stack 294912
thread_stack 295936
select * from information_schema.global_variables where variable_name='thread_stack';
VARIABLE_NAME VARIABLE_VALUE
THREAD_STACK 294912
THREAD_STACK 295936
select * from information_schema.session_variables where variable_name='thread_stack';
VARIABLE_NAME VARIABLE_VALUE
THREAD_STACK 294912
THREAD_STACK 295936
set global thread_stack=1;
ERROR HY000: Variable 'thread_stack' is a read only variable
set session thread_stack=1;