mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Fixed failing test cases and compiler warnings found by buildbot
- Added some extra command to rpl_start_stop to ensure that the IO thread has connected to the master before we shut down the server. - if signal returns signalhandler_t, use this with the alarm code - Added missing tests to sys_vars - Fixed some possible overflow bugs in tabxml.cpp
This commit is contained in:
23
mysql-test/suite/sys_vars/r/max_digest_length_basic.result
Normal file
23
mysql-test/suite/sys_vars/r/max_digest_length_basic.result
Normal file
@ -0,0 +1,23 @@
|
||||
select @@global.max_digest_length;
|
||||
@@global.max_digest_length
|
||||
1024
|
||||
select @@session.max_digest_length;
|
||||
ERROR HY000: Variable 'max_digest_length' is a GLOBAL variable
|
||||
show global variables like 'max_digest_length';
|
||||
Variable_name Value
|
||||
max_digest_length 1024
|
||||
show session variables like 'max_digest_length';
|
||||
Variable_name Value
|
||||
max_digest_length 1024
|
||||
select * from information_schema.global_variables
|
||||
where variable_name='max_digest_length';
|
||||
VARIABLE_NAME VARIABLE_VALUE
|
||||
MAX_DIGEST_LENGTH 1024
|
||||
select * from information_schema.session_variables
|
||||
where variable_name='max_digest_length';
|
||||
VARIABLE_NAME VARIABLE_VALUE
|
||||
MAX_DIGEST_LENGTH 1024
|
||||
set global max_digest_length=1;
|
||||
ERROR HY000: Variable 'max_digest_length' is a read only variable
|
||||
set session max_digest_length=1;
|
||||
ERROR HY000: Variable 'max_digest_length' is a read only variable
|
Reference in New Issue
Block a user