mirror of
https://github.com/MariaDB/server.git
synced 2025-07-30 16:24:05 +03:00
Backport MySQL WL#2540 into MariaDB.
Patch backported: bzr diff '-rrevid:alfranio.correia@oracle.com-20101121143257-se3vpqus73l4mum0 ..revid:luis.soares@oracle.com-20101124111752-9b8260bd1qak87hr' --old=lp:mysql-server --new=lp:mysql-server
This commit is contained in:
25
mysql-test/suite/sys_vars/t/binlog_checksum_basic.test
Normal file
25
mysql-test/suite/sys_vars/t/binlog_checksum_basic.test
Normal file
@ -0,0 +1,25 @@
|
||||
--source include/not_embedded.inc
|
||||
|
||||
# suite/rpl/t/rpl_checksum.test contains similar testing of
|
||||
# all checksum related system variables.
|
||||
|
||||
set @save_binlog_checksum= @@global.binlog_checksum;
|
||||
set @@global.binlog_checksum = default;
|
||||
|
||||
select @@global.binlog_checksum as 'must be NONE by default';
|
||||
--error ER_INCORRECT_GLOBAL_LOCAL_VAR
|
||||
select @@session.binlog_checksum as 'no session var';
|
||||
|
||||
|
||||
# testing lack of side-effects in non-effective update of binlog_checksum:
|
||||
set @@global.binlog_checksum = CRC32;
|
||||
set @@global.binlog_checksum = CRC32;
|
||||
|
||||
set @@global.master_verify_checksum = 0;
|
||||
set @@global.master_verify_checksum = default;
|
||||
|
||||
--error ER_WRONG_VALUE_FOR_VAR
|
||||
set @@global.binlog_checksum = ADLER32;
|
||||
|
||||
# cleanup
|
||||
set @@global.binlog_checksum = @save_binlog_checksum;
|
Reference in New Issue
Block a user