mirror of
https://github.com/MariaDB/server.git
synced 2025-07-29 05:21:33 +03:00
Give ASAN some more stack
When compiling CMAKE_BUILD_TYPE=Debug WITH_ASAN using clang-7 -O2 the following tests could fail due to insufficient stack size: main.signal_demo3 sys_vars.max_sp_recursion_depth_func
This commit is contained in:
@ -1,17 +1,17 @@
|
||||
#
|
||||
# only global
|
||||
#
|
||||
--replace_result 372736 299008
|
||||
--replace_result 392192 299008
|
||||
select @@global.thread_stack;
|
||||
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
|
||||
select @@session.thread_stack;
|
||||
--replace_result 372736 299008
|
||||
--replace_result 392192 299008
|
||||
show global variables like 'thread_stack';
|
||||
--replace_result 372736 299008
|
||||
--replace_result 392192 299008
|
||||
show session variables like 'thread_stack';
|
||||
--replace_result 372736 299008
|
||||
--replace_result 392192 299008
|
||||
select * from information_schema.global_variables where variable_name='thread_stack';
|
||||
--replace_result 372736 299008
|
||||
--replace_result 392192 299008
|
||||
select * from information_schema.session_variables where variable_name='thread_stack';
|
||||
|
||||
#
|
||||
|
Reference in New Issue
Block a user