diff options
author | bell@sanja.is.com.ua <> | 2004-01-20 19:16:18 +0200 |
---|---|---|
committer | bell@sanja.is.com.ua <> | 2004-01-20 19:16:18 +0200 |
commit | 2a55a7684f8d0ea098efb7468c4fbb70788b8b51 (patch) | |
tree | af970ff106cbb71ff85b826216049e1b995d8e5e /mysql-test/r/multi_update.result | |
parent | 501ae0bc5255fd0a3fa557c7af189f4f4c487469 (diff) | |
download | mariadb-git-2a55a7684f8d0ea098efb7468c4fbb70788b8b51.tar.gz |
for multy-delete command used same algorithm of table reference (alias)
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 |