List:Commits« Previous MessageNext Message »
From:kgeorge Date:July 27 2007 12:36pm
Subject:bk commit into 5.1 tree (gkodinov:1.2561)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of kgeorge. When kgeorge does a push these changes will
be propagated to the main repository and, within 24 hours after the
push, to the public repository.
For information on how to access the public repository
see http://dev.mysql.com/doc/mysql/en/installing-source-tree.html

ChangeSet@stripped, 2007-07-27 15:36:10+03:00, gkodinov@stripped +1 -0
  portation of the test case for bug 29571 to cover row replication

  mysql-test/suite/rpl/r/rpl_row_insert_delayed.result@stripped, 2007-07-27 15:36:08+03:00, gkodinov@stripped +26 -0
    portation of the test case for bug 29571 to cover row replication

diff -Nrup a/mysql-test/suite/rpl/r/rpl_row_insert_delayed.result b/mysql-test/suite/rpl/r/rpl_row_insert_delayed.result
--- a/mysql-test/suite/rpl/r/rpl_row_insert_delayed.result	2007-06-27 15:27:27 +03:00
+++ b/mysql-test/suite/rpl/r/rpl_row_insert_delayed.result	2007-07-27 15:36:08 +03:00
@@ -45,4 +45,30 @@ id	name
 20	is Bond
 USE test;
 DROP SCHEMA mysqlslap;
+use test;
+FLUSH LOGS;
+FLUSH LOGS;
+CREATE TABLE t1(a int, UNIQUE(a));
+INSERT DELAYED IGNORE INTO t1 VALUES(1);
+INSERT DELAYED IGNORE INTO t1 VALUES(1);
+flush table t1;
+show binlog events in 'master-bin.000002' LIMIT 2,2;
+Log_name	Pos	Event_type	Server_id	End_log_pos	Info
+x	x	x	x	x	table_id: 23 (test.t1)
+x	x	x	x	x	table_id: 23 flags: STMT_END_F
+select * from t1;
+a
+1
+On slave
+show binlog events in 'slave-bin.000002' LIMIT 2,2;
+Log_name	Pos	Event_type	Server_id	End_log_pos	Info
+x	x	x	x	x	table_id: 23 (test.t1)
+x	x	x	x	x	table_id: 23 flags: STMT_END_F
+select * from t1;
+a
+1
+drop table t1;
+FLUSH LOGS;
+FLUSH LOGS;
+End of 5.0 tests
 set @@global.binlog_format = @old_global_binlog_format;
Thread
bk commit into 5.1 tree (gkodinov:1.2561)kgeorge27 Jul