diff options
author | Alfranio Correia <alfranio.correia@sun.com> | 2010-04-21 14:28:00 +0100 |
---|---|---|
committer | Alfranio Correia <alfranio.correia@sun.com> | 2010-04-21 14:28:00 +0100 |
commit | dbf7c215ce4ee92becd2948960f02710f2d9ddb1 (patch) | |
tree | ff9bd441ddd33ff20cfc02764e49f68412c1032a /mysql-test/t/mysqlbinlog.test | |
parent | c5317dfb6758eca327c19321bd58ca205ca12861 (diff) | |
download | mariadb-git-dbf7c215ce4ee92becd2948960f02710f2d9ddb1.tar.gz |
BUG#51894 Replication failure with SBR on DROP TEMPORARY TABLE inside a
transaction
BUG#52616 Temp table prevents switch binlog format from STATEMENT to ROW
Post-merge fixes.
mysql-test/include/commit.inc:
Changed the test case as drop temporary is now written to the binary log in row mode.
mysql-test/r/commit_1innodb.result:
Changed the test case as drop temporary is now written to the binary log in row mode.
mysql-test/r/ctype_cp932_binlog_stm.result:
Disabled warning messages because the test runs in both statement and mixed modes.
mysql-test/t/ctype_cp932_binlog_stm.test:
Disabled warning messages because the test runs in both statement and mixed modes.
mysql-test/t/mysqlbinlog.test:
Removed the --short-form due to BUG#18337 what was suppressing the
select * from t5 /* must be (1),(1) */ in row format.
Diffstat (limited to 'mysql-test/t/mysqlbinlog.test')
-rw-r--r-- | mysql-test/t/mysqlbinlog.test | 9 |
1 files changed, 8 insertions, 1 deletions
diff --git a/mysql-test/t/mysqlbinlog.test b/mysql-test/t/mysqlbinlog.test index a280d89f7aa..111a697a5e8 100644 --- a/mysql-test/t/mysqlbinlog.test +++ b/mysql-test/t/mysqlbinlog.test @@ -145,7 +145,14 @@ EOF # must be digestable for both client and server. In 4.1 the client # should use default-character-set same as the server. flush logs; ---exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000004 | $MYSQL +# Due to BUG#18337 that wrongly suppresses the BINLOG EVENTS when +# --short-form is used, the "insert into t5 select * from `äöüÄÖÜ`" +# which is unsafe and thus written to the binary log in the row +# format is not executed. This makes the assertion select * from t5 +# /* must be (1),(1) */; to fail. To temporary fix the bug, we +# removed the option --short-form. +#--exec $MYSQL_BINLOG --short-form $MYSQLD_DATADIR/master-bin.000004 | $MYSQL +--exec $MYSQL_BINLOG $MYSQLD_DATADIR/master-bin.000004 | $MYSQL select * from t5 /* must be (1),(1) */; drop table t5; |