diff options
author | unknown <monty@mysql.com> | 2004-09-05 02:31:11 +0300 |
---|---|---|
committer | unknown <monty@mysql.com> | 2004-09-05 02:31:11 +0300 |
commit | 27ae2ad43f2de22cb8157fe16d91f51cbd21efa5 (patch) | |
tree | 55690b876ca9820a38795a27dd53ab63a4e2ef9d /mysql-test/r/merge.result | |
parent | 76c986bc8b9a3b95c6bcff9377c7970a83fb1676 (diff) | |
download | mariadb-git-27ae2ad43f2de22cb8157fe16d91f51cbd21efa5.tar.gz |
After merge fixes
Diffstat (limited to 'mysql-test/r/merge.result')
-rw-r--r-- | mysql-test/r/merge.result | 4 |
1 files changed, 2 insertions, 2 deletions
diff --git a/mysql-test/r/merge.result b/mysql-test/r/merge.result index 2f4f0071fa7..5755033190b 100644 --- a/mysql-test/r/merge.result +++ b/mysql-test/r/merge.result @@ -647,7 +647,7 @@ 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 +ERROR HY000: You can't specify target table 't1' for update in FROM clause create table t3 engine=merge union=(t1, t2) select * from t2; -INSERT TABLE 't2' isn't allowed in FROM table list +ERROR HY000: You can't specify target table 't2' for update in FROM clause drop table t1, t2; |