From 293848c4840a7ab2485c9de342e3c3572e77dae6 Mon Sep 17 00:00:00 2001 From: Luis Soares Date: Tue, 19 Jan 2010 23:16:22 +0000 Subject: [PATCH] BUG#49562: SBR out of sync when using numeric data types + user variable Post-push fix: missing 'reset master' at the beginning of the test would cause show binlog events to output events from previous tests. --- mysql-test/suite/binlog/r/binlog_stm_user_variables.result | 1 + mysql-test/suite/binlog/t/binlog_stm_user_variables.test | 1 + 2 files changed, 2 insertions(+) diff --git a/mysql-test/suite/binlog/r/binlog_stm_user_variables.result b/mysql-test/suite/binlog/r/binlog_stm_user_variables.result index 90ce82d90fa..92a74f63ad9 100644 --- a/mysql-test/suite/binlog/r/binlog_stm_user_variables.result +++ b/mysql-test/suite/binlog/r/binlog_stm_user_variables.result @@ -1,3 +1,4 @@ +RESET MASTER; SET @positive= 18446744073709551615; SET @negative= -9223372036854775808; CREATE TABLE t1 (`tinyint` TINYINT, diff --git a/mysql-test/suite/binlog/t/binlog_stm_user_variables.test b/mysql-test/suite/binlog/t/binlog_stm_user_variables.test index 7217eeb0d62..4bed6db6269 100644 --- a/mysql-test/suite/binlog/t/binlog_stm_user_variables.test +++ b/mysql-test/suite/binlog/t/binlog_stm_user_variables.test @@ -1,4 +1,5 @@ -- source include/have_binlog_format_statement.inc +RESET MASTER; # # BUG#49562: SBR out of sync when using numeric data types + user variable #