diff options
author | unknown <evgen@moonbone.local> | 2006-05-30 23:05:34 +0400 |
---|---|---|
committer | unknown <evgen@moonbone.local> | 2006-05-30 23:05:34 +0400 |
commit | 63d6336465c13c010977c04a037468e55b68e9e0 (patch) | |
tree | 2f58dd24d18933491474b13b64665b580da3807a /mysql-test/r/multi_update.result | |
parent | 7b639f05f8916537bf3d6e36c7e07b2e80be8f49 (diff) | |
download | mariadb-git-63d6336465c13c010977c04a037468e55b68e9e0.tar.gz |
item_cmpfunc.cc, func_in.result, multi_update.result:
After merge fix
mysql-test/r/multi_update.result:
After merge fix
mysql-test/r/func_in.result:
After merge fix
sql/item_cmpfunc.cc:
After merge fix
Diffstat (limited to 'mysql-test/r/multi_update.result')
-rw-r--r-- | mysql-test/r/multi_update.result | 1 |
1 files changed, 1 insertions, 0 deletions
diff --git a/mysql-test/r/multi_update.result b/mysql-test/r/multi_update.result index 8d56cf6f2dc..b4a7aa5cb76 100644 --- a/mysql-test/r/multi_update.result +++ b/mysql-test/r/multi_update.result @@ -480,6 +480,7 @@ create table t1(a int); create table t2(a int); delete from t1,t2 using t1,t2 where t1.a=(select a from t1); ERROR HY000: You can't specify target table 't1' for update in FROM clause +drop table t1, t2; create table t1 ( c char(8) not null ) engine=innodb; insert into t1 values ('0'),('1'),('2'),('3'),('4'),('5'),('6'),('7'),('8'),('9'); insert into t1 values ('A'),('B'),('C'),('D'),('E'),('F'); |