diff options
author | ram@gw.mysql.r18.ru <> | 2004-08-27 16:43:01 +0500 |
---|---|---|
committer | ram@gw.mysql.r18.ru <> | 2004-08-27 16:43:01 +0500 |
commit | 3acccb988a7fba5f075acf7615bc0ec7f8548366 (patch) | |
tree | 1e95be4884721f8f8d9d9829c08f92498d931b50 /mysql-test/r/merge.result | |
parent | 2ed54c12e50270365cb53c7358ea47357d903b42 (diff) | |
download | mariadb-git-3acccb988a7fba5f075acf7615bc0ec7f8548366.tar.gz |
A fix (Bug #5232: CREATE TABLE ... SELECT can deadlock itself).
Diffstat (limited to 'mysql-test/r/merge.result')
-rw-r--r-- | mysql-test/r/merge.result | 9 |
1 files changed, 9 insertions, 0 deletions
diff --git a/mysql-test/r/merge.result b/mysql-test/r/merge.result index 7b2b9a47b0f..3585b8b0018 100644 --- a/mysql-test/r/merge.result +++ b/mysql-test/r/merge.result @@ -610,3 +610,12 @@ x y 1 3 1 2 drop table t1,t2,t3; +create table t1 (a int); +create table t2 (a int); +insert into t1 values (0); +insert into t2 values (1); +create table t3 engine=merge union=(t1, t2) select * from t1; +INSERT TABLE 't1' isn't allowed in FROM table list +create table t3 engine=merge union=(t1, t2) select * from t2; +INSERT TABLE 't2' isn't allowed in FROM table list +drop table t1, t2; |