1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-29 05:21:33 +03:00

Bug#10224 - ANALYZE TABLE crashing with simultaneous CREATE ... SELECT statement.

After merge fix.
This commit is contained in:
ingo@mysql.com
2005-05-31 20:45:41 +02:00
parent c420599581
commit 40b53eab23
2 changed files with 5 additions and 2 deletions

View File

@ -563,11 +563,12 @@ select * from t2;
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;