diff options
author | unknown <ingo@mysql.com> | 2005-05-31 20:45:41 +0200 |
---|---|---|
committer | unknown <ingo@mysql.com> | 2005-05-31 20:45:41 +0200 |
commit | 601b5bca66da5bb7108a13dc55984312f8396475 (patch) | |
tree | 079cd58fd1866de1a1c5cfeac22c9dd84d7341ed /mysql-test/r | |
parent | 57d4adf60c7b4c0d341903a29d64f96359e78adb (diff) | |
download | mariadb-git-601b5bca66da5bb7108a13dc55984312f8396475.tar.gz |
Bug#10224 - ANALYZE TABLE crashing with simultaneous CREATE ... SELECT statement.
After merge fix.
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/create.result | 5 |
1 files changed, 3 insertions, 2 deletions
diff --git a/mysql-test/r/create.result b/mysql-test/r/create.result index 7bec98b0687..cd8378a504d 100644 --- a/mysql-test/r/create.result +++ b/mysql-test/r/create.result @@ -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; |