1
0
mirror of https://github.com/MariaDB/server.git synced 2025-08-08 11:22:35 +03:00

BUG#22583 (RBR between MyISAM and non-MyISAM tables containing BIT field

does not work): Changing packed row format to only include null bits
for those columns that are present in the row as well as writing BIT
columns in a storage engine-independent format.

The change in row format is incompatible with the previous format and a
slave will not be able to read the new events.
This commit is contained in:
mats@romeo.(none)
2007-02-12 16:46:42 +01:00
parent 0b4e65e12b
commit e61a1841a5
38 changed files with 549 additions and 267 deletions

View File

@@ -78,7 +78,7 @@ Master_SSL_Cipher
Master_SSL_Key
Seconds_Behind_Master #
stop slave;
change master to master_log_pos=536;
change master to master_log_pos=539;
begin;
select * from t2 for update;
a
@@ -128,7 +128,7 @@ Master_SSL_Key
Seconds_Behind_Master #
set global max_relay_log_size=0;
stop slave;
change master to master_log_pos=536;
change master to master_log_pos=539;
begin;
select * from t2 for update;
a