diff options
author | gkodinov@dl145s.mysql.com <> | 2006-09-18 12:57:20 +0200 |
---|---|---|
committer | gkodinov@dl145s.mysql.com <> | 2006-09-18 12:57:20 +0200 |
commit | ce8ed889d70c63332ba1f8317baf9d6a91cf7cbe (patch) | |
tree | 5370a5cf6745df5fd6690197a45f08ce5e60daf1 /mysql-test/r/delete.result | |
parent | 343e08391d70accf2d2c9f077b3e950b53ea05fe (diff) | |
parent | 2ec485f06eb5cdf8a38c6192690ae29045181a72 (diff) | |
download | mariadb-git-ce8ed889d70c63332ba1f8317baf9d6a91cf7cbe.tar.gz |
Merge dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.0-opt
into dl145s.mysql.com:/data/bk/team_tree_merge/MERGE/mysql-5.1
Diffstat (limited to 'mysql-test/r/delete.result')
-rw-r--r-- | mysql-test/r/delete.result | 4 |
1 files changed, 4 insertions, 0 deletions
diff --git a/mysql-test/r/delete.result b/mysql-test/r/delete.result index 0946dc8f809..9d337a1ed34 100644 --- a/mysql-test/r/delete.result +++ b/mysql-test/r/delete.result @@ -172,6 +172,10 @@ a 0 2 DROP TABLE t1; +create table t1 (a int); +delete `4.t1` from t1 as `4.t1` where `4.t1`.a = 5; +delete FROM `4.t1` USING t1 as `4.t1` where `4.t1`.a = 5; +drop table t1; CREATE TABLE t1 (a int not null,b int not null); CREATE TABLE t2 (a int not null, b int not null, primary key (a,b)); CREATE TABLE t3 (a int not null, b int not null, primary key (a,b)); |