1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-07 00:04:31 +03:00

MWL#180: Fix bug where setting @@global.binlog_checksum did not actually change the value.

This commit is contained in:
unknown
2011-05-05 16:32:20 +02:00
parent 7a36035bd2
commit 4337aa74e3
3 changed files with 13 additions and 1 deletions

View File

@@ -40,13 +40,16 @@ connection master;
source include/show_binary_logs.inc;
set @@global.binlog_checksum = NONE;
select @@global.binlog_checksum;
--echo *** must be rotations seen ***
source include/show_binary_logs.inc;
set @@global.binlog_checksum = default;
select @@global.binlog_checksum;
# testing lack of side-effects in non-effective update of binlog_checksum:
set @@global.binlog_checksum = CRC32;
select @@global.binlog_checksum;
set @@global.binlog_checksum = CRC32;
set @@global.master_verify_checksum = 0;