1
0
mirror of https://github.com/MariaDB/server.git synced 2025-11-15 09:02:33 +03:00

WL#3303 (RBR: Engine-controlled logging format):

Test case fixes.
This commit is contained in:
mats@kindahl-laptop.dnsalias.net
2007-06-14 11:05:48 +02:00
parent 4ecdd55b49
commit 61ac88f313
70 changed files with 81 additions and 12 deletions

View File

@@ -12,6 +12,14 @@ create table t2 (a int key, b int) engine innodb;
alter table t1 engine ndb;
alter table t2 engine ndb;
# We need MIXED mode on the slave in the event that there are
# statements coming in from the master. In this case, NDB can only
# handle row-based format, so it has to be possible to switch to
# this.
STOP SLAVE;
SET GLOBAL BINLOG_FORMAT=MIXED;
START SLAVE;
# check binlog position without begin
--connection master
insert into t1 values (1,2);