1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Post-commit test fixes

- 12d75e6121 - new thread stack size
- 99e48cb1d9 - warning text changed
- 6c173324ff - default values for BLOBs
- c87e002bbb - don't return a negative zero
This commit is contained in:
Elena Stepanova
2016-07-02 03:26:32 +03:00
parent 06acd7a2fc
commit 1d2fa98260
24 changed files with 2427 additions and 2428 deletions

View File

@ -1,20 +1,20 @@
select @@global.thread_stack;
@@global.thread_stack
296960
297984
select @@session.thread_stack;
ERROR HY000: Variable 'thread_stack' is a GLOBAL variable
show global variables like 'thread_stack';
Variable_name Value
thread_stack 296960
thread_stack 297984
show session variables like 'thread_stack';
Variable_name Value
thread_stack 296960
thread_stack 297984
select * from information_schema.global_variables where variable_name='thread_stack';
VARIABLE_NAME VARIABLE_VALUE
THREAD_STACK 296960
THREAD_STACK 297984
select * from information_schema.session_variables where variable_name='thread_stack';
VARIABLE_NAME VARIABLE_VALUE
THREAD_STACK 296960
THREAD_STACK 297984
set global thread_stack=1;
ERROR HY000: Variable 'thread_stack' is a read only variable
set session thread_stack=1;