diff options
author | unknown <Sinisa@sinisa.nasamreza.org> | 2002-06-04 20:34:13 +0300 |
---|---|---|
committer | unknown <Sinisa@sinisa.nasamreza.org> | 2002-06-04 20:34:13 +0300 |
commit | 945c46e6d2b83a728a3decd90fc83c01e16ca2d8 (patch) | |
tree | 782cfe816b8c67cc282862e5a22514dcd76f63da /mysql-test/r/multi_update.result | |
parent | 12ee8a3ef69815fce5a7c9772b6a93ccc76d5553 (diff) | |
download | mariadb-git-945c46e6d2b83a728a3decd90fc83c01e16ca2d8.tar.gz |
Bug fix for multi-table delete with test case and manual entry
Diffstat (limited to 'mysql-test/r/multi_update.result')
-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; |