mirror of
https://github.com/MariaDB/server.git
synced 2025-02-02 03:51:50 +01:00
d695f74955
field does not work Fix to prevent MyISAM from reading data from NULL BLOB. Fix to make record comparison independent of values of unused bits in record. Updating binlog positions in tests.
30 lines
886 B
Text
30 lines
886 B
Text
# Test for BUG#8436: verify that a multi-query (i.e. one query
|
|
# containing several queries (assuming client has
|
|
# CLIENT_MULTI_STATEMENTS) will be binlogged ONE-query-per-event (not
|
|
# one binlog event containing all queries)
|
|
|
|
|
|
# PS doesn't support multi-statements
|
|
--disable_ps_protocol
|
|
-- source include/master-slave.inc
|
|
--disable_warnings
|
|
drop database if exists mysqltest;
|
|
--enable_warnings
|
|
create database mysqltest;
|
|
|
|
delimiter /;
|
|
create table mysqltest.t1 ( n int);
|
|
insert into mysqltest.t1 values(1)/
|
|
insert into mysqltest.t1 values(2);
|
|
insert into mysqltest.t1 values(3);
|
|
insert into mysqltest.t1 values(4);
|
|
insert into mysqltest.t1 values(5)/
|
|
delimiter ;/
|
|
sync_slave_with_master;
|
|
select * from mysqltest.t1;
|
|
connection master;
|
|
--replace_column 2 # 5 #
|
|
--replace_regex /table_id: [0-9]+/table_id: #/
|
|
show binlog events from 105;
|
|
drop database mysqltest;
|
|
sync_slave_with_master;
|