From cf63c505da0079da00adb1c135655ffb827fac1c Mon Sep 17 00:00:00 2001 From: unknown Date: Thu, 19 Apr 2007 06:24:36 +0200 Subject: [PATCH] corrrection of test case mysql-test/r/ndb_binlog_ddl_multi.result: corrrection of test case (this was actually a bug that had not been spotted, that was fixed by previous patch) --- mysql-test/r/ndb_binlog_ddl_multi.result | 2 ++ mysql-test/t/ndb_binlog_ignore_db.test | 2 +- 2 files changed, 3 insertions(+), 1 deletion(-) diff --git a/mysql-test/r/ndb_binlog_ddl_multi.result b/mysql-test/r/ndb_binlog_ddl_multi.result index bb1107c9066..6631feeaa17 100644 --- a/mysql-test/r/ndb_binlog_ddl_multi.result +++ b/mysql-test/r/ndb_binlog_ddl_multi.result @@ -31,9 +31,11 @@ drop table mysqltest.t1; show binlog events from ; Log_name Pos Event_type Server_id End_log_pos Info master-bin.000001 # Query 102 # ALTER DATABASE mysqltest CHARACTER SET latin1 +master-bin.000001 # Query 102 # use `mysqltest`; drop table `t1` show binlog events from ; Log_name Pos Event_type Server_id End_log_pos Info master-bin.000001 # Query 102 # ALTER DATABASE mysqltest CHARACTER SET latin1 +master-bin.000001 # Query 102 # use `mysqltest`; drop table `t1` reset master; reset master; use test; diff --git a/mysql-test/t/ndb_binlog_ignore_db.test b/mysql-test/t/ndb_binlog_ignore_db.test index a99dfd940ad..8f80e53f2e4 100644 --- a/mysql-test/t/ndb_binlog_ignore_db.test +++ b/mysql-test/t/ndb_binlog_ignore_db.test @@ -11,6 +11,6 @@ create database mysqltest; use mysqltest; create table t1 (a int primary key, b int) engine=ndb; insert into t1 values (1, 1); --- source include/show_binlog_events.inc +-- source include/show_binlog_events2.inc drop database mysqltest;