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.

Hand merged from 4.0.


sql/lock.cc:
  Auto merged
sql/mysql_priv.h:
  Auto merged
sql/sql_acl.cc:
  Auto merged
sql/sql_handler.cc:
  Auto merged
sql/sql_table.cc:
  Auto merged
This commit is contained in:
unknown
2005-05-31 19:37:24 +02:00
10 changed files with 105 additions and 64 deletions

View File

@ -563,3 +563,11 @@ select * from t2;
b
1
drop table t1,t2;
create table t1 (a int);
create table t1 select * from t1;
INSERT TABLE 't1' isn't allowed in FROM table list
create table t2 union = (t1) select * from t1;
INSERT TABLE 't1' isn't allowed in FROM table list
flush tables with read lock;
unlock tables;
drop table t1;