diff options
author | unknown <bell@sanja.is.com.ua> | 2004-01-20 19:16:18 +0200 |
---|---|---|
committer | unknown <bell@sanja.is.com.ua> | 2004-01-20 19:16:18 +0200 |
commit | 7a1a5cd2d828d67120d10eb623c6c5bd83733260 (patch) | |
tree | af970ff106cbb71ff85b826216049e1b995d8e5e /mysql-test/r/multi_update.result | |
parent | fbf563e86a219d02fa9bae0c8fb52c34c60bacbe (diff) | |
download | mariadb-git-7a1a5cd2d828d67120d10eb623c6c5bd83733260.tar.gz |
for multy-delete command used same algorithm of table reference (alias)
mysql-test/t/multi_update.test:
new results of changed multi-delete
mysql-test/t/update.test:
new results of changed multi-delete
mysql-test/r/multi_update.result:
new results of changed multi-delete
mysql-test/r/update.result:
new results of changed multi-delete
Diffstat (limited to 'mysql-test/r/multi_update.result')
-rw-r--r-- | mysql-test/r/multi_update.result | 2 |
1 files changed, 1 insertions, 1 deletions
diff --git a/mysql-test/r/multi_update.result b/mysql-test/r/multi_update.result index d335c9c1d10..a61ce31b8ae 100644 --- a/mysql-test/r/multi_update.result +++ b/mysql-test/r/multi_update.result @@ -244,7 +244,7 @@ select * from t2; n d 1 30 1 30 -DELETE t1, t2 FROM t1 a,t2 b where a.n=b.n; +DELETE a, b FROM t1 a,t2 b where a.n=b.n; select * from t1; n d 3 2 |