Below is the list of changes that have just been committed into a local
5.1 repository of elkin. When elkin 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-01-11 23:59:12+02:00, aelkin@stripped
+1 -0
Bug #24998 rpl_row_delayed_ins.test fails in pushbuild
The test uses show binlog event which is not deterministic due to the single insert
delayed
query can generate up to number of inserted rows row-events pair (table_map + Write_row)
The solution is to leave the current binlogging behaviour as it is and change
the test as spliting arguments of insert delayed query. Note, that such fix was applied
earlier for binlog_insert_delayed.test :
https://intranet.mysql.com/secure/apps/irclog.php?channel=22&start_time=2006-09-27
There are no tests with insert delayed and show binlog events combination requiring
this fix.
mysql-test/extra/rpl_tests/rpl_row_delayed_ins.test@stripped, 2007-01-11 23:59:09+02:00,
aelkin@stripped +3 -1
splitting insert delayed per rows
# This is a BitKeeper patch. What follows are the unified diffs for the
# set of deltas contained in the patch. The rest of the patch, the part
# that BitKeeper cares about, is below these diffs.
# User: aelkin
# Host: dsl-hkibras-fe36f900-97.dhcp.inet.fi
# Root: /home/elkin/MySQL/TEAM/FIXES/5.1/bug2499824_insert_delayed_many_rows
--- 1.3/mysql-test/extra/rpl_tests/rpl_row_delayed_ins.test 2007-01-11 23:59:28 +02:00
+++ 1.4/mysql-test/extra/rpl_tests/rpl_row_delayed_ins.test 2007-01-11 23:59:28 +02:00
@@ -7,7 +7,9 @@
connection master;
let $VERSION=`select version()`;
eval create table t1(a int not null primary key) engine=$engine_type;
-insert delayed into t1 values (1),(2),(3);
+insert delayed into t1 values (1);
+insert delayed into t1 values (2);
+insert delayed into t1 values (3);
flush tables;
SELECT * FROM t1 ORDER BY a;
sync_slave_with_master;
| Thread |
|---|
| • bk commit into 5.1 tree (aelkin:1.2373) BUG#24998 | Andrei Elkin | 11 Jan |