diff options
Diffstat (limited to 'mysql-test/r')
-rw-r--r-- | mysql-test/r/multi_update.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/multi_update.result b/mysql-test/r/multi_update.result index 85819d9571d..b31677069af 100644 --- a/mysql-test/r/multi_update.result +++ b/mysql-test/r/multi_update.result @@ -66,3 +66,7 @@ select count(*) from t3 where id3; count(*) 0 drop table t1,t2,t3; +create table t1(id1 int not null auto_increment primary key, t varchar(100)); +create table t2(id2 int not null, t varchar(100), index(id2)); +delete t1, t2 from t2,t1 where t1.id1 = t2.id2 and t1.id1 > 100; +drop table t1,t2; |