mirror of
https://github.com/MariaDB/server.git
synced 2025-05-07 04:01:59 +03:00
- 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
24 lines
833 B
Plaintext
24 lines
833 B
Plaintext
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
|