Skip to content
Projects
Groups
Snippets
Help
Loading...
Help
Support
Keyboard shortcuts
?
Submit feedback
Contribute to GitLab
Sign in / Register
Toggle navigation
M
MariaDB
Project overview
Project overview
Details
Activity
Releases
Repository
Repository
Files
Commits
Branches
Tags
Contributors
Graph
Compare
Issues
0
Issues
0
List
Boards
Labels
Milestones
Merge Requests
0
Merge Requests
0
CI / CD
CI / CD
Pipelines
Jobs
Schedules
Analytics
Analytics
CI / CD
Repository
Value Stream
Wiki
Wiki
Snippets
Snippets
Members
Members
Collapse sidebar
Close sidebar
Activity
Graph
Create a new issue
Jobs
Commits
Issue Boards
Open sidebar
nexedi
MariaDB
Commits
2b4c485f
Commit
2b4c485f
authored
Feb 24, 2017
by
Sergei Golubchik
Browse files
Options
Browse Files
Download
Email Patches
Plain Diff
MDEV-11720 main.signal_demo3 fails in buildbot on labrador
increase stack size for labrador
parent
da5c3e03
Changes
5
Hide whitespace changes
Inline
Side-by-side
Showing
5 changed files
with
11 additions
and
11 deletions
+11
-11
include/my_pthread.h
include/my_pthread.h
+1
-1
mysql-test/r/mysqld--help.result
mysql-test/r/mysqld--help.result
+1
-1
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
+2
-2
mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result
...l-test/suite/sys_vars/r/sysvars_server_notembedded.result
+2
-2
mysql-test/suite/sys_vars/r/thread_stack_basic.result
mysql-test/suite/sys_vars/r/thread_stack_basic.result
+5
-5
No files found.
include/my_pthread.h
View file @
2b4c485f
...
...
@@ -673,7 +673,7 @@ extern void my_mutex_end(void);
We need to have at least 256K stack to handle calls to myisamchk_init()
with the current number of keys and key parts.
*/
#define DEFAULT_THREAD_STACK (29
1
*1024L)
#define DEFAULT_THREAD_STACK (29
2
*1024L)
#endif
#define MY_PTHREAD_LOCK_READ 0
...
...
mysql-test/r/mysqld--help.result
View file @
2b4c485f
...
...
@@ -1496,7 +1496,7 @@ thread-pool-oversubscribe 3
thread-pool-prio-kickup-timer 1000
thread-pool-priority auto
thread-pool-stall-limit 500
thread-stack 29
7984
thread-stack 29
9008
time-format %H:%i:%s
timed-mutexes FALSE
tmp-table-size 16777216
...
...
mysql-test/suite/sys_vars/r/sysvars_server_embedded.result
View file @
2b4c485f
...
...
@@ -3987,9 +3987,9 @@ READ_ONLY YES
COMMAND_LINE_ARGUMENT REQUIRED
VARIABLE_NAME THREAD_STACK
SESSION_VALUE NULL
GLOBAL_VALUE 29
7984
GLOBAL_VALUE 29
9008
GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 29
7984
DEFAULT_VALUE 29
9008
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE BIGINT UNSIGNED
VARIABLE_COMMENT The stack size for each thread
...
...
mysql-test/suite/sys_vars/r/sysvars_server_notembedded.result
View file @
2b4c485f
...
...
@@ -4869,9 +4869,9 @@ READ_ONLY NO
COMMAND_LINE_ARGUMENT REQUIRED
VARIABLE_NAME THREAD_STACK
SESSION_VALUE NULL
GLOBAL_VALUE 29
7984
GLOBAL_VALUE 29
9008
GLOBAL_VALUE_ORIGIN COMPILE-TIME
DEFAULT_VALUE 29
7984
DEFAULT_VALUE 29
9008
VARIABLE_SCOPE GLOBAL
VARIABLE_TYPE BIGINT UNSIGNED
VARIABLE_COMMENT The stack size for each thread
...
...
mysql-test/suite/sys_vars/r/thread_stack_basic.result
View file @
2b4c485f
select @@global.thread_stack;
@@global.thread_stack
29
7984
29
9008
select @@session.thread_stack;
ERROR HY000: Variable 'thread_stack' is a GLOBAL variable
show global variables like 'thread_stack';
Variable_name Value
thread_stack 29
7984
thread_stack 29
9008
show session variables like 'thread_stack';
Variable_name Value
thread_stack 29
7984
thread_stack 29
9008
select * from information_schema.global_variables where variable_name='thread_stack';
VARIABLE_NAME VARIABLE_VALUE
THREAD_STACK 29
7984
THREAD_STACK 29
9008
select * from information_schema.session_variables where variable_name='thread_stack';
VARIABLE_NAME VARIABLE_VALUE
THREAD_STACK 29
7984
THREAD_STACK 29
9008
set global thread_stack=1;
ERROR HY000: Variable 'thread_stack' is a read only variable
set session thread_stack=1;
...
...
Write
Preview
Markdown
is supported
0%
Try again
or
attach a new file
Attach a file
Cancel
You are about to add
0
people
to the discussion. Proceed with caution.
Finish editing this message first!
Cancel
Please
register
or
sign in
to comment