1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

MDEV-8429: Change binlog_checksum default to match MySQL 5.6.6+

This commit is contained in:
Oleksandr Byelkin
2016-05-16 16:32:45 +02:00
parent f6a7c1c75a
commit 485ece6da9
37 changed files with 1571 additions and 1499 deletions

View File

@ -1,8 +1,8 @@
set @save_binlog_checksum= @@global.binlog_checksum;
set @@global.binlog_checksum = default;
select @@global.binlog_checksum as 'must be NONE by default';
must be NONE by default
NONE
select @@global.binlog_checksum as 'must be CRC32 by default';
must be CRC32 by default
CRC32
select @@session.binlog_checksum as 'no session var';
ERROR HY000: Variable 'binlog_checksum' is a GLOBAL variable
set @@global.binlog_checksum = CRC32;