From: Date: June 7 2005 11:30am Subject: bk commit into 5.0 tree (heikki:1.1931) BUG#11005 List-Archive: http://lists.mysql.com/internals/25688 X-Bug: 11005 Message-Id: <200506070930.j579U1h5007177@hundin.mysql.fi> Below is the list of changes that have just been committed into a local 5.0 repository of heikki. When heikki 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 1.1931 05/06/07 12:29:49 heikki@stripped +1 -0 innodb.test: Update Monty's tests for AUTO-INC bug #11080 and bug #11005 mysql-test/t/innodb.test 1.93 05/06/07 12:29:27 heikki@stripped +1 -2 Update Monty's tests for AUTO-INC bug #11080 and bug #11005 # 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: heikki # Host: hundin.mysql.fi # Root: /home/heikki/mysql-5.0 --- 1.92/mysql-test/t/innodb.test Tue Jun 7 12:26:59 2005 +++ 1.93/mysql-test/t/innodb.test Tue Jun 7 12:29:27 2005 @@ -1364,8 +1364,8 @@ key (rowid), unique(val)) engine=innodb; replace into t1 (val) values ('1'),('2'); replace into t1 (val) values ('1'),('2'); -insert into t1 (val) values ('1'),('2'); --error 1062 +insert into t1 (val) values ('1'),('2'); select * from t1; drop table t1; @@ -1380,6 +1380,5 @@ # We should get the following error because InnoDB does not update the counter --error 1062 insert into t1 (val) values (1); ---error 1062 select * from t1; drop table t1;