From: Date: May 31 2005 8:45pm Subject: bk commit into 4.1 tree (ingo:1.2305) BUG#10224 List-Archive: http://lists.mysql.com/internals/25422 X-Bug: 10224 Message-Id: Below is the list of changes that have just been committed into a local 4.1 repository of mydev. When mydev 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.2305 05/05/31 20:45:41 ingo@stripped +2 -0 Bug#10224 - ANALYZE TABLE crashing with simultaneous CREATE ... SELECT statement. After merge fix. mysql-test/t/create.test 1.51 05/05/31 20:44:48 ingo@stripped +2 -0 Bug#10224 - ANALYZE TABLE crashing with simultaneous CREATE ... SELECT statement. After merge fix. mysql-test/r/create.result 1.79 05/05/31 20:44:48 ingo@stripped +3 -2 Bug#10224 - ANALYZE TABLE crashing with simultaneous CREATE ... SELECT statement. 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: ingo # Host: chilla.local # Root: /home/mydev/mysql-4.1-new --- 1.78/mysql-test/r/create.result Tue May 31 19:37:20 2005 +++ 1.79/mysql-test/r/create.result Tue May 31 20:44:48 2005 @@ -563,11 +563,12 @@ b 1 drop table t1,t2; +use test; create table t1 (a int); create table t1 select * from t1; -INSERT TABLE 't1' isn't allowed in FROM table list +ERROR HY000: You can't specify target table 't1' for update in FROM clause create table t2 union = (t1) select * from t1; -INSERT TABLE 't1' isn't allowed in FROM table list +ERROR HY000: You can't specify target table 't1' for update in FROM clause flush tables with read lock; unlock tables; drop table t1; --- 1.50/mysql-test/t/create.test Tue May 31 19:37:20 2005 +++ 1.51/mysql-test/t/create.test Tue May 31 20:44:48 2005 @@ -467,6 +467,8 @@ # This tests two additional possible errors and a hang if # an improper fix is present. # +connection default; +use test; create table t1 (a int); --error 1093 create table t1 select * from t1;