List:Commits« Previous MessageNext Message »
From:gluh Date:February 27 2007 8:16am
Subject:bk commit into 5.1 tree (gluh:1.2460)
View as plain text  
Below is the list of changes that have just been committed into a local
5.1 repository of gluh. When gluh 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-02-27 12:16:41+04:00, gluh@stripped +1 -0
  after merge fix

  mysql-test/r/binlog_row_blackhole.result@stripped, 2007-02-27 12:16:40+04:00, gluh@stripped +11 -0
    after merge fix

# 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:	gluh
# Host:	eagle.(none)
# Root:	/home/gluh/MySQL/Merge/5.1-opt

--- 1.9/mysql-test/r/binlog_row_blackhole.result	2006-08-01 10:24:14 +05:00
+++ 1.10/mysql-test/r/binlog_row_blackhole.result	2007-02-27 12:16:40 +04:00
@@ -122,6 +122,17 @@ master-bin.000001	#	Query	1	#	use `test`
 master-bin.000001	#	Query	1	#	use `test`; alter table t1 drop b
 master-bin.000001	#	Query	1	#	use `test`; create table t3 like t1
 drop table t1,t2,t3;
+CREATE TABLE t1(a INT, b INT) ENGINE=BLACKHOLE;
+DELETE FROM t1 WHERE a=10;
+ALTER TABLE t1 ADD INDEX(a);
+DELETE FROM t1 WHERE a=10;
+ALTER TABLE t1 DROP INDEX a;
+ALTER TABLE t1 ADD UNIQUE INDEX(a);
+DELETE FROM t1 WHERE a=10;
+ALTER TABLE t1 DROP INDEX a;
+ALTER TABLE t1 ADD PRIMARY KEY(a);
+DELETE FROM t1 WHERE a=10;
+DROP TABLE t1;
 reset master;
 create table t1 (a int) engine=blackhole;
 set autocommit=0;
Thread
bk commit into 5.1 tree (gluh:1.2460)gluh27 Feb