1
0
mirror of https://github.com/MariaDB/server.git synced 2025-07-30 16:24:05 +03:00

After merge fixes

This commit is contained in:
unknown
2004-09-05 02:31:11 +03:00
parent e85e573971
commit 9a63c8e0e4
3 changed files with 6 additions and 7 deletions

View File

@ -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;